mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
17 lines
539 B
Python
17 lines
539 B
Python
# Copyright 2018 Alexandre Díaz <dev@redneboa.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo.addons.component.core import AbstractComponent
|
|
|
|
|
|
class ChannelImportMapper(AbstractComponent):
|
|
_name = 'channel.import.mapper'
|
|
_inherit = ['base.hotel.channel.connector', 'base.import.mapper']
|
|
_usage = 'import.mapper'
|
|
|
|
|
|
class ChannelExportMapper(AbstractComponent):
|
|
_name = 'channel.export.mapper'
|
|
_inherit = ['base.hotel.channel.connector', 'base.export.mapper']
|
|
_usage = 'export.mapper'
|