[MERGE] New menus. Get rid of jQuery accordion. Added folding and floating menus.
[odoo/odoo.git] / addons / mrp_repair / wizard / mrp_repair_make_invoice_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         
5         <!--  Make Invoice -->
6         
7                 <record id="view_make_invoice" model="ir.ui.view">
8             <field name="name">Make Invoice</field>
9             <field name="model">mrp.repair.make_invoice</field>
10             <field name="type">form</field>
11             <field name="arch" type="xml">
12                 <form string="Create invoices">
13                         <separator colspan="4" string="Do you really want to create the invoice(s) ?" />  
14                                 <field name="group"/>
15                     <newline/>  
16                     <group col="2" colspan="4">                        
17                                 <button icon="gtk-stop" special="cancel"
18                                         string="Cancel" />
19                                 <button name="make_invoices" string="Create Invoice"
20                                         colspan="1" type="object" icon="terp-gtk-go-back-rtl" />
21                         </group>
22                 </form>
23             </field>
24         </record>
25
26         <act_window name="Make Invoice"             
27                     res_model="mrp.repair.make_invoice"
28                     src_model="mrp.repair"
29                     view_mode="form"
30                     target="new"        
31             key2="client_action_multi"    
32                     id="act_mrp_repair_invoice"/>        
33         
34         </data>
35 </openerp>