~zaber/openobject-addons/stable_5.0-extra-addons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
    <record model="ir.ui.view" id="product_custom_product_neg_stk_choice">
        <!-- must be unique in this module. -->
        <field name="name">product.normal.form.custom.inherit</field>
        <field name="model">product.product</field>
        <!--parent python entity -->
        <field name="inherit_id" ref="product.product_normal_form_view"/>
        <!-- modulename.view -->
        <field name="type">form</field>
        <field name="arch" type="xml">
            <page string="Information" position="inside">
                <group colspan="2" col="2" name="magento">
                     <separator string="Magento Backorder" colspan="2"/>
                    <field name="magento_backorders" />
                 </group>            
            </page>
        </field>
    </record>
    
    </data>
</openerp>