summaryrefslogtreecommitdiff
path: root/addons/event_sale/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/event_sale/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/event_sale/__manifest__.py')
-rw-r--r--addons/event_sale/__manifest__.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/addons/event_sale/__manifest__.py b/addons/event_sale/__manifest__.py
new file mode 100644
index 00000000..5714ecb8
--- /dev/null
+++ b/addons/event_sale/__manifest__.py
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+
+{
+ 'name': 'Events Sales',
+ 'version': '1.2',
+ 'category': 'Marketing/Events',
+ '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/assets.xml',
+ 'views/event_ticket_views.xml',
+ 'views/event_registration_views.xml',
+ 'views/event_views.xml',
+ 'views/product_views.xml',
+ 'views/sale_order_views.xml',
+ 'data/event_sale_data.xml',
+ 'data/mail_data.xml',
+ 'report/event_event_templates.xml',
+ 'security/ir.model.access.csv',
+ 'security/event_security.xml',
+ 'wizard/event_edit_registration.xml',
+ 'wizard/event_configurator_views.xml',
+ ],
+ 'demo': ['data/event_demo.xml'],
+ 'installable': True,
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}