~deneroteam/openerp-rma/openerp-rma

« back to all changes in this revision

Viewing changes to crm_rma_advance_location/__openerp__.py

  • Committer: Joel Grand-Guillaume
  • Date: 2013-12-20 14:16:09 UTC
  • mfrom: (68.1.33 openerp-rma)
  • Revision ID: joel.grandguillaume@camptocamp.com-20131220141609-62vt6kn06q9ut5cb
[MIGR] Migrate the crm_claim_rma to version 7.0:
Split of the module in :
- crm_rma_advance_location (extract the warehouse and location additions that the original module had)
- crm_rma_lot_mass_return(extracted the mass return button to return products from serial)
- crm_claim_ext(trash bin module where land all functions that I wasn't able to restore)
Add module crm_rma_by_shop (new module that add the shop_id on claims and the according filter to work with)
[IMP] Usability improvements to match v7.0 possibilities
[IMP] Cleanup of the code, PEP8, community standards,...

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 Advance Location',
 
24
 'version': '1.0',
 
25
 'category': 'Generic Modules/CRM & SRM',
 
26
 'depends': ['crm_claim_rma'
 
27
             ],
 
28
 'author': 'Akretion',
 
29
 'license': 'AGPL-3',
 
30
 'website': 'http://www.akretion.com',
 
31
 'description': """
 
32
RMA Claim Advance Location
 
33
==========================
 
34
 
 
35
This module adds the following location on warehouses :
 
36
 
 
37
 * Carrier Loss
 
38
 * RMA
 
39
 * Breakage Loss 
 
40
 * Refurbish
 
41
 * Mistake Loss
 
42
 
 
43
And also various wizards on icoming deliveries that allow you to move your goods easily in those
 
44
new locations from a done reception.
 
45
 
 
46
Using this module make the logistic flow of return a bit more complexe:
 
47
 
 
48
 * Returning product goes into RMA location with a incoming shipment
 
49
 * From the incoming shipment, forward them to another places (stock, loss,...)
 
50
 
 
51
WARNING: Use with caution, this module is currently not yet completely debugged and is waiting his author to be.
 
52
 
 
53
""",
 
54
 'images': [],
 
55
 'demo': [],
 
56
 'data': [
 
57
    'wizard/claim_make_picking_from_picking_view.xml',
 
58
    'wizard/claim_make_picking_view.xml',
 
59
    'stock_view.xml',
 
60
    'stock_data.xml',
 
61
    'claim_rma_view.xml',
 
62
 ],
 
63
 'installable': True,
 
64
 'application': True,
 
65
}