first commit
This commit is contained in:
23
modules/product_kit/view/product_component_form.xml
Normal file
23
modules/product_kit/view/product_component_form.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<group col="-1" colspan="2" id="parents">
|
||||
<label name="parent_template"/>
|
||||
<field name="parent_template"/>
|
||||
<label name="parent_product"/>
|
||||
<field name="parent_product"/>
|
||||
</group>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="fixed"/>
|
||||
<field name="fixed"/>
|
||||
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
</form>
|
||||
9
modules/product_kit/view/product_component_list.xml
Normal file
9
modules/product_kit/view/product_component_list.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="parent_template" expand="1"/>
|
||||
<field name="parent_product" expand="1"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
10
modules/product_kit/view/product_template_form.xml
Normal file
10
modules/product_kit/view/product_template_form.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='general']" position="after">
|
||||
<page name="components">
|
||||
<field name="components" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
19
modules/product_kit/view/purchase_line_component_form.xml
Normal file
19
modules/product_kit/view/purchase_line_component_form.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="line"/>
|
||||
<field name="line"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="fixed"/>
|
||||
<field name="fixed"/>
|
||||
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
</form>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="line" expand="1"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
11
modules/product_kit/view/purchase_line_form.xml
Normal file
11
modules/product_kit/view/purchase_line_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='general']" position="after">
|
||||
<page string="Components" id="components">
|
||||
<field name="components" colspan="4"/>
|
||||
<field name="component_children" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
19
modules/product_kit/view/sale_line_component_form.xml
Normal file
19
modules/product_kit/view/sale_line_component_form.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="line"/>
|
||||
<field name="line"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="fixed"/>
|
||||
<field name="fixed"/>
|
||||
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
</form>
|
||||
8
modules/product_kit/view/sale_line_component_list.xml
Normal file
8
modules/product_kit/view/sale_line_component_list.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="line" expand="1"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
11
modules/product_kit/view/sale_line_form.xml
Normal file
11
modules/product_kit/view/sale_line_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='general']" position="after">
|
||||
<page string="Components" id="components">
|
||||
<field name="components" colspan="4"/>
|
||||
<field name="component_children" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user