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.
42 lines
2.1 KiB
42 lines
2.1 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!--Manufacturing Report Form View-->
|
|
<record id="manufacturing_report_view_form" model="ir.ui.view">
|
|
<field name="name">manufacturing.report.view.form</field>
|
|
<field name="model">manufacturing.report</field>
|
|
<field name="arch" type="xml">
|
|
<form string="MRP Report">
|
|
<group>
|
|
<group>
|
|
<field name="product_ids" widget="many2many_tags"/>
|
|
<field name="filter"/>
|
|
<field name="date_from"
|
|
attrs="{'invisible': [('filter','=',False)], 'required': [('filter', '=', True)]}"/>
|
|
</group>
|
|
<group>
|
|
<field name="state"/>
|
|
<field name="filter_user"/>
|
|
<field name="responsible_ids" widget="many2many_tags"
|
|
attrs="{'invisible': [('filter_user','=',False)], 'required': [('filter_user', '=', True)]}"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="action_print_xlsx" string="Export XLSX" type="object" class="oe_highlight" icon='fa-download'/>
|
|
<button name="action_print_pdf" string="Print PDF" type="object" class="oe_highlight" icon='fa-download'/>
|
|
<button string="Cancel" class="oe_link" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!--Manufacturing Report Action-->
|
|
<record id="manufacturing_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">manufacturing.report</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<!--Manufacturing Report Menu Item-->
|
|
<menuitem id="manufacturing_report_menu" parent="mrp.menu_mrp_reporting" name="Manufacturing Reports"
|
|
action="manufacturing_report_action" sequence="5" groups="mrp.group_mrp_manager"/>
|
|
</odoo>
|
|
|