You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.9 KiB
43 lines
1.9 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Form view for mrp.report-->
|
|
<record id="mrp_report_view_form" model="ir.ui.view">
|
|
<field name="name">mrp.report.view.form</field>
|
|
<field name="model">mrp.report</field>
|
|
<field name="arch" type="xml">
|
|
<form string="MRP Report">
|
|
<group>
|
|
<group>
|
|
<field name="product_id" widget="many2many_tags"/>
|
|
<field name="filter"/>
|
|
<field name="date_from"
|
|
attrs="{'invisible': [('filter','=',False)], 'required': [('filter', '=', True)]}"/>
|
|
</group>
|
|
<group>
|
|
<field name="stage"/>
|
|
<field name="filter_user"/>
|
|
<field name="responsible_id" widget="many2many_tags"
|
|
attrs="{'invisible': [('filter_user','=',False)], 'required': [('filter_user', '=', True)]}"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="check_report" string="Export xls"
|
|
type="object" class="oe_highlight"
|
|
icon='fa-download'/>
|
|
<button name="print_pdf" string="Print Pdf" type="object"
|
|
class="oe_highlight" icon='fa-download'/>
|
|
or
|
|
<button string="Cancel" class="oe_link" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- Action for the mrp.report-->
|
|
<record id="mrp_report_action" model="ir.actions.act_window">
|
|
<field name="name">MRP Report</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">mrp.report</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
</odoo>
|