mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
Merge branch '11.0' of https://github.com/hootel/hootel into 11.0
This commit is contained in:
@@ -297,6 +297,18 @@ class HotelReservationImporter(Component):
|
||||
# Force an update with the correct availability
|
||||
channel_availability.push_availability(binding.backend_id)
|
||||
|
||||
def _force_update_availability_wubook(self, binding):
|
||||
# WuBook always add +1 in the channel manager for cancelled reservation
|
||||
# However, the quota in Odoo has preference in the availability
|
||||
cancelled_dates = binding.reservation_line_ids.mapped('date')
|
||||
channel_availability = self.env['channel.hotel.room.type.availability'].search([
|
||||
('backend_id', '=', binding.backend_id.id),
|
||||
('date', 'in', cancelled_dates)
|
||||
])
|
||||
channel_availability.write({'channel_pushed': False})
|
||||
# Force an update with the correct availability
|
||||
channel_availability.push_availability(binding.backend_id)
|
||||
|
||||
def _update_reservation_binding(self, binding, book):
|
||||
is_cancellation = book['status'] in WUBOOK_STATUS_BAD
|
||||
binding.with_context({'connector_no_export': True}).write({
|
||||
|
||||
Reference in New Issue
Block a user