Merge branch 'fix-change-charge-bugs' into 'master'
Fix change charge bugs See merge request saburly/psihologija!33
This commit was merged in pull request #33.
This commit is contained in:
@@ -104,7 +104,8 @@ const UNSCHEDULED_CHARGE_PRICE = parseFloat(process.env.UNSCHEDULED_USE_CHARGE_P
|
||||
|
||||
const BOOKING_CHANGE_PERCENTAGE_CHARGE = parseInt(process.env.BOOKING_CHANGE_PERCENTAGE_CHARGE) || 100;
|
||||
|
||||
const ALLOWED_BOOKING_CANCELLATION_TIME= parseInt(process.env.ALLOWED_BOOKING_CANCELLATION_TIME) || 30;
|
||||
const CHARGE_BOOKING_CHANGE_UNDER_TIME = parseInt(process.env.CHARGE_BOOKING_CHANGE_UNDER_TIME) || 1430;
|
||||
const ALLOWED_BOOKING_CANCELLATION_TIME = parseInt(process.env.ALLOWED_BOOKING_CANCELLATION_TIME) || 30;
|
||||
|
||||
module.exports = {
|
||||
VALID_CSV_HEADERS,
|
||||
@@ -124,5 +125,6 @@ module.exports = {
|
||||
UNSCHEDULED_TIME_RESOLUTION,
|
||||
UNSCHEDULED_CHARGE_PRICE,
|
||||
BOOKING_CHANGE_PERCENTAGE_CHARGE,
|
||||
CHARGE_BOOKING_CHANGE_UNDER_TIME,
|
||||
ALLOWED_BOOKING_CANCELLATION_TIME,
|
||||
};
|
||||
|
||||
@@ -21,6 +21,7 @@ UNLOCK_STREAK_REPAIR_AFTER=Number of months without incidents to reset user inci
|
||||
|
||||
BOOKING_CHANGE_PERCENTAGE_CHARGE=Percentage of hourly reate to apply for cancellation-like charges
|
||||
|
||||
CHARGE_BOOKING_CHANGE_UNDER_TIME=Time to booking start when booking change will be charged (in minutes) [Default is 1430 = 24*60 - 10; that is 24hrs - 10 minutes for booking change tracking cycle]
|
||||
ALLOWED_BOOKING_CANCELLATION_TIME=Time from creation (in minutes) in which cancellation is not charged
|
||||
|
||||
SEQUELIZE_LOGGING=0 - false, 1 - true (console logging)
|
||||
|
||||
@@ -4,7 +4,13 @@ const moment = require('moment-timezone');
|
||||
const db = require('../../models/index');
|
||||
const Op = require('sequelize').Op;
|
||||
|
||||
const { UI_TIMEZONE, BOOKING_CHANGE_PERCENTAGE_CHARGE, ALLOWED_BOOKING_CANCELLATION_TIME, incidentType } = require('../../constants/constants');
|
||||
const {
|
||||
UI_TIMEZONE,
|
||||
BOOKING_CHANGE_PERCENTAGE_CHARGE,
|
||||
CHARGE_BOOKING_CHANGE_UNDER_TIME,
|
||||
ALLOWED_BOOKING_CANCELLATION_TIME,
|
||||
incidentType
|
||||
} = require('../../constants/constants');
|
||||
|
||||
const bulkWriteBookingChangeIncidents = (incidents) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
@@ -44,10 +50,9 @@ const chargeBookingChanges = (changes) => {
|
||||
const oldReservationLength = oldEnd.diff(oldStart, 'hours', true);
|
||||
const newReservationLength = newEnd.diff(newStart, 'hours', true);
|
||||
|
||||
const differenceFromNow = oldStart.diff(moment.utc(), 'hours');
|
||||
const differenceFromNow = oldStart.diff(moment.utc(), 'minutes');
|
||||
|
||||
if (differenceFromNow < 24){
|
||||
// Changed reservation that was within 24hrs from now
|
||||
if (differenceFromNow < CHARGE_BOOKING_CHANGE_UNDER_TIME){
|
||||
const { reservationId, memberId, resourceId } = newReservation;
|
||||
|
||||
if (!canceled) {
|
||||
@@ -101,7 +106,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