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.2 KiB
31 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- View for BOM creation Wizard in the product variants form -->
|
|
<record id="product_bom_view_form" model="ir.ui.view">
|
|
<field name="name">product.bom.view.form</field>
|
|
<field name="model">product.bom</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<field name="product_id" />
|
|
<field name="quantity" />
|
|
<field name="bom_type" />
|
|
<field name="uom_id" />
|
|
<field name="product_uom_category_id" invisible="1"/>
|
|
</group>
|
|
</sheet>
|
|
<footer>
|
|
<button name="action_create_bom"
|
|
string="Create Bom"
|
|
type="object" class="btn-primary"
|
|
data-hotkey="q"/>
|
|
<button string="Cancel"
|
|
class="btn-secondary"
|
|
special="cancel"
|
|
data-hotkey="z"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|