mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-21 13:52:06 +02:00
15 lines
471 B
Python
15 lines
471 B
Python
# Copyright 2014 Tecnativa S.L. - Pedro M. Baeza
|
|
# Copyright 2015 Tecnativa S.L. - Javier Iniesta
|
|
# Copyright 2016 Tecnativa S.L. - Antonio Espinosa
|
|
# Copyright 2016 Tecnativa S.L. - Vicent Cubells
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class EventEvent(models.Model):
|
|
_inherit = "event.event"
|
|
|
|
create_partner = fields.Boolean(
|
|
string="Create Partners in registration", default=False
|
|
)
|