~vauxoo/addons-vauxoo/6.0-trunk

724 by Julio Serna
[V7-MIGRATION]
1
<?xml version='1.0' encoding='utf-8'?>
501.19.1 by fernando_ld at vauxoo
[ADD][mrp_production_wizard]Added module of a wizard to make production orders. Model files.
2
<openerp>
3
    <data>
4
<!--
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
5
    View of wizard on mrp production
501.19.1 by fernando_ld at vauxoo
[ADD][mrp_production_wizard]Added module of a wizard to make production orders. Model files.
6
-->
501.19.2 by fernando_ld at vauxoo
[IMP]Wizard shows properly the fields
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">
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
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>
516.3.10 by Rodo
[IMP]mrp_production_wizard]Migrate module for openERP 7
17
                        <field name="product_id" placeholder="Product"/>
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
18
                        <newline/>
19
                        <field colspan="2" name="wiz_data" nolabel="1" widget="one2many_list" mode="tree" height="275">
516.3.10 by Rodo
[IMP]mrp_production_wizard]Migrate module for openERP 7
20
                            <tree string="Products to consume" editable="bottom">
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
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>
501.19.2 by fernando_ld at vauxoo
[IMP]Wizard shows properly the fields
28
                </form>
29
            </field>
30
        </record>
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
31
    
501.19.7 by fernando_ld at vauxoo
[IMP]Added functionality with default_location_id module so it pulls the default location of the category
32
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
33
          
724 by Julio Serna
[V7-MIGRATION]
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"/>
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
35
    
724 by Julio Serna
[V7-MIGRATION]
36
    <menuitem action="mrp_production_wizard_act" id="mrp_production_wizard_action" parent="mrp.menu_mrp_manufacturing" sequence="50"/>
516.8.1 by Luis Tores
[IMP]mrp_production_wizard]Migrate module for openERP 7
37
        
501.19.1 by fernando_ld at vauxoo
[ADD][mrp_production_wizard]Added module of a wizard to make production orders. Model files.
38
    </data>
724 by Julio Serna
[V7-MIGRATION]
39
</openerp>