<odoo>
|
|
|
|
<record id="view_kala_account_tree" model="ir.ui.view">
|
|
<field name="name">kala.account.tree</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_out_invoice_tree" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='name']" position="after">
|
|
<field string="Systempay Ref" name="systempay_ref"/>
|
|
<field string="Description" name="description"/>
|
|
<field string="Payment mode" name="payment_mode_id"/>
|
|
<field string="Payment date" name="transaction_date"/>
|
|
<field string="Amount paid" name="transaction_amount"/>
|
|
|
|
|
|
</xpath>
|
|
<xpath expr="//tree" position="attributes">
|
|
<attribute name="class">account_tree_class</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|