~vauxoo/addons-vauxoo/7.0-ifrs_agrinos-dev-hbto

« back to all changes in this revision

Viewing changes to account_voucher_move_id/account_voucher.xml

  • Committer: Luis Ernesto García Medina
  • Date: 2013-06-28 19:43:39 UTC
  • mto: This revision was merged to the branch mainline in revision 628.
  • Revision ID: ernesto_gm@vauxoo.com-20130628194339-j95joz7iqfaosn68
[ADD][account_voucher_move_id] field "move_id" added to the views of "account_voucher"

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<openerp>
 
2
    <data>
 
3
        
 
4
        <record model="ir.ui.view" id="view_vendor_receipt_form_inherit">
 
5
            <field name="name">account.voucher.vendor.receipt.form.inherit</field>
 
6
            <field name="model">account.voucher</field>
 
7
            <field name="inherit_id" ref="account_voucher.view_vendor_receipt_form"/>
 
8
            <field name="arch" type="xml">
 
9
                <xpath expr="//page[@string='Journal Items']//group[@col='4']//field[@name='audit']" position="after">
 
10
                    <field name="move_id" string="Journal Entry"/>
 
11
                </xpath>
 
12
            </field>
 
13
        </record> 
 
14
 
 
15
        <record model="ir.ui.view" id="view_vendor_payment_form_inherit">
 
16
            <field name="name">account.voucher.vendor.payment.form.inherit</field>
 
17
            <field name="model">account.voucher</field>
 
18
            <field name="inherit_id" ref="account_voucher.view_vendor_payment_form"/>
 
19
            <field name="arch" type="xml">
 
20
                <xpath expr="//page[@string='Journal Items']//group[@col='4']//field[@name='number']" position="replace">
 
21
                    <field name="move_id" string="Journal Entry"/>
 
22
                </xpath>
 
23
            </field>
 
24
        </record> 
 
25
 
 
26
        <record model="ir.ui.view" id="view_sale_receipt_form_inherit">
 
27
            <field name="name">account.voucher.sale.receipt.form.inherit</field>
 
28
            <field name="model">account.voucher</field>
 
29
            <field name="inherit_id" ref="account_voucher.view_sale_receipt_form"/>
 
30
            <field name="arch" type="xml">
 
31
                <xpath expr="//page[@string='Journal Items']//group[@col='4']//field[@name='audit']" position="after">
 
32
                    <field name="move_id" string="Journal Entry"/>
 
33
                </xpath>
 
34
            </field>
 
35
        </record> 
 
36
 
 
37
        <record model="ir.ui.view" id="view_purchase_receipt_form_inherit">
 
38
            <field name="name">account.voucher.purchase.form.inherit</field>
 
39
            <field name="model">account.voucher</field>
 
40
            <field name="inherit_id" ref="account_voucher.view_purchase_receipt_form"/>
 
41
            <field name="arch" type="xml">
 
42
                <xpath expr="//page[@string='Journal Items']//group[@col='4']//field[@name='audit']" position="after">
 
43
                    <field name="move_id" string="Journal Entry"/>
 
44
                </xpath>
 
45
            </field>
 
46
        </record> 
 
47
        
 
48
    </data>
 
49
</openerp>