diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-17 10:28:39 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-17 10:28:39 +0700 |
| commit | 8b11b194bb84bfbdd9372ae16987f08c7826c21e (patch) | |
| tree | 2c14e95455b06267af585e5a79dcb1aed830c4a0 /fixco_custom/views/shipment_group.xml | |
| parent | 4a65f46a5b7fd1bc48bc04cbf456119332fff0fe (diff) | |
schema shipment group
Diffstat (limited to 'fixco_custom/views/shipment_group.xml')
| -rw-r--r-- | fixco_custom/views/shipment_group.xml | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/fixco_custom/views/shipment_group.xml b/fixco_custom/views/shipment_group.xml index ed3f4c9..8a6c303 100644 --- a/fixco_custom/views/shipment_group.xml +++ b/fixco_custom/views/shipment_group.xml @@ -10,19 +10,6 @@ </field> </record> - <record id="shipment_group_line_tree" model="ir.ui.view"> - <field name="name">shipment.group.line.tree</field> - <field name="model">shipment.group.line</field> - <field name="arch" type="xml"> - <tree editable="bottom"> - <field name="invoice_marketplace" readonly="1"/> - <field name="product_id" readonly="1"/> - <field name="carrier" readonly="1"/> - <field name="picking_id" readonly="1"/> - </tree> - </field> - </record> - <record id="shipment_group_form" model="ir.ui.view"> <field name="name">shipment.group.form</field> <field name="model">shipment.group</field> @@ -31,14 +18,28 @@ <sheet> <group> <group> - <field name="number" readonly="1"/> - <field name="scan_invoice" widget="scan_barcode" - placeholder="Scan Invoice Marketplace"/> + <field name="number" readonly="1"/> </group> </group> <notebook> + <page string="Picking Line"> + <field name="picking_lines"> + <tree editable="bottom"> + <field name="scan_invoice_marketplace"/> + <field name="picking_id"/> + <field name="carrier"/> + </tree> + </field> + </page> <page string="Line"> - <field name="shipment_line"/> + <field name="shipment_line"> + <tree editable="bottom"> + <field name="product_id"/> + <field name="carrier"/> + <field name="invoice_marketplace"/> + <field name="picking_id"/> + </tree> + </field> </page> </notebook> </sheet> |
