first commit
This commit is contained in:
22
modules/sale_extra/view/extra_form.xml
Normal file
22
modules/sale_extra/view/extra_form.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="price_list"/>
|
||||
<field name="price_list"/>
|
||||
<separator id="pattern" colspan="4"/>
|
||||
<label name="sale_amount"/>
|
||||
<field name="sale_amount"/>
|
||||
<field name="lines" colspan="4"
|
||||
view_ids="sale_extra.extra_line_view_list_sequence"/>
|
||||
</form>
|
||||
21
modules/sale_extra/view/extra_line_form.xml
Normal file
21
modules/sale_extra/view/extra_line_form.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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="extra"/>
|
||||
<field name="extra"/>
|
||||
<newline/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="sale_amount"/>
|
||||
<field name="sale_amount"/>
|
||||
<separator id="sale_line" string="Sale Line" colspan="4"/>
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="free"/>
|
||||
<field name="free"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
</form>
|
||||
11
modules/sale_extra/view/extra_line_list.xml
Normal file
11
modules/sale_extra/view/extra_line_list.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="extra" expand="1"/>
|
||||
<field name="sale_amount"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity"/>
|
||||
<field name="unit"/>
|
||||
<field name="free"/>
|
||||
</tree>
|
||||
11
modules/sale_extra/view/extra_line_list_sequence.xml
Normal file
11
modules/sale_extra/view/extra_line_list_sequence.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 sequence="sequence">
|
||||
<field name="extra" expand="1"/>
|
||||
<field name="sale_amount"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity"/>
|
||||
<field name="unit"/>
|
||||
<field name="free"/>
|
||||
</tree>
|
||||
11
modules/sale_extra/view/extra_list.xml
Normal file
11
modules/sale_extra/view/extra_list.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="company" expand="1" optional="1"/>
|
||||
<field name="price_list" expand="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="start_date"/>
|
||||
<field name="end_date"/>
|
||||
<field name="sale_amount" optional="0"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user