[NEW] event_sale_configurator_optionnal

This commit is contained in:
clementthomas
2024-05-15 10:19:13 +02:00
parent 6fa6da522a
commit 756f907ac8
6 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1 @@
from . import models

View File

@@ -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,
}

View File

@@ -0,0 +1,2 @@
from . import event_edit_registration
from . import event_configurator

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="event_configurator_view_form_event_sale_configurator_optionnal" model="ir.ui.view">
<field name="name">event.configurator.view.form.event.sale.configurator.optionnal</field>
<field name="model">event.event.configurator</field>
<field name="inherit_id" ref="event_sale.event_configurator_view_form" />
<field name="arch" type="xml">
<field name="event_id" position="attributes">
<attribute name="required">0</attribute>
</field>
<field name="event_ticket_id" position="attributes">
<attribute name="required">0</attribute>
</field>
</field>
</record>
</odoo>

View File

@@ -1,5 +1,3 @@
# Copyright 2016-2020 Akretion France (<https://www.akretion.com>)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{