Merged in SW-2728-mystay-totalpoints (pull request #2201)
fix(SW-2728): add totalpoints to mystay * fix(2728): add totalpoints to mystay * fix(SW-2728): add totalPoints everywhere Approved-by: Anton Gunnarsson
This commit is contained in:
@@ -46,7 +46,7 @@ export default function Room({ booking, roomNr, user }: RoomProps) {
|
||||
rateDefinition,
|
||||
room,
|
||||
roomName,
|
||||
roomPoints,
|
||||
totalPoints,
|
||||
isCancelled,
|
||||
priceType,
|
||||
vouchers,
|
||||
@@ -279,7 +279,7 @@ export default function Room({ booking, roomNr, user }: RoomProps) {
|
||||
currencyCode={currencyCode}
|
||||
priceType={priceType}
|
||||
rateDefinition={rateDefinition}
|
||||
roomPoints={roomPoints}
|
||||
totalPoints={totalPoints}
|
||||
totalPrice={totalPrice}
|
||||
vouchers={vouchers}
|
||||
/>
|
||||
|
||||
@@ -21,7 +21,7 @@ export default function PriceDetails() {
|
||||
packages: state.bookedRoom.packages,
|
||||
priceType: state.bookedRoom.priceType,
|
||||
rateDefinition: state.bookedRoom.rateDefinition,
|
||||
roomPoints: state.bookedRoom.roomPoints,
|
||||
totalPoints: state.bookedRoom.totalPoints,
|
||||
totalPrice: state.bookedRoom.totalPrice,
|
||||
vouchers: state.bookedRoom.vouchers,
|
||||
}))
|
||||
|
||||
@@ -32,7 +32,7 @@ export default function TotalPrice() {
|
||||
currencyCode={bookedRoom.currencyCode}
|
||||
priceType={bookedRoom.priceType}
|
||||
rateDefinition={bookedRoom.rateDefinition}
|
||||
roomPoints={totalPoints}
|
||||
totalPoints={totalPoints}
|
||||
totalPrice={totalPrice}
|
||||
vouchers={bookedRoom.vouchers}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user