~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to products_finished_scrap/mrp_view.xml

  • Committer: Luis Tores
  • Date: 2012-10-30 23:14:14 UTC
  • mto: (501.1.72 6.1)
  • mto: This revision was merged to the branch mainline in revision 529.
  • Revision ID: luis_t@vauxoo.com-20121030231414-0lrywx0xcxb8v2v4
[ADD][products_finished_scrap]Add fields function for count products finished and scrap

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<openerp>
 
3
    <data>
 
4
        <record id="mrp_inherit_related_form" model="ir.ui.view">
 
5
            <field name="name">mrp.inherit.related.form</field>
 
6
            <field name="model">mrp.production</field>
 
7
            <field name="type">form</field>
 
8
            <field name="inherit_id" ref="mrp.mrp_production_form_view"/>
 
9
            <field name="arch" type="xml">
 
10
                <xpath expr="/form/group/field[@name='product_uos']" position="after">
 
11
                    <group colspan="2">
 
12
                        <field name="product_produced"/>
 
13
                        <field name="product_in_stock"/>
 
14
                    </group>
 
15
                </xpath> 
 
16
            </field>
 
17
        </record>
 
18
    </data>
 
19
</openerp>