Files
manufacture/quality_control/views/product_template_view.xml
Pedro M. Baeza 75332fdee6 [IMP] quality_control:
Total refactorization with new API, README files, and new concepts.
* Triggers for product category
* ACLs
* Tolerances in questions
* one2many copyable
* Fix some views
* Error on same tolerance
* Colors on inspection lines
* Unify inspection header data assignment in set_test method
* key name in set_test
* Change icon set
2015-10-26 16:49:50 +01:00

26 lines
958 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"/>
</tree>
</field>
</group>
</page>
</field>
</record>
</data>
</openerp>