769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
'name': 'Events Sales',
|
|
'version': '1.1',
|
|
'category': 'Marketing',
|
|
'website': 'https://www.odoo.com/page/events',
|
|
'description': """
|
|
Creating registration with sales orders.
|
|
========================================
|
|
|
|
This module allows you to automate and connect your registration creation with
|
|
your main sale flow and therefore, to enable the invoicing feature of registrations.
|
|
|
|
It defines a new kind of service products that offers you the possibility to
|
|
choose an event category associated with it. When you encode a sales order for
|
|
that product, you will be able to choose an existing event of that category and
|
|
when you confirm your sales order it will automatically create a registration for
|
|
this event.
|
|
""",
|
|
'depends': ['event', 'sale_management'],
|
|
'data': [
|
|
'views/event_views.xml',
|
|
'views/product_views.xml',
|
|
'views/sale_order_views.xml',
|
|
'data/event_sale_data.xml',
|
|
'report/event_event_templates.xml',
|
|
'security/ir.model.access.csv',
|
|
'wizard/event_edit_registration.xml',
|
|
],
|
|
'demo': ['data/event_demo.xml'],
|
|
'installable': True,
|
|
'auto_install': True
|
|
}
|