first commit
This commit is contained in:
28
modules/account_rule/view/account_rule_form.xml
Normal file
28
modules/account_rule/view/account_rule_form.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="return_"/>
|
||||
<field name="return_"/>
|
||||
|
||||
<label name="tax"/>
|
||||
<field name="tax"/>
|
||||
<newline/>
|
||||
|
||||
<label name="origin_account"/>
|
||||
<field name="origin_account"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
</form>
|
||||
9
modules/account_rule/view/account_rule_form_stock.xml
Normal file
9
modules/account_rule/view/account_rule_form_stock.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. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='tax']" position="after">
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
</xpath>
|
||||
</data>
|
||||
13
modules/account_rule/view/account_rule_list.xml
Normal file
13
modules/account_rule/view/account_rule_list.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="type"/>
|
||||
<field name="return_"/>
|
||||
<field name="start_date" optional="1"/>
|
||||
<field name="end_date" optional="1"/>
|
||||
<field name="origin_account" expand="1" optional="0"/>
|
||||
<field name="tax" expand="1" optional="1"/>
|
||||
<field name="account" expand="2" optional="0"/>
|
||||
</tree>
|
||||
8
modules/account_rule/view/account_rule_list_stock.xml
Normal file
8
modules/account_rule/view/account_rule_list_stock.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. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='tax']" position="after">
|
||||
<field name="warehouse" expand="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user