[IMP] event_sale: extra QWeb report for printing event badges, with HTML fields for...
[odoo/odoo.git] / addons / event_sale / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (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 Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22
23 {
24     'name': 'Events Sales',
25     'version': '0.1',
26     'category': 'Tools',
27     'description': """
28 Creating registration with sale orders.
29 =======================================
30
31 This module allows you to automate and connect your registration creation with
32 your main sale flow and therefore, to enable the invoicing feature of registrations.
33
34 It defines a new kind of service products that offers you the possibility to
35 choose an event category associated with it. When you encode a sale order for
36 that product, you will be able to choose an existing event of that category and
37 when you confirm your sale order it will automatically create a registration for
38 this event.
39 """,
40     'author': 'OpenERP SA',
41     'depends': ['event', 'sale_crm'],
42     'data': [
43         'event_sale_view.xml',
44         'event_sale_data.xml',
45         'event_sale_report.xml',
46         'views/report_registrationbadge.xml',
47         'security/ir.model.access.csv',
48     ],
49     'demo': ['event_demo.xml'],
50     'test': ['test/confirm.yml'],
51     'installable': True,
52     'auto_install': True
53 }
54 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: