From fe11bada81d3c434a220d8bddef1dd156ccb6780 Mon Sep 17 00:00:00 2001 From: Pablo Date: Tue, 19 Feb 2019 10:59:44 +0100 Subject: [PATCH] [FIX] wrong inheritance --- hotel_channel_connector_wubook/models/hotel_room_type/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotel_channel_connector_wubook/models/hotel_room_type/common.py b/hotel_channel_connector_wubook/models/hotel_room_type/common.py index 4f6bc406c..d67bf918f 100644 --- a/hotel_channel_connector_wubook/models/hotel_room_type/common.py +++ b/hotel_channel_connector_wubook/models/hotel_room_type/common.py @@ -30,7 +30,7 @@ class HotelRoomTypeAdapter(Component): class ChannelHotelRoomType(models.Model): - _inherit = 'hotel.room.type' + _inherit = 'channel.hotel.room.type' @api.constrains('min_price', 'max_price') def _check_min_max_price(self):