change cancellation fee from double booking fee to booking fee
This commit is contained in:
@@ -101,7 +101,7 @@ const chargeBookingChanges = (changes) => {
|
||||
const differenceFromCreation = moment.utc().diff(reservationCreationTimestamp, 'minutes');
|
||||
|
||||
if (differenceFromCreation > ALLOWED_BOOKING_CANCELLATION_TIME){
|
||||
const chargeFee = 2 * reservationHourlyRate * oldReservationLength * BOOKING_CHANGE_PERCENTAGE_CHARGE / 100;
|
||||
const chargeFee = reservationHourlyRate * oldReservationLength * BOOKING_CHANGE_PERCENTAGE_CHARGE / 100;
|
||||
const incident = {
|
||||
reservationId,
|
||||
memberId,
|
||||
|
||||
Reference in New Issue
Block a user