first commit
This commit is contained in:
13
modules/account_payment/view/configuration_form.xml
Normal file
13
modules/account_payment/view/configuration_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" position="inside">
|
||||
<separator id="payment" string="Payment" colspan="4"/>
|
||||
<label name="payment_sequence" string="Sequence:"/>
|
||||
<field name="payment_sequence"/>
|
||||
<label name="payment_group_sequence" string="Group Sequence:"/>
|
||||
<field name="payment_group_sequence"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/account_payment/view/invoice_form.xml
Normal file
10
modules/account_payment/view/invoice_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. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='payment']/field[@name='payment_lines']" position="before">
|
||||
<label name="payment_direct_debit"/>
|
||||
<field name="payment_direct_debit"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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 Direct Debit for date" id="create"/>
|
||||
<field name="date"/>
|
||||
</group>
|
||||
</form>
|
||||
15
modules/account_payment/view/move_line_form.xml
Normal file
15
modules/account_payment/view/move_line_form.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. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='info']" position="after">
|
||||
<page name="payments">
|
||||
<label name="payment_amount"/>
|
||||
<field name="payment_amount"/>
|
||||
<label name="payment_direct_debit"/>
|
||||
<field name="payment_direct_debit"/>
|
||||
|
||||
<field name="payments" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
20
modules/account_payment/view/move_line_list.xml
Normal file
20
modules/account_payment/view/move_line_list.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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" optional="1" expand="1"/>
|
||||
<field name="move" optional="1"/>
|
||||
<field name="move_origin" optional="1"/>
|
||||
<field name="description" expand="1" optional="1"/>
|
||||
<field name="party" expand="1"/>
|
||||
<field name="maturity_date"/>
|
||||
<field name="payment_amount"/>
|
||||
<field name="account" expand="1" optional="1"/>
|
||||
<field name="debit" optional="1"/>
|
||||
<field name="credit" optional="1"/>
|
||||
<field name="amount_second_currency" optional="1"/>
|
||||
<button name="pay" multiple="1"/>
|
||||
<button name="payment_block"/>
|
||||
<button name="payment_unblock"/>
|
||||
<field name="payment_blocked" tree_invisible="1"/>
|
||||
</tree>
|
||||
12
modules/account_payment/view/move_line_list_to_pay.xml
Normal file
12
modules/account_payment/view/move_line_list_to_pay.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. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='reconciliation']" position="after">
|
||||
<field name="payment_amount"/>
|
||||
<button name="pay" multiple="1"/>
|
||||
<button name="payment_block"/>
|
||||
<button name="payment_unblock"/>
|
||||
<field name="payment_blocked" tree_invisible="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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 cursor="journal">
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<field name="journals" colspan="4" invisible="1"/>
|
||||
</form>
|
||||
@@ -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. -->
|
||||
<form>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
</form>
|
||||
10
modules/account_payment/view/party_form.xml
Normal file
10
modules/account_payment/view/party_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. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='accounting']/field[@name='account_payable']" position="after">
|
||||
<field name="reception_direct_debits" colspan="2" height="200" yexpand="0"/>
|
||||
<label name="payment_direct_debit" yalign="0"/>
|
||||
<field name="payment_direct_debit" yalign="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?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="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<newline/>
|
||||
</form>
|
||||
@@ -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. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="party" expand="2"/>
|
||||
<field name="company" expand="1"/>
|
||||
<field name="journal" expand="1"/>
|
||||
<field name="type"/>
|
||||
<field name="currency"/>
|
||||
</tree>
|
||||
58
modules/account_payment/view/payment_form.xml
Normal file
58
modules/account_payment/view/payment_form.xml
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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="journal">
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="kind"/>
|
||||
<field name="kind"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="line"/>
|
||||
<field name="line" view_ids="account_payment.move_line_view_list"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Payment" id="payment">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="reference_type"/>
|
||||
<field name="reference_type"/>
|
||||
</page>
|
||||
<page string="Other Info" id="info">
|
||||
<label name="group"/>
|
||||
<field name="group"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
<newline/>
|
||||
<label name="submitted_by"/>
|
||||
<field name="submitted_by"/>
|
||||
<label name="approved_by"/>
|
||||
<field name="approved_by"/>
|
||||
<label name="succeeded_by"/>
|
||||
<field name="succeeded_by"/>
|
||||
<label name="failed_by"/>
|
||||
<field name="failed_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<group col="4" colspan="4" id="state_buttons">
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="draft"/>
|
||||
<button name="submit"/>
|
||||
<button name="approve"/>
|
||||
<button name="process_wizard"/>
|
||||
<button name="proceed"/>
|
||||
<button name="fail"/>
|
||||
<button name="succeed"/>
|
||||
</group>
|
||||
</group>
|
||||
</form>
|
||||
27
modules/account_payment/view/payment_group_form.xml
Normal file
27
modules/account_payment/view/payment_group_form.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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="number"/>
|
||||
<field name="number"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="kind"/>
|
||||
<field name="kind"/>
|
||||
<separator id="payments" string="Payments Info" colspan="4"/>
|
||||
<label name="payment_count" string="Count"/>
|
||||
<field name="payment_count"/>
|
||||
<label name="payment_amount" string="Total Amount"/>
|
||||
<field name="payment_amount"/>
|
||||
<label name="payment_amount_succeeded" string="Succeeded"/>
|
||||
<field name="payment_amount_succeeded"/>
|
||||
<label name="payment_complete" string="Complete"/>
|
||||
<field name="payment_complete"/>
|
||||
|
||||
<group id="links" col="-1" colspan="2">
|
||||
<link name="account_payment.act_payment_form_group_open"/>
|
||||
</group>
|
||||
<button name="succeed" colspan="2"/>
|
||||
</form>
|
||||
13
modules/account_payment/view/payment_group_list.xml
Normal file
13
modules/account_payment/view/payment_group_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="number"/>
|
||||
<field name="journal" optional="0"/>
|
||||
<field name="kind" optional="0"/>
|
||||
<field name="payment_count" optional="1"/>
|
||||
<field name="payment_amount" optional="1"/>
|
||||
<field name="payment_amount_succeeded" optional="1"/>
|
||||
<field name="payment_complete" optional="1"/>
|
||||
</tree>
|
||||
16
modules/account_payment/view/payment_journal_form.xml
Normal file
16
modules/account_payment/view/payment_journal_form.xml
Normal file
@@ -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. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
<label name="process_method"/>
|
||||
<field name="process_method"/>
|
||||
</form>
|
||||
9
modules/account_payment/view/payment_journal_list.xml
Normal file
9
modules/account_payment/view/payment_journal_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="currency" optional="1"/>
|
||||
<field name="process_method"/>
|
||||
</tree>
|
||||
18
modules/account_payment/view/payment_list.xml
Normal file
18
modules/account_payment/view/payment_list.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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="number"/>
|
||||
<field name="reference" expand="1" optional="1"/>
|
||||
<field name="journal" expand="1" optional="0"/>
|
||||
<field name="kind" optional="0"/>
|
||||
<field name="party" expand="2" optional="0"/>
|
||||
<field name="amount"/>
|
||||
<field name="date"/>
|
||||
<field name="state"/>
|
||||
<button name="draft" multiple="1"/>
|
||||
<button name="submit" multiple="1"/>
|
||||
<button name="approve" multiple="1"/>
|
||||
<button name="process_wizard" multiple="1"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user