bok, line, type, line-open-wizard, context

This commit is contained in:
Frederik Jaeckel 2022-08-05 16:47:43 +02:00
parent a9f3eb12b4
commit ba442b726e
23 changed files with 974 additions and 8 deletions

10
view/accounttype_form.xml Normal file
View file

@ -0,0 +1,10 @@
<?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>
<label name="short"/>
<field name="short"/>
<label name="name"/>
<field name="name"/>
</form>

View file

@ -0,0 +1,8 @@
<?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="short"/>
<field name="name"/>
</tree>

View file

@ -5,4 +5,6 @@ full copyright notices and license terms. -->
<form>
<label name="name"/>
<field name="name"/>
<label name="btype"/>
<field name="btype"/>
</form>

View file

@ -4,4 +4,5 @@ The COPYRIGHT file at the top level of this repository contains the
full copyright notices and license terms. -->
<tree>
<field name="name"/>
<field name="btype"/>
</tree>

View file

@ -0,0 +1,19 @@
<?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="10">
<label name="account"/>
<field name="account" widget="selection"/>
<label name="date_from"/>
<field name="date_from"/>
<label name="date_to"/>
<field name="date_to"/>
<label name="checked"/>
<field name="checked"/>
<label name="done"/>
<field name="done"/>
</form>

20
view/line_form.xml Normal file
View file

@ -0,0 +1,20 @@
<?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>
<label name="account"/>
<field name="account" colspan="3"/>
<label name="date"/>
<field name="date"/>
<label name="state"/>
<field name="state"/>
<label name="description"/>
<field name="description"/>
<button name="wfedit"/>
<button name="wfcheck"/>
</form>

12
view/line_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="account"/>
<field name="date"/>
<field name="description"/>
<field name="state"/>
<button name="wfedit"/>
<button name="wfcheck"/>
</tree>

View file

@ -0,0 +1,19 @@
<?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>
<label name="account"/>
<field name="account" colspan="3" widget="selection"/>
<label name="date_from"/>
<field name="date_from"/>
<label name="date_to"/>
<field name="date_to"/>
<label name="checked"/>
<field name="checked"/>
<label name="done"/>
<field name="done"/>
</form>