[CLEAN] event_sale: lint / cleaned module, migrated event models to the new API.
[odoo/odoo.git] / addons / event_sale / __openerp__.py
1 # -*- coding: utf-8 -*-
2
3 {
4     'name': 'Events Sales',
5     'version': '1.1',
6     'category': 'Tools',
7     'website': 'https://www.odoo.com/page/events',
8     'description': """
9 Creating registration with sale orders.
10 =======================================
11
12 This module allows you to automate and connect your registration creation with
13 your main sale flow and therefore, to enable the invoicing feature of registrations.
14
15 It defines a new kind of service products that offers you the possibility to
16 choose an event category associated with it. When you encode a sale order for
17 that product, you will be able to choose an existing event of that category and
18 when you confirm your sale order it will automatically create a registration for
19 this event.
20 """,
21     'author': 'OpenERP SA',
22     'depends': ['event', 'sale_crm'],
23     'data': [
24         'views/event.xml',
25         'views/product.xml',
26         'views/sale_order.xml',
27         'event_sale_data.xml',
28         'event_sale_report.xml',
29         'views/report_registrationbadge.xml',
30         'security/ir.model.access.csv',
31     ],
32     'demo': ['event_demo.xml'],
33     'test': ['test/confirm.yml'],
34     'installable': True,
35     'auto_install': True
36 }