first commit
This commit is contained in:
9
modules/analytic_account/view/account_context_form.xml
Normal file
9
modules/analytic_account/view/account_context_form.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. -->
|
||||
<form>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
</form>
|
||||
14
modules/analytic_account/view/account_distribution_form.xml
Normal file
14
modules/analytic_account/view/account_distribution_form.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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="parent"/>
|
||||
<field name="parent" colspan="3"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="ratio"/>
|
||||
<group col="2" id="ratio">
|
||||
<field name="ratio" factor="100" xexpand="0"/>
|
||||
<label name="ratio" string="%" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
</form>
|
||||
10
modules/analytic_account/view/account_distribution_list.xml
Normal file
10
modules/analytic_account/view/account_distribution_list.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. -->
|
||||
<tree editable="1">
|
||||
<field name="parent"/>
|
||||
<field name="account"/>
|
||||
<field name="ratio" factor="100">
|
||||
<suffix string="%" name="ratio"/>
|
||||
</field>
|
||||
</tree>
|
||||
36
modules/analytic_account/view/account_form.xml
Normal file
36
modules/analytic_account/view/account_form.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?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 col="6">
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="100"/>
|
||||
<notebook colspan="6">
|
||||
<page string="General Information" id="general">
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<newline/>
|
||||
<label name="root"/>
|
||||
<field name="root"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<field name="childs" colspan="4"
|
||||
view_ids="analytic_account.account_view_list2"/>
|
||||
</page>
|
||||
<page name="distributions">
|
||||
<field name="distributions"/>
|
||||
</page>
|
||||
<page string="Notes" id="notes">
|
||||
<field name="note"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state" colspan="3"/>
|
||||
<field name="state" colspan="3"/>
|
||||
</form>
|
||||
10
modules/analytic_account/view/account_list.xml
Normal file
10
modules/analytic_account/view/account_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="rec_name" expand="2"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="name" tree_invisible="1"/>
|
||||
<field name="code" tree_invisible="1"/>
|
||||
</tree>
|
||||
9
modules/analytic_account/view/account_list2.xml
Normal file
9
modules/analytic_account/view/account_list2.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="code" optional="0"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="type" optional="1"/>
|
||||
</tree>
|
||||
10
modules/analytic_account/view/account_tree.xml
Normal file
10
modules/analytic_account/view/account_tree.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. -->
|
||||
<tree>
|
||||
<field name="rec_name" expand="2"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="type" optional="1"/>
|
||||
<field name="name" tree_invisible="1"/>
|
||||
<field name="code" tree_invisible="1"/>
|
||||
</tree>
|
||||
11
modules/analytic_account/view/account_tree_chart.xml
Normal file
11
modules/analytic_account/view/account_tree_chart.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 keyword_open="1">
|
||||
<field name="name" expand="2"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="code" optional="0"/>
|
||||
<field name="debit" optional="0"/>
|
||||
<field name="credit" optional="0"/>
|
||||
<field name="balance" optional="0"/>
|
||||
</tree>
|
||||
@@ -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. -->
|
||||
<form>
|
||||
<label name="root"/>
|
||||
<field name="root"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
</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 editable="1">
|
||||
<field name="root" expand="1"/>
|
||||
<field name="account" expand="2"/>
|
||||
<field name="origin" expand="1"/>
|
||||
</tree>
|
||||
16
modules/analytic_account/view/line_form.xml
Normal file
16
modules/analytic_account/view/line_form.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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="move_line"/>
|
||||
<field name="move_line"/>
|
||||
<newline/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="debit"/>
|
||||
<field name="debit"/>
|
||||
<label name="credit"/>
|
||||
<field name="credit"/>
|
||||
</form>
|
||||
10
modules/analytic_account/view/line_tree.xml
Normal file
10
modules/analytic_account/view/line_tree.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. -->
|
||||
<tree editable="1">
|
||||
<field name="move_line"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="date"/>
|
||||
<field name="debit"/>
|
||||
<field name="credit"/>
|
||||
</tree>
|
||||
11
modules/analytic_account/view/move_line_form.xml
Normal file
11
modules/analytic_account/view/move_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="/form/notebook/page[@name='tax_lines']"
|
||||
position="after">
|
||||
<page string="Analytic" col="1" id="analytic">
|
||||
<field name="analytic_lines"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
18
modules/analytic_account/view/move_line_list.xml
Normal file
18
modules/analytic_account/view/move_line_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="move"/>
|
||||
<field name="move_origin" expand="1" optional="1"/>
|
||||
<field name="origin" expand="1" optional="1"/>
|
||||
<field name="move_description_used" expand="1" optional="1"/>
|
||||
<field name="description_used" expand="1" optional="1"/>
|
||||
<field name="date"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="debit" sum="1"/>
|
||||
<field name="credit" sum="1"/>
|
||||
<field name="analytic_state"/>
|
||||
<button name="apply_analytic_rules" multiple="1"/>
|
||||
</tree>
|
||||
17
modules/analytic_account/view/rule_form.xml
Normal file
17
modules/analytic_account/view/rule_form.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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="account"/>
|
||||
<field name="account"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<separator id="analytic_accounts" colspan="4"/>
|
||||
<field name="analytic_accounts" colspan="4"/>
|
||||
</form>
|
||||
9
modules/analytic_account/view/rule_list.xml
Normal file
9
modules/analytic_account/view/rule_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="company" expand="1" optional="1"/>
|
||||
<field name="account" expand="2"/>
|
||||
<field name="party" expand="1" optional="0"/>
|
||||
<field name="journal" expand="1" optional="0"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user