~zikzak/oosalespromotions/sale_promotions

« back to all changes in this revision

Viewing changes to __terp__.py

  • Committer: Raimon Esteve
  • Date: 2011-11-30 12:17:48 UTC
  • Revision ID: resteve@zikzakmedia.com-20111130121748-56o3gxfxw4q9quxh
[IMP] Security Rules [FIX] Promo Rule. Coupon Code required

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
#    OpenERP, Open Source Management Solution    
5
 
#    Copyright (C) 2010, Open Labs Business Solution
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU General Public License as published by
9
 
#    the Free Software Foundation, either version 3 of the License, or
10
 
#    (at your option) any later version.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
#
20
 
##############################################################################
21
 
 
22
 
{
23
 
    'name' : 'Promotions for Open ERP',
24
 
    'version' : '0.1',
25
 
    'author' : 'Open Labs Business Solutions',
26
 
    'website': 'http://openlabs.co.in',
27
 
    'category' : 'Generic Modules/Sales & Purchases',
28
 
    'depends' : [
29
 
                 "base",
30
 
                 "sale",
31
 
                 ],
32
 
    'init_xml' : [],
33
 
    'demo_xml' : [],
34
 
    'description': """
35
 
    Promotions on Sale Order for Open ERP
36
 
    = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
37
 
    Features:
38
 
    1. Promotions based on conditions and coupons
39
 
    2. Web services API compliance
40
 
    
41
 
    Credits:
42
 
        This design is based/inspired by the Magento commerce
43
 
        Special Thanks to Yannick Buron for analysis
44
 
    """,
45
 
    'update_xml': [
46
 
        'security/ir.model.access.csv',
47
 
        'views/rule.xml',
48
 
        'views/sale.xml',
49
 
                ],
50
 
    'installable': True,
51
 
    'active': False,
52
 
}