first commit
This commit is contained in:
8
modules/account/view/account_balance_sheet_tree.xml
Normal file
8
modules/account/view/account_balance_sheet_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. -->
|
||||
<tree keyword_open="1">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="amount"/>
|
||||
<field name="amount_cmp" string="Comparison"/>
|
||||
</tree>
|
||||
11
modules/account/view/account_context_form.xml
Normal file
11
modules/account/view/account_context_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. -->
|
||||
<form col="6">
|
||||
<label name="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
</form>
|
||||
19
modules/account/view/account_deferral_form.xml
Normal file
19
modules/account/view/account_deferral_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="account"/>
|
||||
<field name="account"/>
|
||||
<newline/>
|
||||
<label name="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<newline/>
|
||||
<label name="debit"/>
|
||||
<field name="debit"/>
|
||||
<label name="credit"/>
|
||||
<field name="credit"/>
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
</form>
|
||||
10
modules/account/view/account_deferral_tree.xml
Normal file
10
modules/account/view/account_deferral_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="account"/>
|
||||
<field name="fiscalyear"/>
|
||||
<field name="debit"/>
|
||||
<field name="credit"/>
|
||||
<field name="amount_second_currency"/>
|
||||
</tree>
|
||||
82
modules/account/view/account_form.xml
Normal file
82
modules/account/view/account_form.xml
Normal file
@@ -0,0 +1,82 @@
|
||||
<?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"/>
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="100"/>
|
||||
<label name="template_override"/>
|
||||
<field name="template_override" xexpand="0" width="100"/>
|
||||
</group>
|
||||
<notebook colspan="6">
|
||||
<page string="General Ledger" id="general_ledger" col="6">
|
||||
<label name="debit"/>
|
||||
<field name="debit"/>
|
||||
<label name="credit"/>
|
||||
<field name="credit"/>
|
||||
<label name="balance"/>
|
||||
<field name="balance"/>
|
||||
|
||||
<group id="general_ledger_links" col="-1" colspan="6">
|
||||
<link icon="tryton-list" name="account.act_general_ledger_line_form"/>
|
||||
<link icon="tryton-list" name="account.act_general_ledger_account_party_form"/>
|
||||
<link icon="tryton-list" name="account.act_move_line_form"/>
|
||||
</group>
|
||||
</page>
|
||||
<page string="General Information" id="general" col="6">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<newline/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type" colspan="5"/>
|
||||
|
||||
<label name="debit_type"/>
|
||||
<field name="debit_type" colspan="5"/>
|
||||
|
||||
<label name="credit_type"/>
|
||||
<field name="credit_type" colspan="5"/>
|
||||
|
||||
<label name="closed"/>
|
||||
<field name="closed"/>
|
||||
<label name="general_ledger_balance"/>
|
||||
<field name="general_ledger_balance"/>
|
||||
<newline/>
|
||||
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<label name="replaced_by"/>
|
||||
<field name="replaced_by"/>
|
||||
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
<newline/>
|
||||
|
||||
<label name="reconcile"/>
|
||||
<field name="reconcile"/>
|
||||
<label name="party_required"/>
|
||||
<field name="party_required"/>
|
||||
|
||||
<field name="taxes" colspan="6"/>
|
||||
</page>
|
||||
<page string="Children" id="children">
|
||||
<field name="childs" colspan="4"/>
|
||||
</page>
|
||||
<page name="deferrals">
|
||||
<field name="deferrals"/>
|
||||
</page>
|
||||
<page name="note">
|
||||
<field name="note"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
8
modules/account/view/account_income_statement_tree.xml
Normal file
8
modules/account/view/account_income_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. -->
|
||||
<tree keyword_open="1">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="amount"/>
|
||||
<field name="amount_cmp" string="Comparison"/>
|
||||
</tree>
|
||||
10
modules/account/view/account_list.xml
Normal file
10
modules/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="rec_name" expand="2"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="type" expand="1" optional="1"/>
|
||||
<field name="debit_type" expand="1" optional="1"/>
|
||||
<field name="credit_type" expand="1" optional="1"/>
|
||||
</tree>
|
||||
11
modules/account/view/account_list_balance_sheet.xml
Normal file
11
modules/account/view/account_list_balance_sheet.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="code" optional="0"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="debit" optional="0"/>
|
||||
<field name="credit" optional="0"/>
|
||||
<field name="balance" optional="0"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
</tree>
|
||||
40
modules/account/view/account_template_form.xml
Normal file
40
modules/account/view/account_template_form.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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="parent"/>
|
||||
<field name="parent"/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type" colspan="5"/>
|
||||
|
||||
<label name="debit_type"/>
|
||||
<field name="debit_type" colspan="5"/>
|
||||
|
||||
<label name="credit_type"/>
|
||||
<field name="credit_type" colspan="5"/>
|
||||
|
||||
<label name="closed"/>
|
||||
<field name="closed"/>
|
||||
<label name="general_ledger_balance"/>
|
||||
<field name="general_ledger_balance"/>
|
||||
<newline/>
|
||||
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<label name="replaced_by"/>
|
||||
<field name="replaced_by"/>
|
||||
|
||||
<label name="reconcile"/>
|
||||
<field name="reconcile"/>
|
||||
<label name="party_required"/>
|
||||
<field name="party_required"/>
|
||||
|
||||
<field name="taxes" colspan="6"/>
|
||||
</form>
|
||||
9
modules/account/view/account_template_list.xml
Normal file
9
modules/account/view/account_template_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>
|
||||
<field name="rec_name" expand="2"/>
|
||||
<field name="type" expand="1" optional="1"/>
|
||||
<field name="debit_type" expand="1" optional="1"/>
|
||||
<field name="credit_type" expand="1" optional="1"/>
|
||||
</tree>
|
||||
9
modules/account/view/account_template_tree.xml
Normal file
9
modules/account/view/account_template_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="rec_name" expand="2"/>
|
||||
<field name="type" expand="1" optional="1"/>
|
||||
<field name="debit_type" expand="1" optional="1"/>
|
||||
<field name="credit_type" expand="1" optional="1"/>
|
||||
</tree>
|
||||
10
modules/account/view/account_tree.xml
Normal file
10
modules/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" expand="1" optional="1"/>
|
||||
<field name="debit_type" expand="1" optional="1"/>
|
||||
<field name="credit_type" expand="1" optional="1"/>
|
||||
</tree>
|
||||
11
modules/account/view/account_tree_chart.xml
Normal file
11
modules/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="code" optional="0"/>
|
||||
<field name="debit" optional="0"/>
|
||||
<field name="credit" optional="0"/>
|
||||
<field name="balance" optional="0"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
</tree>
|
||||
37
modules/account/view/account_type_form.xml
Normal file
37
modules/account/view/account_type_form.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="statement"/>
|
||||
<group col="-1" id="statement">
|
||||
<field name="statement"/>
|
||||
<label name="assets"/>
|
||||
<field name="assets"/>
|
||||
</group>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<label name="template_override"/>
|
||||
<field name="template_override"/>
|
||||
<group colspan="6" col="-1" id="checkboxes">
|
||||
<label name="receivable"/>
|
||||
<field name="receivable" xexpand="0" width="25"/>
|
||||
<label name="stock"/>
|
||||
<field name="stock" xexpand="0" width="25"/>
|
||||
<label name="payable"/>
|
||||
<field name="payable" xexpand="0" width="25"/>
|
||||
<label name="debt"/>
|
||||
<field name="debt" xexpand="0" width="25"/>
|
||||
<label name="revenue"/>
|
||||
<field name="revenue" xexpand="0" width="25"/>
|
||||
<label name="expense"/>
|
||||
<field name="expense" xexpand="0" width="25"/>
|
||||
</group>
|
||||
|
||||
<field name="childs" colspan="6"/>
|
||||
</form>
|
||||
7
modules/account/view/account_type_list.xml
Normal file
7
modules/account/view/account_type_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>
|
||||
<field name="company" optional="1"/>
|
||||
<field name="rec_name" expand="1"/>
|
||||
</tree>
|
||||
31
modules/account/view/account_type_template_form.xml
Normal file
31
modules/account/view/account_type_template_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"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="statement"/>
|
||||
<group col="-1" id="statement">
|
||||
<field name="statement"/>
|
||||
<label name="assets"/>
|
||||
<field name="assets"/>
|
||||
</group>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<group colspan="4" col="-1" id="checkboxes">
|
||||
<label name="receivable"/>
|
||||
<field name="receivable" xexpand="0" width="25"/>
|
||||
<label name="stock"/>
|
||||
<field name="stock" xexpand="0" width="25"/>
|
||||
<label name="payable"/>
|
||||
<field name="payable" xexpand="0" width="25"/>
|
||||
<label name="debt"/>
|
||||
<field name="debt" xexpand="0" width="25"/>
|
||||
<label name="revenue"/>
|
||||
<field name="revenue" xexpand="0" width="25"/>
|
||||
<label name="expense"/>
|
||||
<field name="expense" xexpand="0" width="25"/>
|
||||
</group>
|
||||
</form>
|
||||
6
modules/account/view/account_type_template_list.xml
Normal file
6
modules/account/view/account_type_template_list.xml
Normal file
@@ -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. -->
|
||||
<tree>
|
||||
<field name="rec_name" expand="1"/>
|
||||
</tree>
|
||||
6
modules/account/view/account_type_template_tree.xml
Normal file
6
modules/account/view/account_type_template_tree.xml
Normal file
@@ -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. -->
|
||||
<tree>
|
||||
<field name="name" expand="1"/>
|
||||
</tree>
|
||||
7
modules/account/view/account_type_tree.xml
Normal file
7
modules/account/view/account_type_tree.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>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="company" optional="1"/>
|
||||
</tree>
|
||||
22
modules/account/view/aged_balance_context_form.xml
Normal file
22
modules/account/view/aged_balance_context_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 col="6">
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
<separator string="Terms" colspan="6" id="terms"/>
|
||||
<label name="term1"/>
|
||||
<field name="term1"/>
|
||||
<label name="term2"/>
|
||||
<field name="term2"/>
|
||||
<label name="term3"/>
|
||||
<field name="term3"/>
|
||||
</form>
|
||||
11
modules/account/view/aged_balance_list.xml
Normal file
11
modules/account/view/aged_balance_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="party" expand="2"/>
|
||||
<field name="term0" expand="1" sum="1"/>
|
||||
<field name="term1" expand="1" sum="1"/>
|
||||
<field name="term2" expand="1" sum="1"/>
|
||||
<field name="term3" expand="1" sum="1"/>
|
||||
<field name="balance" expand="1" sum="1"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?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/field[@name='posted']" position="after">
|
||||
<label name="comparison"/>
|
||||
<field name="comparison"/>
|
||||
<separator id="comparison" colspan="6"/>
|
||||
<label name="date_cmp"/>
|
||||
<field name="date_cmp"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/account/view/balance_sheet_context_form.xml
Normal file
11
modules/account/view/balance_sheet_context_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. -->
|
||||
<form col="6">
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
</form>
|
||||
19
modules/account/view/company_form.xml
Normal file
19
modules/account/view/company_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. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook" position="inside">
|
||||
<page string="Accounting" id="accounting">
|
||||
<separator string="Account" colspan="4" id="account"/>
|
||||
<label name="receivable_today"/>
|
||||
<field name="receivable_today"/>
|
||||
<label name="payable_today"/>
|
||||
<field name="payable_today"/>
|
||||
|
||||
<label name="receivable"/>
|
||||
<field name="receivable"/>
|
||||
<label name="payable"/>
|
||||
<field name="payable"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/account/view/company_list.xml
Normal file
9
modules/account/view/company_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. -->
|
||||
<data>
|
||||
<xpath expr="/tree" position="inside">
|
||||
<field name="receivable_today" optional="0"/>
|
||||
<field name="payable_today" optional="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
29
modules/account/view/configuration_form.xml
Normal file
29
modules/account/view/configuration_form.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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>
|
||||
<separator id="party" string="Party" colspan="4"/>
|
||||
<label name="default_account_receivable"/>
|
||||
<field name="default_account_receivable"/>
|
||||
<label name="default_account_payable"/>
|
||||
<field name="default_account_payable"/>
|
||||
<separator id="invoice" string="Invoice" colspan="4"/>
|
||||
<label name="default_customer_tax_rule"/>
|
||||
<field name="default_customer_tax_rule"/>
|
||||
<label name="default_supplier_tax_rule"/>
|
||||
<field name="default_supplier_tax_rule"/>
|
||||
<label name="tax_rounding"/>
|
||||
<field name="tax_rounding"/>
|
||||
<separator id="move" string="Move" colspan="4"/>
|
||||
<label name="reconciliation_sequence"/>
|
||||
<field name="reconciliation_sequence"/>
|
||||
|
||||
<separator id="currency_exchange" string="Currency Exchange" colspan="4"/>
|
||||
<label name="currency_exchange_journal" string="Journal"/>
|
||||
<field name="currency_exchange_journal" widget="selection"/>
|
||||
<newline/>
|
||||
<label name="currency_exchange_debit_account" string="Debit Account"/>
|
||||
<field name="currency_exchange_debit_account"/>
|
||||
<label name="currency_exchange_credit_account" string="Credit Account"/>
|
||||
<field name="currency_exchange_credit_account"/>
|
||||
</form>
|
||||
9
modules/account/view/create_chart_account_form.xml
Normal file
9
modules/account/view/create_chart_account_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 col="2">
|
||||
<label name="company"/>
|
||||
<field name="company" widget="selection"/>
|
||||
<label name="account_template"/>
|
||||
<field name="account_template" widget="selection"/>
|
||||
</form>
|
||||
9
modules/account/view/create_chart_properties_form.xml
Normal file
9
modules/account/view/create_chart_properties_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 col="2">
|
||||
<label name="account_receivable"/>
|
||||
<field name="account_receivable"/>
|
||||
<label name="account_payable"/>
|
||||
<field name="account_payable"/>
|
||||
</form>
|
||||
10
modules/account/view/create_chart_start_form.xml
Normal file
10
modules/account/view/create_chart_start_form.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. -->
|
||||
<form col="2">
|
||||
<image name="tryton-info" xexpand="0" xfill="0"/>
|
||||
<label
|
||||
string="You can now create a chart of account for your company by selecting a chart of account template."
|
||||
id="create"
|
||||
yalign="0.5" xalign="0.0" xexpand="1"/>
|
||||
</form>
|
||||
@@ -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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<newline/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
<label name="credit_account"/>
|
||||
<field name="credit_account"/>
|
||||
<label name="debit_account"/>
|
||||
<field name="debit_account"/>
|
||||
</form>
|
||||
@@ -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="frequency"/>
|
||||
<field name="frequency"/>
|
||||
<label name="interval" string="every"/>
|
||||
<group col="2" id="interval">
|
||||
<field name="interval" xexpand="0"/>
|
||||
<label name="interval" string="months" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
<label name="end_day"/>
|
||||
<field name="end_day"/>
|
||||
</form>
|
||||
27
modules/account/view/fiscalyear_form.xml
Normal file
27
modules/account/view/fiscalyear_form.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Periods" id="periods">
|
||||
<field name="periods" colspan="4"/>
|
||||
<group col="-1" colspan="4" id="buttons">
|
||||
<button name="create_periods"/>
|
||||
</group>
|
||||
</page>
|
||||
<page string="Sequences" id="sequences">
|
||||
<label name="move_sequence"/>
|
||||
<field name="move_sequence"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state" colspan="3"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
11
modules/account/view/fiscalyear_list_close.xml
Normal file
11
modules/account/view/fiscalyear_list_close.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="name" icon="icon" expand="1"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<button name="reopen"/>
|
||||
<button name="close"/>
|
||||
<button name="lock_"/>
|
||||
<field name="state" tree_invisible="1"/>
|
||||
</tree>
|
||||
8
modules/account/view/fiscalyear_tree.xml
Normal file
8
modules/account/view/fiscalyear_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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
26
modules/account/view/general_ledger_account_context_form.xml
Normal file
26
modules/account/view/general_ledger_account_context_form.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
</group>
|
||||
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
|
||||
<label name="from_date"/>
|
||||
<field name="from_date"/>
|
||||
<label name="to_date"/>
|
||||
<field name="to_date"/>
|
||||
</form>
|
||||
11
modules/account/view/general_ledger_account_list.xml
Normal file
11
modules/account/view/general_ledger_account_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 keyword_open="1">
|
||||
<field name="account" expand="1"/>
|
||||
<field name="start_balance" sum="1" optional="0"/>
|
||||
<field name="line_count" optional="1"/>
|
||||
<field name="debit" sum="1" optional="0"/>
|
||||
<field name="credit" sum="1" optional="0"/>
|
||||
<field name="end_balance" sum="1" optional="0"/>
|
||||
</tree>
|
||||
@@ -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='account']" position="after">
|
||||
<field name="party" expand="2"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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="//group[@id='checkboxes']" position="inside">
|
||||
<label name="party_cumulate"/>
|
||||
<field name="party_cumulate"/>
|
||||
</xpath>
|
||||
</data>
|
||||
17
modules/account/view/general_ledger_line_list.xml
Normal file
17
modules/account/view/general_ledger_line_list.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. -->
|
||||
<tree>
|
||||
<field name="date"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="party" expand="1" optional="0"/>
|
||||
<field name="move" optional="0"/>
|
||||
<field name="description_used" expand="1" optional="1"/>
|
||||
<field name="origin" optional="1"/>
|
||||
<field name="reconciliation" optional="1"/>
|
||||
<field name="state" optional="1"/>
|
||||
<field name="debit" sum="1" optional="0"/>
|
||||
<field name="credit" sum="1" optional="0"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="balance" optional="0"/>
|
||||
</tree>
|
||||
37
modules/account/view/income_statement_context_form.xml
Normal file
37
modules/account/view/income_statement_context_form.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<newline/>
|
||||
<label name="from_date"/>
|
||||
<field name="from_date"/>
|
||||
<label name="to_date"/>
|
||||
<field name="to_date"/>
|
||||
<newline/>
|
||||
<label name="comparison"/>
|
||||
<field name="comparison"/>
|
||||
<newline/>
|
||||
<separator id="comparison" colspan="6"/>
|
||||
<label name="fiscalyear_cmp"/>
|
||||
<field name="fiscalyear_cmp"/>
|
||||
<newline/>
|
||||
<label name="start_period_cmp"/>
|
||||
<field name="start_period_cmp"/>
|
||||
<label name="end_period_cmp"/>
|
||||
<field name="end_period_cmp"/>
|
||||
<newline/>
|
||||
<label name="from_date_cmp"/>
|
||||
<field name="from_date_cmp"/>
|
||||
<label name="to_date_cmp"/>
|
||||
<field name="to_date_cmp"/>
|
||||
</form>
|
||||
18
modules/account/view/journal_form.xml
Normal file
18
modules/account/view/journal_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>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<group col="-1" id="code_active">
|
||||
<field name="code"/>
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="25"/>
|
||||
</group>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="matching_sequence"/>
|
||||
<field name="matching_sequence"/>
|
||||
</form>
|
||||
10
modules/account/view/journal_list_cash.xml
Normal file
10
modules/account/view/journal_list_cash.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="code"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="debit"/>
|
||||
<field name="credit"/>
|
||||
<field name="balance"/>
|
||||
</tree>
|
||||
8
modules/account/view/journal_list_matching_sequence.xml
Normal file
8
modules/account/view/journal_list_matching_sequence.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. -->
|
||||
<tree sequence="matching_sequence">
|
||||
<field name="code"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
9
modules/account/view/journal_open_cash_context.xml
Normal file
9
modules/account/view/journal_open_cash_context.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>
|
||||
20
modules/account/view/journal_period_form.xml
Normal file
20
modules/account/view/journal_period_form.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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="period"/>
|
||||
<field name="period"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<newline/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group id="buttons" colspan="2" col="-1">
|
||||
<button name="reopen"/>
|
||||
<button name="close"/>
|
||||
</group>
|
||||
</form>
|
||||
11
modules/account/view/journal_period_list_close.xml
Normal file
11
modules/account/view/journal_period_list_close.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="journal" icon="icon" expand="1"/>
|
||||
<field name="period" expand="1"/>
|
||||
<button name="reopen"/>
|
||||
<button name="close"/>
|
||||
<field name="state" tree_invisible="1"/>
|
||||
</tree>
|
||||
9
modules/account/view/journal_period_tree.xml
Normal file
9
modules/account/view/journal_period_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 keyword_open="1">
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="journal" expand="1"/>
|
||||
<field name="period" expand="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
8
modules/account/view/journal_tree.xml
Normal file
8
modules/account/view/journal_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. -->
|
||||
<tree>
|
||||
<field name="code"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
10
modules/account/view/move_cancel_default_form.xml
Normal file
10
modules/account/view/move_cancel_default_form.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. -->
|
||||
<form>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
|
||||
<label name="reversal"/>
|
||||
<field name="reversal"/>
|
||||
</form>
|
||||
7
modules/account/view/move_context_form.xml
Normal file
7
modules/account/view/move_context_form.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. -->
|
||||
<form>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
</form>
|
||||
31
modules/account/view/move_form.xml
Normal file
31
modules/account/view/move_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 cursor="journal">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="post_date"/>
|
||||
<field name="post_date"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin" colspan="3"/>
|
||||
<label name="description_used"/>
|
||||
<field name="description_used" colspan="3"/>
|
||||
<notebook>
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"
|
||||
view_ids="account.move_line_view_tree_move,account.move_line_view_form_move"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<button name="post" icon="tryton-ok" colspan="2"/>
|
||||
</form>
|
||||
12
modules/account/view/move_line_delegate_start_form.xml
Normal file
12
modules/account/view/move_line_delegate_start_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
</form>
|
||||
55
modules/account/view/move_line_form.xml
Normal file
55
modules/account/view/move_line_form.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?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="period"/>
|
||||
<field name="period"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<newline/>
|
||||
|
||||
<label name="debit"/>
|
||||
<field name="debit"/>
|
||||
<label name="credit"/>
|
||||
<field name="credit"/>
|
||||
<label name="move_origin"/>
|
||||
<field name="move_origin"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
<label name="description_used"/>
|
||||
<field name="description_used" colspan="3"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Other Info" id="info">
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="maturity_date"/>
|
||||
<field name="maturity_date"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<newline/>
|
||||
<label name="reconciliation"/>
|
||||
<field name="reconciliation"/>
|
||||
<label name="delegated_amount"/>
|
||||
<field name="delegated_amount" symbol="amount_currency"/>
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
</page>
|
||||
<page name="tax_lines">
|
||||
<field name="tax_lines" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="move_state"/>
|
||||
<field name="move_state"/>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
36
modules/account/view/move_line_form_move.xml
Normal file
36
modules/account/view/move_line_form_move.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>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<newline/>
|
||||
<label name="debit"/>
|
||||
<field name="debit"/>
|
||||
<label name="credit"/>
|
||||
<field name="credit"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin" colspan="3"/>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Other Info" id="info">
|
||||
<label id="empty" colspan="2"/>
|
||||
<label name="maturity_date"/>
|
||||
<field name="maturity_date"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="reconciliation"/>
|
||||
<field name="reconciliation"/>
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency" symbol=""/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
</page>
|
||||
<page name="tax_lines">
|
||||
<field name="tax_lines" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
10
modules/account/view/move_line_group_start_form.xml
Normal file
10
modules/account/view/move_line_group_start_form.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. -->
|
||||
<form>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<newline/>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
</form>
|
||||
16
modules/account/view/move_line_list_payable_receivable.xml
Normal file
16
modules/account/view/move_line_list_payable_receivable.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="payable_receivable_date" string="Date"/>
|
||||
<field name="party"/>
|
||||
<field name="amount"/>
|
||||
<field name="payable_receivable_balance" string="Balance"/>
|
||||
<field name="move" optional="1"/>
|
||||
<field name="move_origin" optional="1"/>
|
||||
<field name="origin" optional="1"/>
|
||||
<field name="move_description_used" optional="1"/>
|
||||
<field name="description_used" optional="1"/>
|
||||
<field name="reconciliation" optional="1"/>
|
||||
</tree>
|
||||
12
modules/account/view/move_line_list_reconcile.xml
Normal file
12
modules/account/view/move_line_list_reconcile.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="move" optional="0"/>
|
||||
<field name="move_origin" optional="0"/>
|
||||
<field name="origin" optional="1"/>
|
||||
<field name="move_description_used" optional="1"/>
|
||||
<field name="description_used" optional="1"/>
|
||||
<field name="maturity_date"/>
|
||||
<field name="amount"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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"/>
|
||||
<group colspan="2" col="-1" id="checkboxes">
|
||||
<label name="receivable"/>
|
||||
<field name="receivable" xexpand="0" width="25"/>
|
||||
<label name="payable"/>
|
||||
<field name="payable" xexpand="0" width="25"/>
|
||||
<label name="reconciled"/>
|
||||
<field name="reconciled" xexpand="0" width="25"/>
|
||||
</group>
|
||||
</form>
|
||||
13
modules/account/view/move_line_reschedule_preview_form.xml
Normal file
13
modules/account/view/move_line_reschedule_preview_form.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. -->
|
||||
<form>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<newline/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
|
||||
<field name="terms" colspan="4"/>
|
||||
</form>
|
||||
21
modules/account/view/move_line_reschedule_start_form.xml
Normal file
21
modules/account/view/move_line_reschedule_start_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 col="2">
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
|
||||
<label name="frequency"/>
|
||||
<group id="frequency_interval" col="-1">
|
||||
<field name="frequency"/>
|
||||
<label name="interval" string="every"/>
|
||||
<field name="interval" xexpand="0"/>
|
||||
<label name="interval" string="months" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
</form>
|
||||
7
modules/account/view/move_line_reschedule_term_list.xml
Normal file
7
modules/account/view/move_line_reschedule_term_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 editable="1">
|
||||
<field name="date"/>
|
||||
<field name="amount" expand="1"/>
|
||||
</tree>
|
||||
24
modules/account/view/move_line_template_form.xml
Normal file
24
modules/account/view/move_line_template_form.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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="account"/>
|
||||
<field name="account"/>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
<label name="operation"/>
|
||||
<field name="operation"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Other Info" id="info">
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
</page>
|
||||
<page name="taxes">
|
||||
<field name="taxes" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
12
modules/account/view/move_line_template_list.xml
Normal file
12
modules/account/view/move_line_template_list.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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" expand="1"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="operation"/>
|
||||
<field name="amount"/>
|
||||
<field name="description"/>
|
||||
<field name="taxes"/>
|
||||
</tree>
|
||||
23
modules/account/view/move_line_tree.xml
Normal file
23
modules/account/view/move_line_tree.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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" on_write="on_written">
|
||||
<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="date"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="debit" sum="1"/>
|
||||
<field name="credit" sum="1"/>
|
||||
<field name="amount_second_currency" symbol="" optional="1"/>
|
||||
<field name="second_currency" optional="1"/>
|
||||
<field name="delegated_amount" optional="0"/>
|
||||
<field name="tax_lines" optional="1"/>
|
||||
<field name="move_description_used" expand="1" optional="1"/>
|
||||
<field name="description_used" expand="1" optional="1"/>
|
||||
<field name="reconciliation" optional="1"/>
|
||||
<field name="state"/>
|
||||
<field name="move_state" optional="0"/>
|
||||
</tree>
|
||||
15
modules/account/view/move_line_tree_move.xml
Normal file
15
modules/account/view/move_line_tree_move.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="debit" sum="1"/>
|
||||
<field name="credit" sum="1"/>
|
||||
<field name="amount_second_currency" symbol="" optional="1"/>
|
||||
<field name="second_currency" optional="1"/>
|
||||
<field name="tax_lines" optional="1"/>
|
||||
<field name="description_used" expand="1" optional="1"/>
|
||||
<field name="reconciliation" optional="1"/>
|
||||
</tree>
|
||||
16
modules/account/view/move_reconciliation_form.xml
Normal file
16
modules/account/view/move_reconciliation_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="number"/>
|
||||
<field name="number"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="delegate_to"/>
|
||||
<field name="delegate_to"/>
|
||||
|
||||
<field name="lines" colspan="4"/>
|
||||
</form>
|
||||
9
modules/account/view/move_reconciliation_tree.xml
Normal file
9
modules/account/view/move_reconciliation_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="number"/>
|
||||
<field name="date"/>
|
||||
<field name="company"/>
|
||||
<field name="delegate_to"/>
|
||||
</tree>
|
||||
11
modules/account/view/move_template_create_template_form.xml
Normal file
11
modules/account/view/move_template_create_template_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. -->
|
||||
<form>
|
||||
<label name="template"/>
|
||||
<field name="template" widget="selection" colspan="3"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
</form>
|
||||
24
modules/account/view/move_template_form.xml
Normal file
24
modules/account/view/move_template_form.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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"/>
|
||||
<notebook>
|
||||
<page string="Template" id="template">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
<field name="lines" colspan="4"/>
|
||||
</page>
|
||||
<page name="keywords">
|
||||
<field name="keywords" colspan="4"
|
||||
view_ids="account.move_template_keyword_view_list_sequence"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
18
modules/account/view/move_template_keyword_form.xml
Normal file
18
modules/account/view/move_template_keyword_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>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
<newline/>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="string"/>
|
||||
<field name="string"/>
|
||||
<label name="type_"/>
|
||||
<field name="type_"/>
|
||||
<label name="digits"/>
|
||||
<field name="digits"/>
|
||||
<label name="required"/>
|
||||
<field name="required"/>
|
||||
</form>
|
||||
9
modules/account/view/move_template_keyword_list.xml
Normal file
9
modules/account/view/move_template_keyword_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>
|
||||
<field name="move"/>
|
||||
<field name="name"/>
|
||||
<field name="type_"/>
|
||||
<field name="required"/>
|
||||
</tree>
|
||||
@@ -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 sequence="sequence">
|
||||
<field name="name"/>
|
||||
<field name="type_"/>
|
||||
<field name="required"/>
|
||||
</tree>
|
||||
7
modules/account/view/move_template_list.xml
Normal file
7
modules/account/view/move_template_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>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="1"/>
|
||||
</tree>
|
||||
15
modules/account/view/move_tree.xml
Normal file
15
modules/account/view/move_tree.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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" optional="1"/>
|
||||
<field name="number" optional="0"/>
|
||||
<field name="journal" optional="0"/>
|
||||
<field name="period" optional="1"/>
|
||||
<field name="date"/>
|
||||
<field name="post_date" optional="1"/>
|
||||
<field name="origin" optional="0"/>
|
||||
<field name="description_used" expand="1" optional="1"/>
|
||||
<field name="state"/>
|
||||
<button name="post"/>
|
||||
</tree>
|
||||
12
modules/account/view/open_journal_ask_form.xml
Normal file
12
modules/account/view/open_journal_ask_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="journal">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
</form>
|
||||
28
modules/account/view/party_form.xml
Normal file
28
modules/account/view/party_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. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook" position="inside">
|
||||
<page string="Accounting" id="accounting">
|
||||
<separator string="Account" colspan="4" id="account"/>
|
||||
<label name="account_receivable"/>
|
||||
<field name="account_receivable"/>
|
||||
<label name="account_payable"/>
|
||||
<field name="account_payable"/>
|
||||
<newline/>
|
||||
<label name="receivable_today"/>
|
||||
<field name="receivable_today"/>
|
||||
<label name="payable_today"/>
|
||||
<field name="payable_today"/>
|
||||
<label name="receivable"/>
|
||||
<field name="receivable"/>
|
||||
<label name="payable"/>
|
||||
<field name="payable"/>
|
||||
<separator string="Taxes" colspan="4" id="taxes"/>
|
||||
<label name="customer_tax_rule"/>
|
||||
<field name="customer_tax_rule"/>
|
||||
<label name="supplier_tax_rule"/>
|
||||
<field name="supplier_tax_rule"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/account/view/party_tree.xml
Normal file
9
modules/account/view/party_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. -->
|
||||
<data>
|
||||
<xpath expr="/tree" position="inside">
|
||||
<field name="receivable_today" optional="0"/>
|
||||
<field name="payable_today" optional="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
24
modules/account/view/period_form.xml
Normal file
24
modules/account/view/period_form.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_date"/>
|
||||
<group id="start_end_date" col="-1">
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
</group>
|
||||
<label name="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="move_sequence"/>
|
||||
<field name="move_sequence"/>
|
||||
<newline/>
|
||||
<label name="state" colspan="3"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
13
modules/account/view/period_list_close.xml
Normal file
13
modules/account/view/period_list_close.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>
|
||||
<field name="name" icon="icon" expand="1"/>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="fiscalyear" expand="1" optional="1"/>
|
||||
<field name="type" optional="0"/>
|
||||
<button name="reopen"/>
|
||||
<button name="close"/>
|
||||
<button name="lock_"/>
|
||||
<field name="state" tree_invisible="1"/>
|
||||
</tree>
|
||||
9
modules/account/view/period_tree.xml
Normal file
9
modules/account/view/period_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="2"/>
|
||||
<field name="type"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
14
modules/account/view/reconcile_lines_writeoff_form.xml
Normal file
14
modules/account/view/reconcile_lines_writeoff_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 cursor="writeoff">
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="writeoff"/>
|
||||
<field name="writeoff" widget="selection"/>
|
||||
<newline/>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
</form>
|
||||
25
modules/account/view/reconcile_show_form.xml
Normal file
25
modules/account/view/reconcile_show_form.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
|
||||
<field name="lines" colspan="6" view_ids="account.move_line_view_list_reconcile"/>
|
||||
|
||||
<separator name="write_off" colspan="6"/>
|
||||
|
||||
<label name="write_off"/>
|
||||
<field name="write_off"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="write_off_amount"/>
|
||||
<field name="write_off_amount"/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="5"/>
|
||||
</form>
|
||||
10
modules/account/view/reconcile_start_form.xml
Normal file
10
modules/account/view/reconcile_start_form.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. -->
|
||||
<form col="2">
|
||||
<label name="automatic"/>
|
||||
<field name="automatic"/>
|
||||
|
||||
<label name="only_balanced"/>
|
||||
<field name="only_balanced"/>
|
||||
</form>
|
||||
17
modules/account/view/renew_fiscalyear_start_form.xml
Normal file
17
modules/account/view/renew_fiscalyear_start_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="previous_fiscalyear"/>
|
||||
<field name="previous_fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="name"/>
|
||||
<field name="name" colspan="3"/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<label name="reset_sequences"/>
|
||||
<field name="reset_sequences"/>
|
||||
</form>
|
||||
17
modules/account/view/tax_code_context_form.xml
Normal file
17
modules/account/view/tax_code_context_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 col="6">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="method"/>
|
||||
<field name="method"/>
|
||||
<group id="method" col="-1" colspan="2">
|
||||
<field name="fiscalyear"/>
|
||||
<field name="period"/>
|
||||
<field name="start_period"/>
|
||||
<field name="end_period"/>
|
||||
</group>
|
||||
|
||||
<field name="periods" colspan="6" invisible="1"/>
|
||||
</form>
|
||||
35
modules/account/view/tax_code_form.xml
Normal file
35
modules/account/view/tax_code_form.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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"/>
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="100"/>
|
||||
<label name="template_override"/>
|
||||
<field name="template_override" xexpand="0" width="100"/>
|
||||
</group>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<newline/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<notebook colspan="6">
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"/>
|
||||
</page>
|
||||
<page name="childs">
|
||||
<field name="childs" colspan="4"/>
|
||||
</page>
|
||||
<page name="description">
|
||||
<field name="description" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
14
modules/account/view/tax_code_line_form.xml
Normal file
14
modules/account/view/tax_code_line_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 col="5">
|
||||
<label name="code"/>
|
||||
<field name="code" colspan="4"/>
|
||||
<field name="operator"/>
|
||||
<label name="tax"/>
|
||||
<field name="tax"/>
|
||||
<field name="amount"/>
|
||||
<field name="type"/>
|
||||
<label name="template_override"/>
|
||||
<field name="template_override"/>
|
||||
</form>
|
||||
10
modules/account/view/tax_code_line_list.xml
Normal file
10
modules/account/view/tax_code_line_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="code"/>
|
||||
<field name="operator"/>
|
||||
<field name="tax"/>
|
||||
<field name="amount"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
12
modules/account/view/tax_code_line_template_form.xml
Normal file
12
modules/account/view/tax_code_line_template_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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="5">
|
||||
<label name="code"/>
|
||||
<field name="code" colspan="4"/>
|
||||
<field name="operator"/>
|
||||
<label name="tax"/>
|
||||
<field name="tax"/>
|
||||
<field name="amount"/>
|
||||
<field name="type"/>
|
||||
</form>
|
||||
10
modules/account/view/tax_code_line_template_list.xml
Normal file
10
modules/account/view/tax_code_line_template_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="code" expand="1"/>
|
||||
<field name="operator"/>
|
||||
<field name="tax" expand="1"/>
|
||||
<field name="amount"/>
|
||||
<field name="type"/>
|
||||
</tree>
|
||||
8
modules/account/view/tax_code_list.xml
Normal file
8
modules/account/view/tax_code_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="code"/>
|
||||
<field name="name" expand="2"/>
|
||||
</tree>
|
||||
28
modules/account/view/tax_code_template_form.xml
Normal file
28
modules/account/view/tax_code_template_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="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<label name="start_date"/>
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
<notebook colspan="4">
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"/>
|
||||
</page>
|
||||
<page name="childs">
|
||||
<field name="childs" colspan="4"/>
|
||||
</page>
|
||||
<page name="description">
|
||||
<field name="description" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
8
modules/account/view/tax_code_template_tree.xml
Normal file
8
modules/account/view/tax_code_template_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. -->
|
||||
<tree>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="code" optional="1"/>
|
||||
<field name="account" expand="1" optional="0"/>
|
||||
</tree>
|
||||
8
modules/account/view/tax_code_tree.xml
Normal file
8
modules/account/view/tax_code_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. -->
|
||||
<tree>
|
||||
<field name="company" expand="2" optional="1"/>
|
||||
<field name="code"/>
|
||||
<field name="name" expand="2"/>
|
||||
</tree>
|
||||
8
modules/account/view/tax_code_tree_chart.xml
Normal file
8
modules/account/view/tax_code_tree_chart.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. -->
|
||||
<tree keyword_open="1">
|
||||
<field name="code"/>
|
||||
<field name="name" expand="1" optional="0"/>
|
||||
<field name="amount" optional="0"/>
|
||||
</tree>
|
||||
55
modules/account/view/tax_form.xml
Normal file
55
modules/account/view/tax_form.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="active"/>
|
||||
<field name="active" xexpand="0" width="100"/>
|
||||
<label name="template_override"/>
|
||||
<field name="template_override" xexpand="0" width="100"/>
|
||||
</group>
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="5"/>
|
||||
<notebook colspan="6">
|
||||
<page string="General Information" id="general">
|
||||
<label name="group"/>
|
||||
<field name="group"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="start_date"/>
|
||||
<group col="-1" id="start_end_date">
|
||||
<field name="start_date"/>
|
||||
<label name="end_date"/>
|
||||
<field name="end_date"/>
|
||||
</group>
|
||||
<label name="update_unit_price"/>
|
||||
<field name="update_unit_price"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<group col="1" id="label_amount_rate">
|
||||
<label name="amount" yfill="1" xexpand="1" yexpand="1"/>
|
||||
<label name="rate" yfill="1" xexpand="1" yexpand="1"/>
|
||||
</group>
|
||||
<group col="1" id="amount_rate">
|
||||
<field name="amount"/>
|
||||
<group col="2" id="rate">
|
||||
<field name="rate" factor="100" xexpand="0"/>
|
||||
<label name="rate" string="%" xalign="0.0" xexpand="1"/>
|
||||
</group>
|
||||
</group>
|
||||
<label name="invoice_account"/>
|
||||
<field name="invoice_account"/>
|
||||
<label name="credit_note_account"/>
|
||||
<field name="credit_note_account"/>
|
||||
<field name="childs" colspan="4"
|
||||
view_ids="account.tax_view_list"/>
|
||||
</page>
|
||||
<page name="legal_notice" col="1">
|
||||
<field name="legal_notice"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
11
modules/account/view/tax_group_form.xml
Normal file
11
modules/account/view/tax_group_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. -->
|
||||
<form col="6">
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="kind"/>
|
||||
<field name="kind"/>
|
||||
</form>
|
||||
8
modules/account/view/tax_group_tree.xml
Normal file
8
modules/account/view/tax_group_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. -->
|
||||
<tree>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="code" expand="1"/>
|
||||
<field name="kind"/>
|
||||
</tree>
|
||||
14
modules/account/view/tax_line_form.xml
Normal file
14
modules/account/view/tax_line_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="move_line"/>
|
||||
<field name="move_line" colspan="3"/>
|
||||
<label name="tax"/>
|
||||
<field name="tax"/>
|
||||
<newline/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
</form>
|
||||
14
modules/account/view/tax_line_template_form.xml
Normal file
14
modules/account/view/tax_line_template_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="line"/>
|
||||
<field name="line" colspan="3"/>
|
||||
<label name="tax"/>
|
||||
<field name="tax"/>
|
||||
<newline/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
</form>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user