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

« back to all changes in this revision

Viewing changes to stock_multilocation_picking/wizard/replenish_wizard_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
 
      <record id="form_view_replenish_recreate_wizard" model="ir.ui.view">
6
 
                        <field name="name">Replenish</field>
7
 
                        <field name="model">replenish.wizard</field>
8
 
            <field name="type">form</field>
9
 
            <field name="arch" type="xml">
10
 
                <form string="Replenish Wizard">
11
 
                        <label string="This process will delete and recreate all the replenish records."/><newline/><label string="Do you want to proceed?"/><newline/>
12
 
                        <button name="make_replenish_model" type="object" string="Proceed" />
13
 
                        <button icon='gtk-cancel' special="cancel" string="Cancel" />
14
 
                </form>
15
 
            </field>
16
 
        </record>
17
 
      <record id="form_view_replenish_recreate_product_wizard" model="ir.ui.view">
18
 
                        <field name="name">Replenish</field>
19
 
                        <field name="model">replenish.wizard</field>
20
 
            <field name="type">form</field>
21
 
            <field name="arch" type="xml">
22
 
                <form string="Replenish Wizard">
23
 
                        <label string="This process will delete and recreate all the replenish records for this product."/><newline/><label string="Do you want to proceed?"/><newline/>
24
 
                        <button name="make_replenish_model" type="object" string="Proceed" />
25
 
                        <button icon='gtk-cancel' special="cancel" string="Cancel" />
26
 
                </form>
27
 
            </field>
28
 
        </record>
29
 
        
30
 
        <record id="form_view_remove_location_wizard" model="ir.ui.view">
31
 
                        <field name="name">Remove Empty Locations</field>
32
 
                        <field name="model">replenish.wizard</field>
33
 
            <field name="type">form</field>
34
 
            <field name="arch" type="xml">
35
 
                <form string="Remove Empty Locations">
36
 
                        <label string="This process will remove the locations with Zero Stocks."/><newline/>
37
 
                        <button name="remove_locations" type="object" string="Remove" />
38
 
                        <button icon='gtk-cancel' special="cancel" string="Cancel" />
39
 
                </form>
40
 
            </field>
41
 
        </record>
42
 
        
43
 
 
44
 
                <act_window name="Update Replenish"
45
 
                        res_model="replenish.wizard"
46
 
                        src_model="product.product"
47
 
                        view_mode="form"
48
 
                        view_id="form_view_replenish_recreate_wizard"
49
 
                        target="new"
50
 
                        multi="True"
51
 
                        id="action_replinish_recreate"/>
52
 
 
53
 
                <act_window name="Update Replenish"
54
 
                        res_model="replenish.wizard"
55
 
                        src_model="product.product"
56
 
                        view_mode="form"
57
 
                        view_id="form_view_replenish_recreate_product_wizard"
58
 
                        target="new"
59
 
                        key2="client_action_multi"
60
 
                        id="action_replinish_product_recreate"/>
61
 
                        
62
 
                <act_window name="Remove Empty Locations"
63
 
                        res_model="replenish.wizard"
64
 
                        src_model="product.product"
65
 
                        view_mode="form"
66
 
                        view_id="form_view_remove_location_wizard"
67
 
                        target="new"
68
 
                        multi="True"
69
 
                        id="action_remove_locations"/>
70
 
 
71
 
                <menuitem id="menu_replinish_recreate" parent="stock.next_id_61" sequence="80"
72
 
                name="Update Replenish" action="action_replinish_recreate"/>
73
 
                
74
 
                <menuitem id="menu_remove_locations" parent="stock.next_id_61" sequence="81"
75
 
                name="Remove Empty Locations" action="action_remove_locations"/>
76
 
 
77
 
    </data>
78
 
</openerp>
79
 
 
80
 
 
81