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.
13 lines
621 B
13 lines
621 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!-- Define a record for the server action to export BOM Structure to Excel -->
|
|
<record id="mrp_bom_action_excel" model="ir.actions.server">
|
|
<field name="name">BOM Structure EXCEL</field>
|
|
<field name="model_id" ref="mrp.model_mrp_bom"/>
|
|
<field name="binding_model_id" ref="mrp.model_mrp_bom"/>
|
|
<field name="binding_view_types">form</field>
|
|
<field name="binding_type">report</field>
|
|
<field name="state">code</field>
|
|
<field name="code">action = records.action_print_bom_structure()</field>
|
|
</record>
|
|
</odoo>
|
|
|