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

« back to all changes in this revision

Viewing changes to crm_rma_lot_mass_return/__openerp__.py

  • 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:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright 2013 Camptocamp
 
5
#    Copyright 2009-2013 Akretion, 
 
6
#    Author: Emmanuel Samyn, Raphaël Valyi, Sébastien Beau, Joel Grand-Guillaume
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{'name': 'RMA Claims Mass Return by Lot',
 
24
 'version': '1.0',
 
25
 'category': 'Generic Modules/CRM & SRM',
 
26
 'depends': ['crm_claim_rma'
 
27
             ],
 
28
 'author': 'Akretion, Camptocamp',
 
29
 'license': 'AGPL-3',
 
30
 'website': 'http://www.akretion.com, http://www.camptocamp.com',
 
31
 'description': """
 
32
RMA Claim Mass Return by Lot
 
33
============================
 
34
 
 
35
This module adds possibility to return a whole lot of product from a Claim
 
36
and create a incoming shipment for them.
 
37
 
 
38
 
 
39
WARNING: This module is currently not yet completely debugged and is waiting his author to be.
 
40
 
 
41
""",
 
42
 'images': [],
 
43
 'demo': [],
 
44
 'data': [
 
45
        'wizard/returned_lines_from_serial_wizard_view.xml',
 
46
        'crm_rma_view.xml',
 
47
 ],
 
48
 'installable': True,
 
49
 'application': True,
 
50
}