mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
18 lines
546 B
Python
18 lines
546 B
Python
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields, api
|
|
from odoo.addons.queue_job.job import job
|
|
|
|
|
|
class ChannelBinding(models.AbstractModel):
|
|
_name = 'channel.binding'
|
|
_inherit = 'external.binding'
|
|
_description = 'Hotel Channel Connector Binding (abstract)'
|
|
|
|
backend_id = fields.Many2one(
|
|
comodel_name='channel.backend',
|
|
string='Hotel Channel Connector Backend',
|
|
required=True,
|
|
ondelete='restrict')
|