[IMP] SO form clean the mess
[odoo/odoo.git] / addons / sale_stock / sale_stock_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4
5         <record id="view_order_form_inherit" model="ir.ui.view">
6             <field name="name">sale.order.form.sale.stock</field>
7             <field name="model">sale.order</field>
8             <field name="inherit_id" ref="sale.view_order_form"/>
9             <field name="arch" type="xml">
10                 <data>
11                    <xpath expr="//button[@name='invoice_corrected']" position="after">
12                        <button name="ship_recreate" states="shipping_except" string="Recreate Delivery Order"/>
13                        <button name="ship_corrected" states="shipping_except" string="Ignore Exception"/>
14                    </xpath>
15                    <xpath expr="//button[@name='action_view_invoice']" position="after">
16                        <field name="picking_ids" invisible="1"/>
17                        <button name="action_view_delivery" string="View Delivery Order" type="object" class="oe_highlight"
18                            attrs="{'invisible': ['|',('picking_ids','=',False),('picking_ids','=',[])]}" groups="base.group_user"/>
19                    </xpath>
20                     <xpath expr="//button[@name='action_cancel']" position="after">
21                         <button name="ship_cancel" states="shipping_except" string="Cancel Order"/>
22                     </xpath>
23                     <field name="state" position="attributes">
24                         <attribute name="statusbar_colors" t-translate="off">{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}</attribute>
25                     </field>
26                     <field name="company_id" position="replace">
27                         <field name="company_id" readonly="True"/>
28                     </field>
29                     <xpath expr="//group[@name='sales_person']" position="before">
30                         <group string="Shipping Information" name="sale_shipping">
31                             <field name="warehouse_id" on_change="onchange_warehouse_id(warehouse_id)" options="{'no_create': True}" groups="stock.group_locations"/>
32                             <field name="incoterm" widget="selection" groups="base.group_user"/>
33                             <field name="picking_policy" required="True"/>
34                         </group>
35                     </xpath>
36                     <xpath expr="//field[@name='order_line']/tree//field[@name='product_id']" position="replace">
37                        <field name="product_id"
38                        context="{'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'uom':product_uom}"
39                        groups="base.group_user" 
40                        on_change="product_id_change_with_wh(parent.pricelist_id,product_id,product_uom_qty,False,product_uos_qty,False,name,parent.partner_id, False, True, parent.date_order, product_packaging, parent.fiscal_position, False, parent.warehouse_id, context)"/>
41                    </xpath>
42                    <xpath expr="//field[@name='order_line']/tree//field[@name='product_id']" position="attributes">
43                        <attribute name="on_change">product_id_change_with_wh(parent.pricelist_id,product_id,product_uom_qty,False,product_uos_qty,False,name,parent.partner_id, False, True, parent.date_order, product_packaging, parent.fiscal_position, False, parent.warehouse_id, context)</attribute>
44                    </xpath>
45                    <xpath expr="//field[@name='order_line']/tree//field[@name='product_uom_qty']" position="attributes">
46                        <attribute name="on_change">product_id_change_with_wh(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,False,name,parent.partner_id, False, False, parent.date_order, product_packaging, parent.fiscal_position, True, parent.warehouse_id, context)</attribute>
47                    </xpath>
48                    <xpath expr="//group[@name='technical']" position="inside">
49                        <field name="shipped" groups="base.group_no_one"/>
50                        <field name="invoice_exists" invisible="1" groups="base.group_no_one"/>
51                    </xpath>
52                    <xpath expr="//page[@string='Order Lines']/field[@name='order_line']/form[@string='Sales Order Lines']/group/group/field[@name='tax_id']" position="after">
53                        <label for="delay"/>
54                        <div>
55                            <field name="delay" class="oe_inline"/> days
56                        </div>
57                    </xpath>
58                    <xpath expr="//page[@string='Order Lines']/field[@name='order_line']/form[@string='Sales Order Lines']/group/group/field[@name='tax_id']" position="before">
59                        <field name="product_tmpl_id" invisible="1"/>
60                        <field name="product_packaging" context="{'default_product_tmpl_id': product_tmpl_id, 'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'uom':product_uom}" on_change="product_packaging_change(parent.pricelist_id, product_id, product_uom_qty, product_uom, parent.partner_id, product_packaging, True, context)" domain="[('product_tmpl_id','=',product_tmpl_id)]" groups="product.group_stock_packaging" />
61                    </xpath>
62                    <xpath expr="//page[@string='Order Lines']/field[@name='order_line']/tree[@string='Sales Order Lines']/field[@name='sequence']" position="after">
63                        <field name="delay" invisible="1"/>
64                    </xpath>
65                    <xpath expr="//page[@string='Order Lines']/field[@name='order_line']/tree[@string='Sales Order Lines']/field[@name='th_weight']" position="after">
66                        <field name="product_packaging" invisible="1"/>
67                    </xpath>
68                    <xpath expr="//group[@name='sale_pay']" position="inside">
69                             <field name="order_policy"/>
70                    </xpath>                            
71                    <xpath expr="//field[@name='order_line']/form/group/group/field[@name='price_unit']" position="before">
72                         <field name="route_id" groups="sale_stock.group_route_so_lines"/>
73                    </xpath>
74                    <xpath expr="//field[@name='order_line']/tree/field[@name='price_unit']" position="before">
75                        <field name="route_id" groups="sale_stock.group_route_so_lines"/>
76                    </xpath>
77                 </data>
78            </field>
79         </record>
80
81         <record id="view_res_partner_tree_type" model="ir.ui.view">
82             <field name="name">res.partner.tree.inherit.type</field>
83             <field name="model">res.partner</field>
84             <field name="inherit_id" ref="base.view_partner_tree"/>
85             <field name="arch" type="xml">
86                 <field name="parent_id" position="after">
87                     <field name="type" invisible="context.get('hide_type', 1)"/>
88                 </field>
89             </field>
90         </record>
91
92         <!-- On the customer/supplier form if "Allow a different address for
93         delivery and invoicing" is set add "Contact Details" in the more menu
94         showing the list of contact with their types -->
95         <act_window
96             id="res_partner_rule_children"
97             name="Contact Details"
98             context="{'default_parent_id': active_id, 'hide_type': 0}"
99             domain="[('parent_id','=',active_id)]"
100             res_model="res.partner"
101             src_model="res.partner"
102             view_mode="tree,form,kanban"
103             view_type="form"
104             groups="sale.group_delivery_invoice_address"
105             />
106
107         <record id="view_picking_internal_search_inherit" model="ir.ui.view">
108             <field name="name">stock.picking.search.inherit</field>
109             <field name="model">stock.picking</field>
110             <field name="inherit_id" ref="stock.view_picking_internal_search"/>
111             <field name="arch" type="xml">
112                 <xpath expr="//field[@name='partner_id']" position="before">
113                     <filter string="To Invoice" name="to_invoice" icon="terp-dolar" domain="[('invoice_state', '=', '2binvoiced')]"/>
114                 </xpath>
115             </field>
116         </record>
117
118
119         <record id="view_order_form_inherit2" model="ir.ui.view">
120             <field name="name">sale.order.line.form.sale.stock.location</field>
121             <field name="model">sale.order.line</field>
122             <field name="inherit_id" ref="sale.view_order_line_form2"/>
123             <field name="arch" type="xml">
124                 <data>
125                    <xpath expr="//field[@name='price_unit']" position="before">
126                        <field name="route_id" groups="sale_stock.group_route_so_lines" />
127                    </xpath>
128                 </data>
129            </field>
130         </record>
131         
132         <record id="view_order_line_tree_inherit" model="ir.ui.view">
133             <field name="name">sale.order.line.tree.sale.stock.location</field>
134             <field name="inherit_id" ref="sale.view_order_line_tree"/>
135             <field name="model">sale.order.line</field>
136             <field name="arch" type="xml">
137                 <xpath expr="//field[@name='price_subtotal']" position="before">
138                     <field name="route_id" groups="sale_stock.group_route_so_lines"/>
139                 </xpath>
140             </field>
141         </record>
142     </data>
143 </openerp>