[IMP] : improve title & description for modules
[odoo/odoo.git] / addons / mrp / wizard / mrp_price_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         
5         <!--  Product Cost Structure Report -->
6         
7         <record id="view_mrp_product_price_wizard" model="ir.ui.view">
8             <field name="name">Product Cost Structure</field>
9             <field name="model">mrp.product_price</field>
10             <field name="type">form</field>
11             <field name="arch" type="xml">
12                 <form string="Product Cost Structure" version="7.0">
13                     <header>
14                         <button name="print_report" type="object" string="Print" class="oe_highlight"/>
15                         or
16                         <button string="Cancel" class="oe_link" special="cancel" />
17                     </header>
18                     <group string="Print Cost Structure of Product.">
19                         <field name="number"/>
20                     </group>
21                 </form>
22             </field>
23         </record>
24
25        <act_window name="Product Cost Structure"
26             res_model="mrp.product_price"
27             src_model="product.product"
28             view_mode="form"
29             target="new"        
30             key2="client_print_multi"    
31             id="action_view_mrp_product_price_wizard"/>
32     </data>
33 </openerp>