first commit
This commit is contained in:
11
modules/account_dunning/view/configuration_form.xml
Normal file
11
modules/account_dunning/view/configuration_form.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. -->
|
||||
<data>
|
||||
<xpath expr="/form" position="inside">
|
||||
<separator id="dunning" string="Dunning" colspan="4"/>
|
||||
<label name="default_dunning_procedure"/>
|
||||
<field name="default_dunning_procedure"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/account_dunning/view/dunning_create_start_form.xml
Normal file
10
modules/account_dunning/view/dunning_create_start_form.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. -->
|
||||
<form col="2">
|
||||
<image name="tryton-question" xexpand="0" xfill="0"/>
|
||||
<group col="2" xexpand="1" id="create_date">
|
||||
<label string="Create Dunning for date" id="create"/>
|
||||
<field name="date"/>
|
||||
</group>
|
||||
</form>
|
||||
29
modules/account_dunning/view/dunning_form.xml
Normal file
29
modules/account_dunning/view/dunning_form.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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="line"/>
|
||||
<field name="line"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="procedure"/>
|
||||
<field name="procedure"/>
|
||||
<label name="level"/>
|
||||
<field name="level"/>
|
||||
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="age"/>
|
||||
<field name="age"/>
|
||||
|
||||
<label name="amount"/>
|
||||
<group id="amounts" col="-1">
|
||||
<field name="amount"/>
|
||||
<field name="amount_second_currency"/>
|
||||
</group>
|
||||
<button name="reschedule" colspan="2"/>
|
||||
<label name="blocked"/>
|
||||
<field name="blocked"/>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</form>
|
||||
12
modules/account_dunning/view/dunning_level_form.xml
Normal file
12
modules/account_dunning/view/dunning_level_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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 cursor="overdue">
|
||||
<label name="procedure"/>
|
||||
<field name="procedure"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="overdue"/>
|
||||
<field name="overdue"/>
|
||||
</form>
|
||||
7
modules/account_dunning/view/dunning_level_list.xml
Normal file
7
modules/account_dunning/view/dunning_level_list.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?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="procedure" expand="1"/>
|
||||
<field name="overdue" expand="1"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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 sequence="sequence">
|
||||
<field name="procedure" expand="1"/>
|
||||
<field name="overdue" expand="1"/>
|
||||
</tree>
|
||||
15
modules/account_dunning/view/dunning_list.xml
Normal file
15
modules/account_dunning/view/dunning_list.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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="line" expand="1" optional="1"/>
|
||||
<field name="party" expand="2"/>
|
||||
<field name="amount"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<field name="maturity_date"/>
|
||||
<field name="level" expand="1"/>
|
||||
<field name="age"/>
|
||||
<field name="date" tree_invisible="1"/>
|
||||
<field name="blocked"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
9
modules/account_dunning/view/dunning_procedure_form.xml
Normal file
9
modules/account_dunning/view/dunning_procedure_form.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?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"/>
|
||||
<field name="levels" colspan="4"
|
||||
view_ids="account_dunning.dunning_level_view_list_sequence"/>
|
||||
</form>
|
||||
6
modules/account_dunning/view/dunning_procedure_list.xml
Normal file
6
modules/account_dunning/view/dunning_procedure_list.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?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="1"/>
|
||||
</tree>
|
||||
@@ -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. -->
|
||||
<form col="2">
|
||||
<image name="tryton-question" xexpand="0" xfill="0"/>
|
||||
<label string="Process Dunning?" id="create"
|
||||
yalign="0.5" xalign="0.0" xexpand="1"/>
|
||||
</form>
|
||||
13
modules/account_dunning/view/party_form.xml
Normal file
13
modules/account_dunning/view/party_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="/form/notebook/page[@id='accounting']/separator[@id='account']"
|
||||
position="before">
|
||||
<separator string="Dunning" colspan="4" id="dunning"/>
|
||||
<label name="dunning_procedure"/>
|
||||
<field name="dunning_procedure"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user