~openerprma/openerp-rma/6.0

« back to all changes in this revision

Viewing changes to crm_claim_rma/__openerp__.py

  • Committer: manu
  • Date: 2011-10-12 13:01:59 UTC
  • Revision ID: esamyn@gmail.com-20111012130159-ovdwe94br734fc06
[INIT] crm_claim_rma & product_warranty

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#########################################################################
 
3
#                                                                       #
 
4
#                                                                       #
 
5
#########################################################################
 
6
#                                                                       #
 
7
# Copyright (C) 2009-2011  Akretion, Raphaël Valyi, Sébastien Beau,     #
 
8
# Emmanuel Samyn                                                        #
 
9
#                                                                       #
 
10
#This program is free software: you can redistribute it and/or modify   #
 
11
#it under the terms of the GNU General Public License as published by   #
 
12
#the Free Software Foundation, either version 3 of the License, or      #
 
13
#(at your option) any later version.                                    #
 
14
#                                                                       #
 
15
#This program is distributed in the hope that it will be useful,        #
 
16
#but WITHOUT ANY WARRANTY; without even the implied warranty of         #
 
17
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          #
 
18
#GNU General Public License for more details.                           #
 
19
#                                                                       #
 
20
#You should have received a copy of the GNU General Public License      #
 
21
#along with this program.  If not, see <http://www.gnu.org/licenses/>.  #
 
22
#########################################################################
 
23
 
 
24
 
 
25
{
 
26
    'name': 'CRM Product Return',
 
27
    'version': '1.0',
 
28
    'category': 'Generic Modules/CRM & SRM',
 
29
    'description': """
 
30
Add product return functionalities, product exchange and aftersale outsourcing to CRM claim
 
31
    """,
 
32
    'author': 'Akretion - Emmanuel Samyn',
 
33
    'website': 'http://www.akretion.com',
 
34
    'depends': ['sale','stock','crm_claim'],
 
35
    'init_xml': ['rma_substate_data.xml',],
 
36
    'update_xml': [
 
37
                'wizard/returned_lines_from_serial_wizard_view.xml',
 
38
                'wizard/returned_lines_from_invoice_wizard_view.xml',
 
39
                'wizard/picking_from_returned_lines_wizard_view.xml',
 
40
                'wizard/refund_from_returned_lines_wizard_view.xml',
 
41
                'wizard/exchange_from_returned_lines_wizard_view.xml',
 
42
                'wizard/picking_from_exchange_lines_wizard_view.xml',
 
43
                'wizard/get_empty_serial_view.xml',
 
44
                'crm_claim_rma_view.xml',
 
45
                
 
46
 
 
47
#        'security/ir.model.access.csv',
 
48
 #       'report/crm_claim_report_view.xml',
 
49
    ],
 
50
    'demo_xml': [
 
51
 #       'crm_claim_demo.xml',
 
52
    ], 
 
53
#    'test': ['test/test_crm_claim.yml'], 
 
54
    'installable': True,
 
55
    'active': False,
 
56
}
 
57
 
 
58
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: