Merged in feat/SW-2078-update-confirmation-page-vouchers (pull request #1731)

Feat/SW-2078 update confirmation page vouchers and Corp Cheques rate

* feat: SW-2078 Tablet bookingCode ref forward issue fix

(cherry picked from commit 16a6a00fd99b6b6220a98ad74de062d67d35e1c0)

* feat: SW-2078 Display Vouchers and Cheques prices on confirmation page

(cherry picked from commit a76494de497a7d5e7641cb0036bd7055acf875c1)

* feat: SW-2078 Rebase issue fix

* feat: SW-2079 Updated rate title in terms modal

* feat: SW-2078 Optimized code

* feat: SW-2078 Removed extra tags


Approved-by: Christian Andolf
This commit is contained in:
Hrishikesh Vaipurkar
2025-04-08 07:27:40 +00:00
parent c56a0b8ce9
commit 73cb423c95
26 changed files with 300 additions and 143 deletions

View File

@@ -32,6 +32,20 @@ export function mapRoomState(
booking.totalPrice,
booking.currencyCode
)
} else if (booking.cheques) {
formattedTotalCost = formatPrice(
intl,
booking.cheques,
CurrencyEnum.CC,
booking.totalPrice,
booking.currencyCode
)
} else if (booking.vouchers) {
formattedTotalCost = formatPrice(
intl,
booking.vouchers,
CurrencyEnum.Voucher
)
}
return {
@@ -39,7 +53,7 @@ export function mapRoomState(
bedDescription: room.bedType.description,
breakfast,
breakfastIncluded,
children: booking.childrenAges.length,
cheques: booking.cheques,
childrenAges: booking.childrenAges,
childBedPreferences: booking.childBedPreferences,
confirmationNumber: booking.confirmationNumber,
@@ -57,5 +71,6 @@ export function mapRoomState(
totalPrice: booking.totalPrice,
totalPriceExVat: booking.totalPriceExVat,
vatAmount: booking.vatAmount,
vouchers: booking.vouchers,
}
}