~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_production_wizard/mrp_view.xml

  • Committer: Sabrina Romero
  • Date: 2013-08-20 21:10:39 UTC
  • mto: (543.7.272 vaddddddd)
  • mto: This revision was merged to the branch mainline in revision 840.
  • Revision ID: sabrina@vauxoo.com-20130820211039-9jqrffvg2nz8q3vx

[ADD] Module product_do_merge added

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0' encoding='utf-8'?>
 
2
<openerp>
 
3
    <data>
 
4
<!--
 
5
    View of wizard on mrp production
 
6
-->
 
7
        <record id="mrp_production_wizard_form" model="ir.ui.view">
 
8
            <field name="name">mrp.production.wizard.form</field>
 
9
            <field name="model">mrp.production.wizard</field>
 
10
            <field name="arch" type="xml">
 
11
                <form string="Produce without BoM" version="7.0">
 
12
                    <header>
 
13
                        <button string="Cancel" icon="gtk-cancel" type="object" special="cancel" class="oe_highlight"/>
 
14
                        <button string="Create production order" icon="gtk-ok" name="pass_products_to_parent" type="object"/>
 
15
                    </header>
 
16
                    <sheet>
 
17
                        <field name="product_id" placeholder="Product"/>
 
18
                        <newline/>
 
19
                        <field colspan="2" name="wiz_data" nolabel="1" widget="one2many_list" mode="tree" height="275">
 
20
                            <tree string="Products to consume" editable="bottom">
 
21
                                <field name="product_id_consume" on_change="onchange_production_wizard_product_name(product_id_consume)"/>
 
22
                                <field name="product_qty" string="Qty"/>
 
23
                                <field name="name"/>
 
24
                                <field name="product_uom" string="UOM"/>
 
25
                            </tree>
 
26
                        </field>
 
27
                    </sheet>
 
28
                </form>
 
29
            </field>
 
30
        </record>
 
31
    
 
32
 
 
33
          
 
34
    <act_window id="mrp_production_wizard_act" name="Special Order" src_model="mrp.production" res_model="mrp.production.wizard" view_mode="form" target="new" key2="client_action_multi"/>
 
35
    
 
36
    <menuitem action="mrp_production_wizard_act" id="mrp_production_wizard_action" parent="mrp.menu_mrp_manufacturing" sequence="50"/>
 
37
        
 
38
    </data>
 
39
</openerp>
 
 
b'\\ No newline at end of file'