website_event_exhibitor/models/website_event_menu.py

13 lines
338 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class EventMenu(models.Model):
_inherit = "website.event.menu"
menu_type = fields.Selection(
selection_add=[('exhibitor', 'Exhibitors Menus')],
ondelete={'exhibitor': 'cascade'})