f12cba6ac9fc7f562d9c948f821ebb3189ab7164
[odoo/odoo.git] / addons / sale / sale_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <!-- Top menu item -->
6         <!--
7             This menu item's purpose is to overwrite another one defined in
8             the base module in order to set new groups.
9         -->
10         <menuitem name="Sales"
11             id="base.menu_base_partner"
12             groups="base.group_sale_salesman,base.group_sale_manager"/>
13
14         <menuitem id="base.menu_product" name="Products" parent="base.menu_base_partner" sequence="9"/>
15
16
17         <record id="view_shop_form" model="ir.ui.view">
18             <field name="name">sale.shop</field>
19             <field name="model">sale.shop</field>
20             <field name="arch" type="xml">
21                 <form string="Sales Shop" version="7.0">
22                     <label for="name" class="oe_edit_only"/>
23                     <h1><field name="name"/></h1>
24                     <group name="shop">
25                         <group>
26                             <field name="payment_default_id"/>
27                             <field domain="[('type','=','sale')]" required="True" name="pricelist_id" groups="product.group_sale_pricelist"/>
28                         </group>
29                         <group>
30                             <field name="project_id" groups="analytic.group_analytic_accounting"/>
31                             <field name="company_id" widget="selection" groups="base.group_multi_company"/>
32                         </group>
33                     </group>
34                 </form>
35            </field>
36         </record>
37         
38         <record id="view_shop_tree" model="ir.ui.view">
39             <field name="name">sale.shop</field>
40             <field name="model">sale.shop</field>
41             <field name="arch" type="xml">
42                 <tree string="Sales Shop">
43                     <field name="name"/>
44                     <field name="pricelist_id" groups="product.group_sale_pricelist"/>
45                     <field name="project_id" groups="analytic.group_analytic_accounting"/>
46                 </tree>
47             </field>
48         </record>
49
50         <record id="action_shop_form" model="ir.actions.act_window">
51             <field name="name">Shop</field>
52             <field name="type">ir.actions.act_window</field>
53             <field name="res_model">sale.shop</field>
54             <field name="view_type">form</field>
55             <field name="view_mode">tree,form</field>
56             <field name="view_id" ref="view_shop_tree"/>
57             <field name="help" type="html">
58               <p class="oe_view_nocontent_create">
59                 Click to define a new sale shop.
60               </p><p>
61                 Each quotation or sales order must be linked to a shop. The
62                 shop also defines the warehouse from which the products will be
63                 delivered for each particular sales.
64               </p>
65             </field>
66         </record>
67
68
69         <record id="view_sale_order_calendar" model="ir.ui.view">
70             <field name="name">sale.order.calendar</field>
71             <field name="model">sale.order</field>
72             <field name="arch" type="xml">
73                 <calendar string="Sales Orders" color="state" date_start="date_order">
74                     <field name="partner_id"/>
75                     <field name="amount_total"/>
76                 </calendar>
77             </field>
78         </record>
79         <record model="ir.ui.view" id="view_sale_order_graph">
80             <field name="name">sale.order.graph</field>
81             <field name="model">sale.order</field>
82             <field name="arch" type="xml">
83                 <graph string="Sales Orders" type="bar">
84                     <field name="partner_id"/>
85                     <field name="amount_total" operator="+"/>
86                 </graph>
87             </field>
88         </record>
89
90         <record id="view_order_tree" model="ir.ui.view">
91             <field name="name">sale.order.tree</field>
92             <field name="model">sale.order</field>
93             <field name="priority">2</field>
94             <field name="arch" type="xml">
95                 <tree string="Sales Orders" fonts="bold:message_unread==True" colors="grey:state=='cancel';blue:state in ('waiting_date','manual');red:state in ('invoice_except','shipping_except')">
96                     <field name="message_unread" invisible="1"/>
97                     <field name="name" string="Order Number"/>
98                     <field name="date_order"/>
99                     <field name="partner_id"/>
100                     <field name="user_id"/>
101                     <field name="amount_total" sum="Total Tax Included"/>
102                     <field name="state"/>
103                 </tree>
104             </field>
105         </record>
106
107         <record id="view_quotation_tree" model="ir.ui.view">
108             <field name="name">sale.order.tree</field>
109             <field name="model">sale.order</field>
110             <field name="priority">4</field>
111             <field name="arch" type="xml">
112                 <tree string="Quotation" fonts="bold:message_unread==True" colors="grey:state=='cancel';blue:state in ('waiting_date','manual');red:state in ('invoice_except','shipping_except')">
113                     <field name="message_unread" invisible="1"/>
114                     <field name="name" string="Quotation Number"/>
115                     <field name="date_order"/>
116                     <field name="partner_id"/>
117                     <field name="user_id"/>
118                     <field name="amount_total" sum="Total Tax Included"/>
119                     <field name="state"/>
120                 </tree>
121             </field>
122         </record>
123
124         <record id="view_order_form" model="ir.ui.view">
125             <field name="name">sale.order.form</field>
126             <field name="model">sale.order</field>
127             <field name="arch" type="xml">
128                 <form string="Sales Order" version="7.0">
129                     <header>
130                         <button name="invoice_recreate" states="invoice_except" string="Recreate Invoice" groups="base.group_user"/>
131                         <button name="invoice_corrected" states="invoice_except" string="Ignore Exception" groups="base.group_user"/>
132                         <button name="action_quotation_send" string="Send by Email" type="object" states="draft" class="oe_highlight" groups="base.group_user"/>
133                         <button name="action_quotation_send" string="Send by Email" type="object" states="sent,progress,manual" groups="base.group_user"/>
134                         <button name="print_quotation" string="Print" type="object" states="draft" class="oe_highlight" groups="base.group_user"/>
135                         <button name="print_quotation" string="Print" type="object" states="sent,progress,manual" groups="base.group_user"/>
136                         <button name="action_button_confirm" states="draft" string="Confirm Sale" type="object" groups="base.group_user"/>
137                         <button name="action_button_confirm" states="sent" string="Confirm Sale" class="oe_highlight" type="object" groups="base.group_user"/>
138                         <button name="action_view_invoice" string="View Invoice" type="object" class="oe_highlight"
139                             attrs="{'invisible': [('invoice_exists', '=', False)]}" groups="base.group_user"/>
140                         <button name="%(action_view_sale_advance_payment_inv)d" string="Create Invoice"
141                             type="action" states="manual" class="oe_highlight" groups="base.group_user"/>
142                         <button name="copy_quotation" states="cancel" string="New Copy of Quotation" type="object"/>
143                         <button name="cancel" states="draft,sent" string="Cancel Quotation" groups="base.group_user"/>
144                         <button name="action_cancel" states="manual,progress" string="Cancel Order" type="object" groups="base.group_user"/>
145                         <button name="invoice_cancel" states="invoice_except" string="Cancel Order" groups="base.group_user"/>
146                         <field name="state" widget="statusbar" statusbar_visible="draft,sent,progress,done" statusbar_colors='{"invoice_except":"red","waiting_date":"blue"}'/>
147                 </header>
148                 <sheet>
149                     <h1>
150                         <label string="Quotation " attrs="{'invisible': [('state','not in',('draft','sent'))]}"/>
151                         <label string="Sales Order " attrs="{'invisible': [('state','in',('draft','sent'))]}"/>
152                         <field name="name" class="oe_inline" readonly="1"/>
153                     </h1>
154                     <group>
155                         <group>
156                             <field name="partner_id" on_change="onchange_partner_id(partner_id, context)" domain="[('customer','=',True)]" context="{'search_default_customer':1, 'show_address': 1}" options='{"always_reload": True}'/>
157                             <field name="partner_invoice_id" groups="sale.group_delivery_invoice_address" context="{'default_type':'invoice'}"/>
158                             <field name="partner_shipping_id" groups="sale.group_delivery_invoice_address" context="{'default_type':'delivery'}"/>
159                             <field name="project_id" context="{'partner_id':partner_invoice_id, 'default_pricelist_id':pricelist_id, 'default_name':name, 'default_type': 'contract'}" groups="sale.group_analytic_accounting" domain="[('type','in',['view','normal','contract'])]"/>
160                         </group>
161                         <group>
162                             <field name="date_order"/>
163                             <field name="shop_id" groups="base.group_no_one" on_change="onchange_shop_id(shop_id, context)" widget="selection"/>
164                             <field name="client_order_ref"/>
165                             <field domain="[('type','=','sale')]" name="pricelist_id" groups="product.group_sale_pricelist" on_change="onchange_pricelist_id(pricelist_id,order_line)"/>
166                             <field name="currency_id" invisible="1"/>
167                         </group>
168                     </group>
169                     <notebook>
170                         <page string="Order Lines">
171                             <field name="order_line">
172                                 <form string="Sales Order Lines" version="7.0">
173                                     <header groups="base.group_user">
174                                         <button name="%(action_view_sale_order_line_make_invoice)d" states="confirmed" string="Invoice" type="action" icon="terp-document-new"/>
175                                         <field name="state" widget="statusbar" statusbar_visible="draft,confirmed,done" statusbar_colors='{"exception":"red","cancel":"red"}'/>
176                                     </header>
177                                     <group>
178                                         <group>
179                                             <field name="product_id"
180                                                 context="{'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'shop':parent.shop_id, 'uom':product_uom}"
181                                                 groups="base.group_user"
182                                                 on_change="product_id_change(parent.pricelist_id, product_id, product_uom_qty, False, product_uos_qty, False, name, parent.partner_id, False, True, parent.date_order, False, parent.fiscal_position, False, context)"/>
183                                             <label for="product_uom_qty"/>
184                                             <div>
185                                                 <field
186                                                     context="{'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'shop':parent.shop_id, 'uom':product_uom}"
187                                                     name="product_uom_qty" class="oe_inline"
188                                                     on_change="product_id_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, False, False, parent.date_order, False, parent.fiscal_position, True, context)"/>
189                                                 <field name="product_uom" groups="product.group_uom" class="oe_inline oe_no_button"
190
191                                                     on_change="product_uom_change(parent.pricelist_id,product_id,product_uom_qty,product_uom,product_uos_qty,product_uos,name,parent.partner_id, False, False, parent.date_order, context)"/>
192                                             </div>
193                                             <label for="product_uos_qty" groups="product.group_uos"/>
194                                             <div groups="product.group_uos">
195                                                 <field name="product_uos_qty" class="oe_inline"/>
196                                                 <field name="product_uos" options='{"no_open": True}' class="oe_inline"/>
197                                             </div>
198                                             <field name="price_unit"/>
199                                             <label for="discount" groups="sale.group_discount_per_so_line"/>
200                                             <div name="discount" groups="sale.group_discount_per_so_line">
201                                                 <field name="discount" class="oe_inline"/> %%
202                                             </div>
203                                         </group>
204                                         <group>
205                                             <field name="tax_id" widget="many2many_tags" domain="[('parent_id','=',False),('type_tax_use','&lt;&gt;','purchase')]"/>
206                                             <field name="type"/>
207                                             <field name="th_weight"/>
208                                             <!-- we should put a config wizard for these two fields -->
209                                             <field name="address_allotment_id"/>
210                                         </group>
211                                     </group>
212                                     <label for="name"/>
213                                     <field name="name"/>
214                                     <div groups="base.group_no_one">
215                                         <label for="invoice_lines"/>
216                                         <field name="invoice_lines"/>
217                                     </div>
218                                 </form>
219                                 <tree string="Sales Order Lines" editable="bottom">
220                                     <field name="sequence" widget="handle"/>
221                                     <field name="state" invisible="1"/>
222                                     <field name="th_weight" invisible="1"/>
223                                     <field name="product_id"
224                                         context="{'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'shop':parent.shop_id, 'uom':product_uom}"
225                                         groups="base.group_user" 
226                                         on_change="product_id_change(parent.pricelist_id, product_id, product_uom_qty, False, product_uos_qty, False, name, parent.partner_id, False, True, parent.date_order, False, parent.fiscal_position, False, context)"/>
227                                     <field name="name"/>
228                                     <field name="product_uom_qty"
229                                         context="{'partner_id':parent.partner_id, 'quantity':product_uom_qty, 'pricelist':parent.pricelist_id, 'shop':parent.shop_id, 'uom':product_uom}"
230                                         on_change="product_id_change(parent.pricelist_id, product_id, product_uom_qty, product_uom, product_uos_qty, product_uos, name, parent.partner_id, False, False, parent.date_order, False, parent.fiscal_position, True, context)"/>
231                                     <field name="product_uom"
232                                         on_change="product_uom_change(parent.pricelist_id, product_id, product_uom_qty, product_uom, product_uos_qty, product_uos, name, parent.partner_id, False, False, parent.date_order, context)"
233                                         groups="product.group_uom" options='{"no_open": True}'/>
234                                     <field name="product_uos_qty" groups="product.group_uos" invisible="1"/>
235                                     <field name="product_uos" string="UoS" groups="product.group_uos" invisible="1"/>
236                                     <field name="tax_id" widget="many2many_tags" domain="[('parent_id','=',False),('type_tax_use','&lt;&gt;','purchase')]"/>
237                                     <field name="price_unit"/>
238                                     <field name="discount" groups="sale.group_discount_per_so_line"/>
239                                     <field name="price_subtotal"/>
240                                 </tree>
241                             </field>
242                             <group class="oe_subtotal_footer oe_right" colspan="2" name="sale_total">
243                                 <field name="amount_untaxed" widget='monetary' options="{'currency_field': 'currency_id'}"/>
244                                 <field name="amount_tax" widget='monetary' options="{'currency_field': 'currency_id'}"/>
245                                 <div class="oe_subtotal_footer_separator oe_inline">
246                                     <label for="amount_total" />
247                                     <button name="button_dummy"
248                                         states="draft,sent" string="(update)" type="object" class="oe_edit_only oe_link"/>
249                                 </div>
250                                 <field name="amount_total" nolabel="1" class="oe_subtotal_footer_separator" widget='monetary' options="{'currency_field': 'currency_id'}"/>
251                             </group>
252                             <div class="oe_clear"/>
253                             <field name="note" class="oe_inline" placeholder="Terms and conditions..."/>
254                         </page>
255                         <page string="Other Information" groups="base.group_user">
256                             <group>
257                                 <group name="sales_person" groups="base.group_user">
258                                     <field name="user_id"/>
259                                     <field groups="base.group_no_one" name="origin"/>
260                                 </group>
261                                 <group name="sale_pay">
262                                     <field name="payment_term" widget="selection"/>
263                                     <field name="fiscal_position" widget="selection"/>
264                                     <field name="company_id" widget="selection" groups="base.group_multi_company"/>
265                                 </group>
266                                 <group>
267                                     <field name="invoiced"/>
268                                     <field name="invoice_exists" invisible="1"/>
269                                 </group>
270                             </group>
271                         </page>
272                     </notebook>
273                 </sheet>
274                 <div class="oe_chatter">
275                     <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
276                     <field name="message_ids" widget="mail_thread"/>
277                 </div>
278                 </form>
279             </field>
280         </record>
281
282         <!-- inherited view to make the order lines list in the form non-editable
283              for the members of some usability groups -->
284         <record id="view_order_form_editable_list" model="ir.ui.view">
285             <field name="name">sale.order.form.editable.list</field>
286             <field name="model">sale.order</field>
287             <field name="inherit_id" ref="sale.view_order_form"/>
288             <field name="groups_id" eval="[(6, 0, [ref('product.group_uos'), ref('product.group_stock_packaging'), ref('sale.group_mrp_properties')])]"/>
289             <field name="arch" type="xml">
290                 <xpath expr="//field[@name='order_line']/tree" position="attributes">
291                     <attribute name="editable"/>
292                 </xpath>
293             </field>
294         </record>
295
296         <record id="view_sales_order_filter" model="ir.ui.view">
297             <field name="name">sale.order.list.select</field>
298             <field name="model">sale.order</field>
299             <field name="arch" type="xml">
300                 <search string="Search Sales Order">
301                     <field name="name" string="Sales Order" filter_domain="['|',('name','ilike',self),('client_order_ref','ilike',self)]"/>
302                     <filter icon="terp-mail-message-new" string="Unread Messages" name="message_unread" domain="[('message_unread','=',True)]"/>
303                     <separator/>
304                     <filter icon="terp-document-new" string="Quotations" name="draft" domain="[('state','in',('draft','sent'))]" help="Sales Order that haven't yet been confirmed"/>
305                     <filter icon="terp-check" string="Sales" name="sales" domain="[('state','in',('manual','progress'))]"/>
306                     <filter icon="terp-dolar_ok!" string="To Invoice" domain="[('state','=','manual')]" help="Sales Order ready to be invoiced"/>
307                     <filter icon="terp-dolar_ok!" string="Done" domain="[('state','=','done')]" help="Sales Order done"/>
308                     <separator/>
309                     <filter string="My Sales Orders" domain="[('user_id','=',uid)]" help="My Sales Orders" icon="terp-personal" name="my_sale_orders_filter"/>
310                     <field name="partner_id" filter_domain="[('partner_id', 'child_of', self)]"/>
311                     <field name="user_id"/>
312                     <field name="project_id"/>
313                     <group expand="0" string="Group By...">
314                         <filter string="Customer" icon="terp-personal" domain="[]" context="{'group_by':'partner_id'}"/>
315                         <filter string="Salesperson" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
316                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
317                         <filter string="Order Date" icon="terp-go-month" domain="[]" context="{'group_by':'date_order'}"/>
318                     </group>
319                </search>
320             </field>
321         </record>
322
323         <record id="action_orders" model="ir.actions.act_window">
324             <field name="name">Sales Orders</field>
325             <field name="type">ir.actions.act_window</field>
326             <field name="res_model">sale.order</field>
327             <field name="view_type">form</field>
328             <field name="view_mode">tree,form,calendar,graph</field>
329             <field name="search_view_id" ref="view_sales_order_filter"/>
330             <field name="context">{}</field>
331             <field name="domain">[('state','not in',('draft','sent','cancel'))]</field>
332             <field name="help" type="html">
333               <p class="oe_view_nocontent_create">
334                 Click to create a quotation that can be converted into a sales
335                 order.
336               </p><p>
337                 OpenERP will help you efficiently handle the complete sales flow:
338                 quotation, sales order, delivery, invoicing and payment.
339               </p>
340             </field>
341         </record>
342         <menuitem action="action_orders" id="menu_sale_order" parent="base.menu_sales" sequence="5" groups="base.group_sale_salesman,base.group_sale_manager"/>
343
344         <record id="action_orders_exception" model="ir.actions.act_window">
345             <field name="name">Sales in Exception</field>
346             <field name="type">ir.actions.act_window</field>
347             <field name="res_model">sale.order</field>
348             <field name="view_type">form</field>
349             <field name="view_mode">tree,form,calendar,graph</field>
350             <field name="domain">[('state','in',('shipping_except','invoice_except'))]</field>
351             <field name="filter" eval="True"/>
352             <field name="search_view_id" ref="view_sales_order_filter"/>
353         </record>
354
355         <record id="action_orders_in_progress" model="ir.actions.act_window">
356             <field name="name">Sales Order in Progress</field>
357             <field name="type">ir.actions.act_window</field>
358             <field name="res_model">sale.order</field>
359             <field name="view_type">form</field>
360             <field name="view_mode">tree,form,calendar,graph</field>
361             <field name="domain">[('state','in',('progress','waiting_date','manual'))]</field>
362             <field name="search_view_id" ref="view_sales_order_filter"/>
363         </record>
364
365
366         <record id="action_quotations" model="ir.actions.act_window">
367             <field name="name">Quotations</field>
368             <field name="type">ir.actions.act_window</field>
369             <field name="res_model">sale.order</field>
370             <field name="view_type">form</field>
371             <field name="view_id" ref="view_quotation_tree"/>
372             <field name="view_mode">tree,form,calendar,graph</field>
373             <field name="context">{}</field>
374             <field name="domain">[('state','in',('draft','sent','cancel'))]</field>
375             <field name="search_view_id" ref="view_sales_order_filter"/>
376             <field name="help" type="html">
377               <p class="oe_view_nocontent_create">
378                 Click to create a quotation, the first step of a new sale.
379               </p><p>
380                 OpenERP will help you handle efficiently the complete sale flow:
381                 from the quotation to the sales order, the
382                 delivery, the invoicing and the payment collection.
383               </p><p>
384                 The social feature helps you organize discussions on each sales
385                 order, and allow your customers to keep track of the evolution
386                 of the sales order.
387               </p>
388             </field>
389         </record>
390
391         <menuitem id="menu_sale_quotations"
392         action="action_quotations" parent="base.menu_sales"
393         sequence="4"/>
394
395         <record id="action_order_tree" model="ir.actions.act_window">
396             <field name="name">Old Quotations</field>
397             <field name="type">ir.actions.act_window</field>
398             <field name="res_model">sale.order</field>
399             <field name="view_type">form</field>
400             <field name="view_mode">tree,form,calendar,graph</field>
401             <field name="domain">[('state','=','draft'),('date_order','&lt;',time.strftime('%Y-%m-%d %H:%M:%S'))]</field>
402             <field name="filter" eval="True"/>
403             <field name="search_view_id" ref="view_sales_order_filter"/>
404         </record>
405
406
407         <record id="view_order_line_tree" model="ir.ui.view">
408             <field name="name">sale.order.line.tree</field>
409             <field name="model">sale.order.line</field>
410             <field name="arch" type="xml">
411                 <tree string="Sales Order Lines">
412                     <field name="product_id" invisible="1"/>
413                     <field name="order_id"/>
414                     <field name="order_partner_id"/>
415                     <field name="name"/>
416                     <field name="product_uom_qty" string="Qty"/>
417                     <field name="product_uom" string="Unit of Measure" groups="product.group_uom"/>
418                     <field name="salesman_id"/>
419                     <field name="price_subtotal" sum="Total"/>
420                     <field name="state"/>
421                     <field name="invoiced"/>
422                 </tree>
423             </field>
424         </record>
425         <record id="view_order_line_form2" model="ir.ui.view">
426             <field name="name">sale.order.line.form2</field>
427             <field name="model">sale.order.line</field>
428             <field name="arch" type="xml">
429                 <form string="Sales Order Lines" version="7.0">
430                     <header>
431                         <button name="%(action_view_sale_order_line_make_invoice)d" string="Create Invoice" type="action" attrs="{'invisible': ['|',('invoiced', '=', 1), ('state', 'not in', ('confirmed', 'draft'))]}" class="oe_highlight" groups="base.group_user"/>
432                         <button name="button_cancel" string="Cancel Line" type="object" states="confirmed,exception" groups="base.group_user"/>
433                         <button name="button_done" string="Done" type="object"  attrs="{'invisible': ['|',('invoiced', '=', 0), ('state', 'not in', ('confirmed', 'exception'))]}" class="oe_highlight" groups="base.group_user"/>
434                         <field name="state" widget="statusbar" statusbar_visible="draft,confirmed,done" statusbar_colors='{"exception":"red","cancel":"red"}'/>
435                     </header>
436                     <sheet>
437                     <label for="order_id" class="oe_edit_only"/>
438                     <h1><field name="order_id" domain="[('state','!=','done')]"/></h1>
439                     <label for="order_partner_id" class="oe_edit_only"/>
440                     <h2><field name="order_partner_id"/></h2>
441                     <group>
442                         <group>
443                             <field name="product_id"/>
444                             <label for="product_uom_qty"/>
445                             <div>
446                                 <field name="product_uom_qty" readonly="1" class="oe_inline"/>
447                                 <field name="product_uom" groups="product.group_uom" class="oe_inline"/>
448                             </div>
449                         </group>
450                         <group>
451                             <field name="price_unit"/>
452                             <field name="discount" groups="sale.group_discount_per_so_line"/>
453                             <field name="price_subtotal"/>
454                             <field name="invoiced"/>
455                             <field name="company_id" groups="base.group_multi_company" readonly="1"/>
456                         </group>
457                     </group>
458                     <label for="name"/>
459                     <field name="name"/>
460                     </sheet>
461                 </form>
462             </field>
463         </record>
464
465         <record id="view_sales_order_line_filter" model="ir.ui.view">
466             <field name="name">sale.order.line.select</field>
467             <field name="model">sale.order.line</field>
468             <field name="arch" type="xml">
469                 <search string="Search Sales Order">
470                     <filter icon="terp-dolar_ok!" string="To Invoice" domain="[('invoiced','&lt;&gt;', 1),('state','=','done')]"  help="Sales Order Lines ready to be invoiced"/>
471                     <separator/>
472                     <filter string="My Sales Order Lines" icon="terp-personnal" domain="[('salesman_id','=',uid)]" help="Sales Order Lines related to a Sales Order of mine"/>
473                     <field name="order_id"/>
474                     <field name="order_partner_id" filter_domain="[('order_partner_id', 'child_of', self)]"/>
475                     <field name="product_id"/>
476                     <field name="salesman_id"/>
477                     <group expand="0" string="Group By...">
478                         <filter string="Product" icon="terp-accessories-archiver" domain="[]" context="{'group_by':'product_id'}"/>
479                         <filter string="Order" icon="terp-gtk-jump-to-rtl" domain="[]" context="{'group_by':'order_id'}"/>
480                         <filter string="Salesperson" icon="terp-personal" domain="[]" context="{'group_by':'salesman_id'}"/>
481                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
482                     </group>
483                 </search>
484             </field>
485         </record>
486
487         <record id="view_sales_order_uninvoiced_line_filter" model="ir.ui.view">
488             <field name="name">sale.order.uninvoiced.line</field>
489             <field name="model">sale.order.line</field>
490             <field name="arch" type="xml">
491                 <search string="Search Uninvoiced Lines">
492                     <filter icon="terp-gtk-go-back-rtl" string="To Do" domain="[('state','=','confirmed')]" name="sale order" help="Confirmed sales order lines, not yet delivered"/>
493                     <filter icon="terp-dialog-close" string="Done" domain="[('state','=','done')]" name="sale_order_done" help="Sales order lines done"/>
494                     <filter icon="terp-accessories-archiver" string="Shipped" domain="[('state','=','done')]" name="unshipped" help="Sales Order Lines that are in 'done' state"/>
495                     <separator/>
496                     <filter icon="terp-dolar_ok!" string="Uninvoiced" name="uninvoiced" domain="[('invoiced','&lt;&gt;', 1),('state','&lt;&gt;','draft'),('state','&lt;&gt;','cancel')]" help="Sales Order Lines that are confirmed, done or in exception state and haven't yet been invoiced"/>
497                     <separator/>
498                     <filter string="My Sales Order Lines" icon="terp-personal" domain="[('salesman_id','=',uid)]" help="My Sales Order Lines"/>
499                     <field name="order_id"/>
500                     <field name="order_partner_id" filter_domain="[('order_partner_id', 'child_of', self)]"/>
501                     <field name="product_id"/>
502                     <field name="salesman_id"/>
503                     <group expand="0" string="Group By...">
504                         <filter string="Order" icon="terp-gtk-jump-to-rtl" domain="[]" context="{'group_by':'order_id'}" help="Order reference"/>
505                         <filter string="Product" icon="terp-accessories-archiver" domain="[]" context="{'group_by':'product_id'}"/>
506                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
507                     </group>
508                 </search>
509             </field>
510         </record>
511
512         <record id="action_order_line_tree2" model="ir.actions.act_window">
513             <field name="name">Order Lines to Invoice</field>
514             <field name="type">ir.actions.act_window</field>
515             <field name="res_model">sale.order.line</field>
516             <field name="view_type">form</field>
517             <field name="view_mode">tree,form</field>
518             <field name="search_view_id" ref="view_sales_order_uninvoiced_line_filter"/>
519             <field name="context">{"search_default_uninvoiced":1}</field>
520             <field name="filter" eval="True"/>
521             <field name="help" type="html">
522               <p>
523                 Here is a list of each sales order line to be invoiced. You can
524                 invoice sales orders partially, by lines of sales order. You do
525                 not need this list if you invoice from the delivery orders or
526                 if you invoice sales totally.
527               </p>
528             </field>
529         </record>
530
531         <record id="action_order_line_tree3" model="ir.actions.act_window">
532             <field name="name">Uninvoiced and Delivered Lines</field>
533             <field name="type">ir.actions.act_window</field>
534             <field name="res_model">sale.order.line</field>
535             <field name="view_type">form</field>
536             <field name="view_mode">tree,form</field>
537             <field name="domain">[('invoiced','&lt;&gt;', 1),('state','=','done')]</field>
538             <field name="filter" eval="True"/>
539         </record>
540
541         <act_window
542             context="{'search_default_product_id': active_id, 'default_product_id': active_id}"
543             id="action_order_line_product_tree"
544             name="Sales Order Lines"
545             res_model="sale.order.line"
546             src_model="product.product"
547             groups="base.group_sale_salesman"/>
548
549         <menuitem id="base.menu_invoiced" name="Invoicing" parent="base.menu_base_partner" sequence="5"/>
550         <menuitem id="menu_invoicing_sales_order_lines" parent="base.menu_invoiced" action="action_order_line_tree2" sequence="10" groups="sale.group_invoice_so_lines"/>
551
552     </data>
553 </openerp>