first commit
This commit is contained in:
32
modules/product_price_list/view/price_list_form.xml
Normal file
32
modules/product_price_list/view/price_list_form.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?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="name"/>
|
||||
<field name="name"/>
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="tax_included"/>
|
||||
<field name="tax_included"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<!-- Add other checkboxes here -->
|
||||
</group>
|
||||
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<newline/>
|
||||
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
<label name="price"/>
|
||||
<field name="price"/>
|
||||
|
||||
<notebook colspan="4">
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"
|
||||
view_ids="product_price_list.price_list_line_view_tree_sequence"/>
|
||||
<button name="open_lines" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?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>
|
||||
</form>
|
||||
|
||||
19
modules/product_price_list/view/price_list_line_form.xml
Normal file
19
modules/product_price_list/view/price_list_line_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="price_list"/>
|
||||
<field name="price_list" colspan="3"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<newline/>
|
||||
<label name="category"/>
|
||||
<field name="category"/>
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<separator id="formula" colspan="4"/>
|
||||
<label name="formula"/>
|
||||
<field name="formula" colspan="3"/>
|
||||
</form>
|
||||
11
modules/product_price_list/view/price_list_line_tree.xml
Normal file
11
modules/product_price_list/view/price_list_line_tree.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. -->
|
||||
<tree>
|
||||
<field name="price_list" expand="1"/>
|
||||
<field name="sequence" optional="1"/>
|
||||
<field name="category" expand="1"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity"/>
|
||||
<field name="formula" expand="1" optional="0"/>
|
||||
</tree>
|
||||
@@ -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. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="price_list" expand="1"/>
|
||||
<field name="category" expand="1"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity"/>
|
||||
<field name="formula" expand="1" optional="0"/>
|
||||
</tree>
|
||||
9
modules/product_price_list/view/price_list_tree.xml
Normal file
9
modules/product_price_list/view/price_list_tree.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>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="tax_included" optional="1"/>
|
||||
<field name="unit" optional="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user