first commit
This commit is contained in:
13
modules/account_move_line_grouping/view/move_form.xml
Normal file
13
modules/account_move_line_grouping/view/move_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. -->
|
||||
<data>
|
||||
<xpath expr="//page[@name='lines']" position="before">
|
||||
<page name="grouped_lines">
|
||||
<field
|
||||
name="grouped_lines"
|
||||
colspan="4"
|
||||
view_ids="account_move_line_grouping.move_line_group_view_list_move,account_move_line_grouping.move_line_group_view_form_move"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,53 @@
|
||||
<?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"/>
|
||||
<newline/>
|
||||
|
||||
<notebook colspan="4">
|
||||
<page name="lines">
|
||||
<field name="lines" colspan="4"/>
|
||||
</page>
|
||||
<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"/>
|
||||
<label name="amount_reconciled"/>
|
||||
<field name="amount_reconciled"/>
|
||||
|
||||
<label name="delegated_amount"/>
|
||||
<field name="delegated_amount"/>
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="move_state"/>
|
||||
<field name="move_state"/>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
@@ -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"/>
|
||||
<notebook colspan="4">
|
||||
<page name="lines">
|
||||
<field
|
||||
name="lines"
|
||||
colspan="4"
|
||||
view_ids="account.move_line_view_tree_move,account.move_line_view_form_move"/>
|
||||
</page>
|
||||
<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="amount_reconciled"/>
|
||||
<field name="amount_reconciled"/>
|
||||
|
||||
<label name="amount_second_currency"/>
|
||||
<field name="amount_second_currency"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
@@ -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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="payable_receivable_date"/>
|
||||
<field name="payable_receivable_date" string="Date"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="amount_currency"/>
|
||||
<field name="amount_currency"/>
|
||||
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
<label name="move_origin"/>
|
||||
<field name="move_origin"/>
|
||||
|
||||
<label name="move_description_used"/>
|
||||
<field name="move_description_used" colspan="3"/>
|
||||
|
||||
<field name="lines" colspan="4" view_ids="account.move_line_view_list_payable_receivable"/>
|
||||
</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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="move"/>
|
||||
<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="move_description_used" expand="1" optional="1"/>
|
||||
<field name="reconciled" optional="1"/>
|
||||
<field name="state"/>
|
||||
<field name="move_state" 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. -->
|
||||
<tree>
|
||||
<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="reconciled"/>
|
||||
</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>
|
||||
<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="move_description_used" optional="1"/>
|
||||
<field name="reconciled" optional="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user