~openerp-community/openobject-addons/mgmtsystem

« back to all changes in this revision

Viewing changes to invoice_payment/invoice_view.xml

  • Committer: Fabien Pinckaers
  • Date: 2008-02-10 01:46:35 UTC
  • Revision ID: fp@tinyerp.com-dd54f36fb5d09c841109c275fc52a6dcac19417c
NEW Module:
        Invoice Payment: manage partial payment visibility on invoices
        Need Version >= 4.3.0 of Tiny ERP (because need partial reconcile)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<terp>
 
3
        <data>
 
4
 
 
5
                <record model="ir.ui.view" id="invoice_form_payment">
 
6
                        <field name="name">Invoice Partial Payments</field>
 
7
                        <field name="model">account.invoice</field>
 
8
                        <field name="type">form</field>
 
9
                        <field name="inherit_id" ref="account.invoice_form"/>
 
10
                        <field name="arch" type="xml">
 
11
                                <notebook position="inside">
 
12
                                        <page string="Payments">
 
13
                                                <field name="payment_ids" colspan="4" nolabel="1">
 
14
                                                        <tree string="Payments">
 
15
                                                                <field name="date"/>
 
16
                                                                <field name="ref"/>
 
17
                                                                <field name="name"/>
 
18
                                                                <field name="journal_id"/>
 
19
                                                                <field name="debit"/>
 
20
                                                                <field name="credit"/>
 
21
                                                        </tree>
 
22
                                                </field>
 
23
                                        </page>
 
24
                                </notebook>
 
25
                        </field>
 
26
                </record>
 
27
 
 
28
 
 
29
        </data>
 
30
</terp>