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

« back to all changes in this revision

Viewing changes to account_seperate_return_allowance/view/product_view.xml

  • Committer: Jose Antonio
  • Date: 2012-04-06 04:45:31 UTC
  • mto: This revision was merged to the branch mainline in revision 210.
  • Revision ID: jose@vauxoo.com-20120406044531-679lcrdol1em1fsz

[ADD] added wizard to account cancel move

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
  <data>
 
4
      
 
5
          <record id="product_template_form_view" model="ir.ui.view">
 
6
            <field name="name">product.template.product.form.account.product</field>
 
7
            <field name="model">product.template</field>
 
8
            <field name="type">form</field>
 
9
            <field name="inherit_id" ref="account.product_template_form_view"/>
 
10
            <field name="arch" type="xml">
 
11
                <xpath expr="/notebook/page/group/separator[@string='Sales Properties']" position="before">
 
12
                <group col="4" colspan="4">
 
13
                    <separator string="Property Account" colspan='4'/>
 
14
                    <group col="6" colspan="4">
 
15
                        <field name="property_account_allowance" />
 
16
                        <field name="property_account_return" />
 
17
                    </group>
 
18
                </group>
 
19
                </xpath>
 
20
             </field>
 
21
        </record>
 
22
        
 
23
<!--
 
24
-->
 
25
        
 
26
            <record id="product_normal_form_view" model="ir.ui.view">
 
27
            <field name="name">product.normal.form.account.product</field>
 
28
            <field name="model">product.product</field>
 
29
            <field name="type">form</field>
 
30
            <field name="inherit_id" ref="account.product_normal_form_view"/>
 
31
            <field name="arch" type="xml">
 
32
                <xpath expr="notebook/page/group/separator[@string='Sales Properties']" position="before">
 
33
                <group col="4" colspan="4">
 
34
                    <separator string="Property Account" colspan='4'/>
 
35
                    <group col="6" colspan="4">
 
36
                        <field name="property_account_allowance" />
 
37
                        <field name="property_account_return" />
 
38
                    </group>
 
39
                </group>
 
40
                </xpath>
 
41
             </field>
 
42
        </record>
 
43
    
 
44
 
 
45
 
 
46
 
 
47
 
 
48
  </data>
 
49
</openerp>