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

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