Files
manufacture/quality_control_oca/views/product_template_view.xml
2024-05-14 11:22:53 +02:00

25 lines
988 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="product_template_qc_form_view">
<field name="name">product.template.qc</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//page[2]" position="inside">
<group name="qc" string="Quality control">
<field name="qc_triggers" nolabel="1">
<tree string="Quality control triggers" editable="bottom">
<field name="trigger" widget="selection"/>
<field name="test"/>
<field name="user" />
<field name="partners" widget="many2many_tags" />
</tree>
</field>
</group>
</xpath>
</field>
</record>
</odoo>