first commit
This commit is contained in:
24
modules/account_statement/view/line_group_form.xml
Normal file
24
modules/account_statement/view/line_group_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="statement"/>
|
||||
<field name="statement"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
</form>
|
||||
13
modules/account_statement/view/line_group_list.xml
Normal file
13
modules/account_statement/view/line_group_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>
|
||||
<field name="journal"/>
|
||||
<field name="statement"/>
|
||||
<field name="number"/>
|
||||
<field name="date"/>
|
||||
<field name="amount"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="party"/>
|
||||
<field name="move"/>
|
||||
</tree>
|
||||
49
modules/account_statement/view/statement_form.xml
Normal file
49
modules/account_statement/view/statement_form.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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" colspan="3"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="start_balance"/>
|
||||
<group id="balances" col="-1">
|
||||
<field name="start_balance"/>
|
||||
<label name="balance"/>
|
||||
<field name="balance"/>
|
||||
</group>
|
||||
<label name="end_balance"/>
|
||||
<field name="end_balance"/>
|
||||
<label name="total_amount"/>
|
||||
<field name="total_amount"/>
|
||||
<newline/>
|
||||
<label name="number_of_lines"/>
|
||||
<field name="number_of_lines"/>
|
||||
<newline/>
|
||||
<notebook colspan="4">
|
||||
<page string="Statement Lines" col="4" id="statement_lines">
|
||||
<field name="lines" colspan="4"
|
||||
view_ids="account_statement.statement_line_view_tree_editable"/>
|
||||
</page>
|
||||
<page name="origins">
|
||||
<field name="origins" colspan="4"/>
|
||||
<label name="origin_file"/>
|
||||
<field name="origin_file"/>
|
||||
</page>
|
||||
<page string="Other Info" id="info">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft" icon="tryton-undo"/>
|
||||
<button name="validate_statement" icon="tryton-forward"/>
|
||||
<button name="reconcile" icon="tryton-search"/>
|
||||
<button name="post" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- The COPYRIGHT file at the top level of this repository contains the full
|
||||
copyright notices and license terms. -->
|
||||
<form cursor="file_">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<newline/>
|
||||
<label name="file_"/>
|
||||
<field name="file_"/>
|
||||
<label name="file_format"/>
|
||||
<field name="file_format"/>
|
||||
</form>
|
||||
21
modules/account_statement/view/statement_journal_form.xml
Normal file
21
modules/account_statement/view/statement_journal_form.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
<label name="bank_account"/>
|
||||
<field name="bank_account"/>
|
||||
<label name="validation"/>
|
||||
<field name="validation"/>
|
||||
</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>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="last_date"/>
|
||||
<field name="last_amount"/>
|
||||
</tree>
|
||||
10
modules/account_statement/view/statement_journal_tree.xml
Normal file
10
modules/account_statement/view/statement_journal_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="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="journal" expand="1" optional="0"/>
|
||||
<field name="currency" optional="1"/>
|
||||
<field name="bank_account" expand="1" optional="0"/>
|
||||
</tree>
|
||||
38
modules/account_statement/view/statement_line_form.xml
Normal file
38
modules/account_statement/view/statement_line_form.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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="statement"/>
|
||||
<field name="statement" colspan="3"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
|
||||
<label name="related_to"/>
|
||||
<field name="related_to"/>
|
||||
<newline/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
</form>
|
||||
14
modules/account_statement/view/statement_line_tree.xml
Normal file
14
modules/account_statement/view/statement_line_tree.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. -->
|
||||
<tree>
|
||||
<field name="statement" expand="1"/>
|
||||
<field name="number"/>
|
||||
<field name="date"/>
|
||||
<field name="amount"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="related_to" expand="1"/>
|
||||
<field name="description" expand="1"/>
|
||||
</tree>
|
||||
@@ -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. -->
|
||||
<tree editable="1" sequence="sequence">
|
||||
<field name="statement" expand="1"/>
|
||||
<field name="number"/>
|
||||
<field name="date"/>
|
||||
<field name="amount" sum="1"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="related_to" expand="1"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="description" expand="1"/>
|
||||
</tree>
|
||||
36
modules/account_statement/view/statement_origin_form.xml
Normal file
36
modules/account_statement/view/statement_origin_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>
|
||||
<label name="statement"/>
|
||||
<field name="statement"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="pending_amount"/>
|
||||
<field name="pending_amount"/>
|
||||
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
<label name="second_currency"/>
|
||||
<field name="second_currency"/>
|
||||
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
|
||||
<field name="information" colspan="4"/>
|
||||
|
||||
<field name="lines" colspan="4"/>
|
||||
</form>
|
||||
14
modules/account_statement/view/statement_origin_tree.xml
Normal file
14
modules/account_statement/view/statement_origin_tree.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. -->
|
||||
<tree>
|
||||
<field name="statement" expand="1"/>
|
||||
<field name="number"/>
|
||||
<field name="date"/>
|
||||
<field name="amount" sum="1"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="pending_amount"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="account" expand="1"/>
|
||||
<field name="description" expand="1"/>
|
||||
</tree>
|
||||
11
modules/account_statement/view/statement_tree.xml
Normal file
11
modules/account_statement/view/statement_tree.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" expand="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="date"/>
|
||||
<field name="state"/>
|
||||
<button name="post" multiple="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user