You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
839 B
18 lines
839 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="jourmal_entries_inherited_view" model="ir.ui.view">
|
|
<field name="name">account_move_voucher_inherit_view</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='line_id']/tree/field[@name='invoice']" position="attributes">
|
|
<attribute name="string">Invoice No</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='line_id']/tree/field[@name='partner_id']" position="attributes">
|
|
<attribute name="string">Customer/Supplier</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|
|
|