~serpent-consulting-services/openerp-usa/fix-shipping_api_ups_cc

« back to all changes in this revision

Viewing changes to mrp_disassemble/wizard/product_disassemble_view.xml

  • Committer: npgllc
  • Date: 2012-08-02 17:13:27 UTC
  • Revision ID: npgllc-20120802171327-2xgyyjjb5d1kx26y
Removed all the 6.0 compatible modules

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
 
        <!-- Mrp Product Disassemble -->
6
 
                <record id="product_disassemble_form_view" model="ir.ui.view">
7
 
                        <field name="name">product.disassemble.form</field>
8
 
                        <field name="model">mrp.product.disassemble</field>
9
 
                        <field name="type">form</field>
10
 
                        <field name="arch" type="xml">
11
 
                                <form string="Procurement Request">
12
 
                                        <field name="product_id" required="1" on_change="onchange_product_id(product_id,location_id)" />
13
 
                                        <field name="location_id" required="1" on_change="onchange_product_id(product_id, location_id)"
14
 
                                               context="{'filter_by_real_stock':True,'product_id':product_id}" />
15
 
                                        <field name="product_qty" required="1" />
16
 
                                        <field name="qty_available" readonly="0" />
17
 
                                        <separator colspan="4"/>
18
 
                                        <group colspan="4" col="6">
19
 
                                                <button special="cancel" string="Cancel" icon="gtk-cancel"/>
20
 
                                                <button name="do_disassemble" string="Disassemble" type="object" icon="gtk-execute"/>
21
 
                                        </group>
22
 
                                </form>
23
 
                        </field>
24
 
 
25
 
                </record>
26
 
                <act_window name="Disassemble"
27
 
            res_model="mrp.product.disassemble"
28
 
            src_model="product.product"
29
 
            view_mode="form"
30
 
            view_id="product_disassemble_form_view"
31
 
            target="new"
32
 
            key2="client_action_multi"
33
 
            id="act_product_disassemble"/>
34
 
 
35
 
        <menuitem id="menu_disassemble_product" name="Disassemble a Product"
36
 
                parent="mrp.menu_mrp_manufacturing" action="act_product_disassemble"/>
37
 
 
38
 
 
39
 
 
40
 
        </data>
41
 
</openerp>