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.
31 lines
1.3 KiB
31 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Action for the Wizard for the bom details -->
|
|
<record id="bom_comparison_action" model="ir.actions.act_window">
|
|
<field name="name">bom.comparison.action</field>
|
|
<field name="res_model">bom.comparison</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
<!-- Define a form view for the Wizard -->
|
|
<record id="bom_comparison_view_form" model="ir.ui.view">
|
|
<field name="name">bom.comparison.view.form</field>
|
|
<field name="model">bom.comparison</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<field name="product_tmpl_id"/>
|
|
<field name="all_bom_ids" invisible="1"/>
|
|
<field name="bom_ids" widget="many2many_tags"/>
|
|
<field name="product_unit" />
|
|
<field name="analysis" widget="radio"/>
|
|
</group>
|
|
<footer>
|
|
<button class="btn btn-primary" string="Comparison Report"
|
|
name="action_comparison_report" type="object"/>
|
|
<button class="btn" string="DISCARD" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|