Split 49 modules/suites into independent git repos; untrack from monorepo
Each top-level module/suite folder is now its own private repo on GitHub (gsinghpal/<name>) and gitea (admin/<name>), with a fresh single initial commit. The monorepo no longer tracks them (added to .gitignore + git rm --cached); working-tree files are retained on disk and managed in their own repos. The monorepo keeps shared root files (CLAUDE.md, docs/, scripts/, tools/, AGENTS.md, WIP/obsolete dirs) and full history. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2026 Nexa Systems Inc.
|
||||
License OPL-1 (Odoo Proprietary License v1.0)
|
||||
Part of the Fusion Plating product family.
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
<record id="view_hr_employee_form_inherit_fp_logistics" model="ir.ui.view">
|
||||
<field name="name">hr.employee.form.inherit.fp.logistics</field>
|
||||
<field name="model">hr.employee</field>
|
||||
<field name="inherit_id" ref="hr.view_employee_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//notebook" position="inside">
|
||||
<page string="Driver" name="fp_driver">
|
||||
<group>
|
||||
<group string="Driver Status">
|
||||
<field name="x_fc_is_driver" widget="boolean_toggle"/>
|
||||
<field name="x_fc_driver_licence_class" invisible="not x_fc_is_driver"/>
|
||||
<field name="x_fc_licence_expiry" invisible="not x_fc_is_driver"/>
|
||||
</group>
|
||||
<group string="TDG (Hazmat)">
|
||||
<field name="x_fc_tdg_certified" widget="boolean_toggle" invisible="not x_fc_is_driver"/>
|
||||
<field name="x_fc_tdg_expiry" invisible="not x_fc_tdg_certified"/>
|
||||
</group>
|
||||
</group>
|
||||
<group string="Logistics History" invisible="not x_fc_is_driver">
|
||||
<field name="x_fc_pickup_request_ids" nolabel="1" readonly="1">
|
||||
<list string="Pickup Requests" limit="20">
|
||||
<field name="name"/>
|
||||
<field name="partner_id"/>
|
||||
<field name="scheduled_date"/>
|
||||
<field name="state"/>
|
||||
</list>
|
||||
</field>
|
||||
<field name="x_fc_delivery_ids" nolabel="1" readonly="1">
|
||||
<list string="Deliveries" limit="20">
|
||||
<field name="name"/>
|
||||
<field name="partner_id"/>
|
||||
<field name="scheduled_date"/>
|
||||
<field name="state"/>
|
||||
</list>
|
||||
</field>
|
||||
</group>
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user