~vauxoo/addons-vauxoo/7.0-fix-error-font-size-reports-dev_ernesto

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version='1.0' encoding='utf-8'?>
<openerp>
    <data>
<!--
    Adding the fields to the parent account move view
-->
        <record id="account_move_sum_all_credits_debits_form" model="ir.ui.view">
            <field name="name">account.move.sum.all.credits.debits.form</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='date']" position="after">
                    <field name="total_debit"/>
                    <field name="total_credit"/>
                </xpath>
            </field>
        </record>

<!--
    View of wizard on stock.picking
-->
    
    </data>
</openerp>