X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fpos_loyalty%2F__openerp__.py;fp=addons%2Fpos_loyalty%2F__openerp__.py;h=db12d334c10e54d4e168f548024fd37dbd4ee6f7;hb=dc560a4dd0b6c109eede6b30c02ae4b34ca77c38;hp=0000000000000000000000000000000000000000;hpb=b5164698f255633e68e6c3b75f30eae8492326dc;p=odoo%2Fodoo.git diff --git a/addons/pos_loyalty/__openerp__.py b/addons/pos_loyalty/__openerp__.py new file mode 100644 index 0000000..db12d33 --- /dev/null +++ b/addons/pos_loyalty/__openerp__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +{ + 'name': 'Loyalty Program', + 'version': '1.0', + 'category': 'Point of Sale', + 'sequence': 6, + 'summary': 'Loyalty Program for the Point of Sale ', + 'description': """ + +======================= + +This module allows you to define a loyalty program in +the point of sale, where the customers earn loyalty points +and get rewards. + +""", + 'author': 'OpenERP SA', + 'depends': ['point_of_sale'], + 'data': [ + 'views/views.xml', + 'security/ir.model.access.csv', + 'views/templates.xml' + ], + 'qweb': ['static/src/xml/loyalty.xml'], + 'installable': True, + 'auto_install': False, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: