[NEW] event_sequence

This commit is contained in:
clementthomas
2024-03-05 20:53:02 +01:00
parent cd521abcfe
commit 0d58b2db0b
12 changed files with 255 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from odoo import _, api, Command, fields, models
from lxml import etree, html
from odoo.tools import format_time
class EventEvent(models.Model):
_inherit = "event.event"
sequence_number = fields.Integer('Number of sequences', default="5")
current_sequence_id = fields.Many2one('event.sequence', 'Current sequence')