first commit
This commit is contained in:
31
modules/account_statement_rule/view/rule_form.xml
Normal file
31
modules/account_statement_rule/view/rule_form.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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"/>
|
||||
|
||||
<notebook>
|
||||
<page string="Criteria" id="criteria">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
|
||||
<label id="between" string="Between"/>
|
||||
<group id="range" col="-1" colspan="3">
|
||||
<field name="amount_low" xexpand="0"/>
|
||||
<label id="and" string="-"/>
|
||||
<field name="amount_high" xexpand="0"/>
|
||||
</group>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
|
||||
<field name="information_rules" colspan="4"/>
|
||||
</page>
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
@@ -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 cursor="key">
|
||||
<label name="rule"/>
|
||||
<field name="rule"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="key"/>
|
||||
<field name="key"/>
|
||||
<group id="values" col="-1" colspan="2">
|
||||
<field name="boolean"/>
|
||||
<group id="integer" col="-1">
|
||||
<field name="integer_low"/>
|
||||
<label id="and" string="-"/>
|
||||
<field name="integer_high"/>
|
||||
</group>
|
||||
<group id="float" col="-1">
|
||||
<field name="float_low"/>
|
||||
<label id="and" string="-"/>
|
||||
<field name="float_high"/>
|
||||
</group>
|
||||
<group id="number" col="-1">
|
||||
<field name="number_low"/>
|
||||
<label id="and" string="-"/>
|
||||
<field name="number_high"/>
|
||||
</group>
|
||||
<field name="char"/>
|
||||
<field name="selection"/>
|
||||
</group>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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="rule" expand="1"/>
|
||||
<field name="key" expand="1"/>
|
||||
</tree>
|
||||
18
modules/account_statement_rule/view/rule_line_form.xml
Normal file
18
modules/account_statement_rule/view/rule_line_form.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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 cursor="amount">
|
||||
<label name="rule"/>
|
||||
<field name="rule"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<newline/>
|
||||
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
</form>
|
||||
9
modules/account_statement_rule/view/rule_line_list.xml
Normal file
9
modules/account_statement_rule/view/rule_line_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="rule" expand="1"/>
|
||||
<field name="amount"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="account" expand="1"/>
|
||||
</tree>
|
||||
7
modules/account_statement_rule/view/rule_list.xml
Normal file
7
modules/account_statement_rule/view/rule_list.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?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="name" expand="2"/>
|
||||
</tree>
|
||||
8
modules/account_statement_rule/view/statement_form.xml
Normal file
8
modules/account_statement_rule/view/statement_form.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="//group[@id='buttons']/button[@name='draft']" position="after">
|
||||
<button name="apply_rules"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/account_statement_rule/view/statement_tree.xml
Normal file
8
modules/account_statement_rule/view/statement_tree.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='state']" position="before">
|
||||
<button name="apply_rules" multiple="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user