~akretion-team/openerp-manufacturing/70-add-mrp-product-serial

« back to all changes in this revision

Viewing changes to mrp_industrial_design_bom/mrp_industrial_design.xml

  • Committer: Maxime Chambreuil
  • Author(s): Jonatan Cloutier
  • Date: 2013-04-26 15:35:22 UTC
  • mfrom: (4.1.3 trunk)
  • Revision ID: maxime.chambreuil@savoirfairelinux.com-20130426153522-mu71nh3r6qusxz40
[MRG] Add mrp_industrial_design_bom

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" ?>
 
2
<openerp>
 
3
    <data>
 
4
    <delete model="ir.actions.report.xml" search="[('name', '=', 'bom.structure')]" />
 
5
        <report auto="True" 
 
6
        header="False"
 
7
        id="report_industrial_design_bom_structure"
 
8
        model="mrp.bom"
 
9
        name="industrialdesign.bom.structure"
 
10
        rml="mrp_industrial_design_bom/report/bom_structure_industrial_design.rml"
 
11
        string="BOM Structure"/>
 
12
 
 
13
        <record model="ir.ui.view" id="mrp_bom_form_view_inherit">
 
14
            <field name="name">mrp.bom.form.inherit</field>
 
15
            <field name="model">mrp.bom</field>
 
16
            <field name="inherit_id" ref="mrp.mrp_bom_form_view" />
 
17
            <field name="arch" type="xml">
 
18
                <xpath expr="/form/notebook/page/field/tree/field[@name='product_id']" position="before">
 
19
                    <field name="bubble_number" />
 
20
                </xpath>
 
21
                <xpath expr="/form/notebook/page/field/tree/field[@name='date_stop']" position="after">
 
22
                    <field name="refdes" />
 
23
                </xpath>
 
24
            </field>
 
25
        </record>
 
26
        
 
27
    </data>
 
28
</openerp>
 
29