mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
* [FIX] Export pricelist * [IMP] Import Reservations * [IMP] Better exception handle * [IMP] Notifiactions * [FIX] Issues [IMP] Notifications * [FIX] Cron Jobs
10 lines
360 B
Python
10 lines
360 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 HotelChannelConnectorDeleter(AbstractComponent):
|
|
_name = 'hotel.channel.deleter'
|
|
_inherit = ['base.deleter', 'base.hotel.channel.connector']
|
|
_usage = 'channel.deleter'
|