~camptocamp/openerp-rma/7.0-crm_claim_rma-fix-lp1317045_rde

« back to all changes in this revision

Viewing changes to crm_claim_rma/wizard/claim_make_picking_view.xml

  • Committer: Joel Grand-Guillaume
  • Date: 2013-11-14 10:07:54 UTC
  • mto: This revision was merged to the branch mainline in revision 69.
  • Revision ID: joel.grandguillaume@camptocamp.com-20131114100754-9vb3p3q2i8m2k9ya
[IMP] Split the mass return in a new module
[IMP] Split the new location added on WH in a new module for advance location management
[IMP] Clean the wizards code in crm_claim_rma
[IMP]move wizard in the new module and adapt the view and buttons

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        </record> 
28
28
 
29
29
        <record id="action_claim_picking_in" model="ir.actions.act_window">
30
 
            <field name="name">Create Incoming Shipments</field>
 
30
            <field name="name">Return Products</field>
31
31
            <field name="type">ir.actions.act_window</field>
32
32
            <field name="res_model">claim_make_picking.wizard</field>
33
33
            <field name="src_model">crm.claim</field>
48
48
            <field name="context">{'picking_type': 'out'}</field>
49
49
        </record>
50
50
 
51
 
        <record id="action_claim_picking_loss" model="ir.actions.act_window">
52
 
            <field name="name">Create Products Loss</field>
53
 
            <field name="type">ir.actions.act_window</field>
54
 
            <field name="res_model">claim_make_picking.wizard</field>
55
 
            <field name="src_model">crm.claim</field>
56
 
            <field name="view_type">form</field>
57
 
            <field name="view_mode">form</field>
58
 
            <field name="target">new</field> 
59
 
            <field name="context">{'picking_type': 'loss'}</field>
60
 
        </record>
61
 
 
62
51
    </data>
63
52
</openerp>