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
505 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Server action to create BOM-->
<record model="ir.actions.server" id="action_update_invoice_date">
<field name="name">Create BOM</field>
<field name="model_id" ref="product.model_product_product"/>
<field name="binding_model_id" ref="product.model_product_product"/>
<field name="state">code</field>
<field name="code">
action = records.action_create_bom()
</field>
</record>
</odoo>