From 756f907ac8447076ec95b0f06e66308174c1a273 Mon Sep 17 00:00:00 2001 From: clementthomas Date: Wed, 15 May 2024 10:19:13 +0200 Subject: [PATCH] [NEW] event_sale_configurator_optionnal --- event_sale_configurator_optionnal/__init__.py | 1 + .../__manifest__.py | 15 +++++++++++++++ .../models/__init__.py | 0 .../wizard/__init__.py | 2 ++ .../wizard/event_configurator_views.xml | 19 +++++++++++++++++++ event_speaker/__manifest__.py | 2 -- 6 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 event_sale_configurator_optionnal/__init__.py create mode 100644 event_sale_configurator_optionnal/__manifest__.py create mode 100644 event_sale_configurator_optionnal/models/__init__.py create mode 100644 event_sale_configurator_optionnal/wizard/__init__.py create mode 100644 event_sale_configurator_optionnal/wizard/event_configurator_views.xml diff --git a/event_sale_configurator_optionnal/__init__.py b/event_sale_configurator_optionnal/__init__.py new file mode 100644 index 0000000..9a7e03e --- /dev/null +++ b/event_sale_configurator_optionnal/__init__.py @@ -0,0 +1 @@ +from . import models \ No newline at end of file diff --git a/event_sale_configurator_optionnal/__manifest__.py b/event_sale_configurator_optionnal/__manifest__.py new file mode 100644 index 0000000..4c9016d --- /dev/null +++ b/event_sale_configurator_optionnal/__manifest__.py @@ -0,0 +1,15 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +{ + "name": "event_sale_configurator_optionnal", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "Elabore", + "website": "https://www.elabore.coop", + "category": "", + "depends": ["event_sale"], + "data": [ + 'wizard/event_configurator_views.xml', + ], + "installable": True, +} diff --git a/event_sale_configurator_optionnal/models/__init__.py b/event_sale_configurator_optionnal/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/event_sale_configurator_optionnal/wizard/__init__.py b/event_sale_configurator_optionnal/wizard/__init__.py new file mode 100644 index 0000000..b2eda10 --- /dev/null +++ b/event_sale_configurator_optionnal/wizard/__init__.py @@ -0,0 +1,2 @@ +from . import event_edit_registration +from . import event_configurator diff --git a/event_sale_configurator_optionnal/wizard/event_configurator_views.xml b/event_sale_configurator_optionnal/wizard/event_configurator_views.xml new file mode 100644 index 0000000..b40fe8d --- /dev/null +++ b/event_sale_configurator_optionnal/wizard/event_configurator_views.xml @@ -0,0 +1,19 @@ + + + + + + event.configurator.view.form.event.sale.configurator.optionnal + event.event.configurator + + + + 0 + + + 0 + + + + + diff --git a/event_speaker/__manifest__.py b/event_speaker/__manifest__.py index ee19384..d9ac20d 100644 --- a/event_speaker/__manifest__.py +++ b/event_speaker/__manifest__.py @@ -1,5 +1,3 @@ -# Copyright 2016-2020 Akretion France () -# @author: Alexis de Lattre # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). {