tabelle 'reconciliation' neu

This commit is contained in:
Frederik Jaeckel 2022-08-11 15:00:35 +02:00
parent ae5303658e
commit 01825cc09c
13 changed files with 571 additions and 36 deletions

View file

@ -2,9 +2,9 @@
<!-- This file is part of the cashbook-module from m-ds for Tryton.
The COPYRIGHT file at the top level of this repository contains the
full copyright notices and license terms. -->
<form>
<form col="6">
<label name="name"/>
<field name="name"/>
<field name="name" colspan="3"/>
<label name="btype"/>
<field name="btype"/>
@ -12,27 +12,36 @@ full copyright notices and license terms. -->
<field name="currency"/>
<label name="account"/>
<field name="account"/>
<group id="grpst" colspan="2" col="3">
<label name="state"/>
<field name="state"/>
<group id="grpstate" col="3">
<button name="wfopen"/>
<button name="wfclosed"/>
<button name="wfarchive"/>
</group>
</group>
<label name="start_balance"/>
<field name="start_balance"/>
<label name="balance"/>
<field name="balance"/>
<newline/>
<label name="state"/>
<field name="state"/>
<group id="grpstate" col="3" colspan="2">
<button name="wfopen"/>
<button name="wfclosed"/>
<button name="wfarchive"/>
</group>
<notebook colspan="6">
<page id="pgrecon" string="Reconciliations" col="1">
<field name="reconciliations"/>
</page>
<page id="pgperm" string="Owner and Authorizeds" col="4">
<label name="owner"/>
<field name="owner"/>
<newline/>
<separator id="sepperm" string="Owner and Authorizeds" colspan="4"/>
<label name="owner"/>
<field name="owner"/>
<newline/>
<label name="reviewer"/>
<field name="reviewer"/>
<label name="observer"/>
<field name="observer"/>
<label name="reviewer"/>
<field name="reviewer"/>
<label name="observer"/>
<field name="observer"/>
</page>
</notebook>
</form>

View file

@ -6,6 +6,7 @@ full copyright notices and license terms. -->
<field name="name"/>
<field name="btype"/>
<field name="start_balance"/>
<field name="balance"/>
<field name="currency"/>
<field name="account"/>
<field name="owner"/>

View file

@ -19,7 +19,8 @@ full copyright notices and license terms. -->
<field name="date"/>
<label name="bookingtype"/>
<field name="bookingtype"/>
<newline/>
<label name="reconciliation"/>
<field name="reconciliation"/>
<label name="category"/>
<field name="category"/>

31
view/recon_form.xml Normal file
View file

@ -0,0 +1,31 @@
<?xml version="1.0"?>
<!-- This file is part of the cashbook-module from m-ds for Tryton.
The COPYRIGHT file at the top level of this repository contains the
full copyright notices and license terms. -->
<form col="6">
<label name="cashbook"/>
<field name="cashbook"/>
<newline/>
<separator id="sep1" string="Reconciliation period" colspan="4"/>
<separator id="sep2" string="State" colspan="2"/>
<label name="date_from"/>
<field name="date_from"/>
<label name="date_to"/>
<field name="date_to"/>
<field name="state"/>
<group id="grpstate" col="3">
<button name="wfedit"/>
<button name="wfcheck"/>
<button name="wfdone"/>
</group>
<label id="lab1" string=" " colspan="4"/>
<label name="date"/>
<field name="date"/>
<newline/>
<field name="lines" colspan="6"/>
</form>

12
view/recon_list.xml Normal file
View file

@ -0,0 +1,12 @@
<?xml version="1.0"?>
<!-- This file is part of the cashbook-module from m-ds for Tryton.
The COPYRIGHT file at the top level of this repository contains the
full copyright notices and license terms. -->
<tree>
<field name="cashbook"/>
<field name="date"/>
<field name="date_from"/>
<field name="date_to"/>
<field name="lines"/>
<field name="state"/>
</tree>