Files
manufacture/quality_control/views/product_template_view.xml
oihane 1e14d28bb8 [ADD] New module <quality_control_hr> closes #662
* Changes in access rules
* Trigger line instead of test and user
2015-10-26 16:49:50 +01:00

27 lines
1012 B
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<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">
<page string="Inventory" 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" />
</tree>
</field>
</group>
</page>
</field>
</record>
</data>
</openerp>