Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pms/models/pms_reservation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2500,7 +2500,7 @@ def preview_reservation(self):
def _compute_tourist_tax_lines(self):
"""Return ORM commands to sync tourist tax services on this reservation."""
self.ensure_one()
if self.reservation_type != "normal":
if self.reservation_type != "normal" or not self.overnight_room:
return False
tax_products = self._get_tourist_tax_products(
pms_property_id=self.pms_property_id.id
Expand Down