1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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>
|