~akretion-team/sale-wkfl/7.0-add-sale_import_lines

« back to all changes in this revision

Viewing changes to sale_dropshipping/product_view.xml

  • Committer: nicolas.bessi at camptocamp
  • Date: 2013-11-15 13:33:28 UTC
  • mfrom: (19.2.17 add-sale_dropshipping-jge)
  • Revision ID: nicolas.bessi@camptocamp.com-20131115133328-amlv89gmuo6jg54d
[ADD] module sale_dropshipping makes it better to deal with purchases with known sale schemes, specially the following case:
1) normal
2) direct delivery (also called drop shipping)
3) direct invoice
4) direct delivery and direct invoice

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<openerp>
 
3
        <data>
 
4
                <record model="ir.ui.view" id="product_supplierinfo_tree_view_partner_direct_delivery_tree">
 
5
                        <field name="name">product.supplierinfo.tree.direct_delivery.inherit</field>
 
6
                        <field name="model">product.supplierinfo</field>
 
7
                        <field name="inherit_id" ref="product.product_supplierinfo_tree_view" />
 
8
                        <field name="type">tree</field>
 
9
                        <field name="arch" type="xml">
 
10
                                        <field position="after" name="name">
 
11
                                                <field name="direct_delivery_flag"/>
 
12
                                        </field>
 
13
                        </field>
 
14
                </record>
 
15
          
 
16
                <record model="ir.ui.view" id="product_supplierinfo_form_view_partner_direct_delivery_form">
 
17
                        <field name="name">product.supplierinfo.form.direct_delivery.inherit</field>
 
18
                        <field name="model">product.supplierinfo</field>
 
19
                        <field name="inherit_id" ref="product.product_supplierinfo_form_view" />
 
20
                        <field name="type">form</field>
 
21
                        <field name="arch" type="xml">
 
22
                                <field position="after" name="product_code">
 
23
                                        <field name="direct_delivery_flag"/>
 
24
                                </field>
 
25
                        </field>
 
26
                </record>
 
27
        </data>
 
28
</openerp>