~ecommerce-addons-core-editors/e-commerce-addons/github-6.1

« back to all changes in this revision

Viewing changes to sale_exceptions/__openerp__.py

  • Committer: Maxime Chambreuil
  • Author(s): Sébastien Beau
  • Date: 2013-06-21 12:13:42 UTC
  • mfrom: (281.2.6)
  • Revision ID: git-v1:7bc62a678df102e0751b58c6a34d236af723ebd0
[MERGE] Add the posibility to send on email when an order have an exception

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
##############################################################################
3
 
#    
 
3
#
4
4
#    OpenERP, Open Source Management Solution
5
5
#    Copyright (C) 2011 Akretion LTDA.
6
6
#    authors: Raphaël Valyi, Renato Lima
18
18
#    GNU Affero General Public License for more details.
19
19
#
20
20
#    You should have received a copy of the GNU Affero General Public License
21
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
 
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
#
23
23
##############################################################################
24
24
 
25
25
 
26
26
{
27
27
    'name': 'Sale Exceptions',
28
 
    'version': '6.1.0',
 
28
    'version': '2.0',
29
29
    'category': 'Generic Modules/Sale',
30
30
    'description': """
31
31
This module allows you attach several customizable exceptions to your sale order in a way that you can filter orders by exceptions type and fix them.
33
33
""",
34
34
    'author': 'Akretion',
35
35
    'website': 'http://www.akretion.com',
36
 
    'depends': ['sale'],
 
36
    'depends': [
 
37
        'sale',
 
38
        'email_template'
 
39
    ],
37
40
    'init_xml': [
38
41
                   'settings/sale.exception.csv',
39
42
                ],
41
44
                   'sale_view.xml',
42
45
                   'sale_exceptions_data.xml',
43
46
                   'wizard/sale_exception_confirm_view.xml',
44
 
                   'security/ir.model.access.csv'],
 
47
                   'security/ir.model.access.csv',
 
48
                   'sale_exceptions_mail_template.xml',
 
49
                   ],
45
50
    'demo_xml': [],
46
51
    'installable': True,
47
52
}