odoo/addons/mrp/wizard/mrp_price_view.xml

33 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- Product Cost Structure Report -->
<record id="view_mrp_product_price_wizard" model="ir.ui.view">
<field name="name">Product Cost Structure</field>
<field name="model">mrp.product_price</field>
<field name="arch" type="xml">
<form string="Product Cost Structure" version="7.0">
<group string="Print Cost Structure of Product.">
<field name="number"/>
</group>
<footer>
<button name="print_report" type="object" string="Print" class="oe_highlight"/>
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
<act_window name="Product Cost Structure"
res_model="mrp.product_price"
src_model="product.product"
view_mode="form"
target="new"
key2="client_print_multi"
id="action_view_mrp_product_price_wizard"/>
</data>
</openerp>