Skip to content
Advertisement

calculating sla based on minutes on working hours and business days

I am trying to build a function which calculates ticket sla based on working hours and skip calculations for non working hours and weekends and it shifts time accordingly to next day or to next working day. My response sla to a ticket is 30 minutes and if ticket insert date is within weekdays {Mon-Fri} and within business hours {08:00:00 – 17:00:00}, then my end date should be calculated based on following factors:

  1. for Monday to Thursday, time should shift to next 30 minutes in working hours in case insertDate falls within working hours, e.g. if case1: insertDate = ‘2020-07-16 16:00:00′; here, I am getting expected result, endDate =’2020-07-16 16:30:00’; and if insertDate timestamp exceeds the working hours window e.g. if case2: insertDate = ‘2020-07-16 16:50:00′; here, I am not getting expected result, which should be endDate =’2020-07-17 08:20:00’;
  2. for Weekends(Sat to Sun), any ticket created in this weekend window, the calculations should start from Mon and from 08:00:00 hours case3: insertDate = ‘2020-07-18 16:50:00′; here, I am not getting expected result, which should be endDate =’2020-07-20 08:30:00’;

Below is my code, which works for case1 fine, ubt breaks for case2 and case3, any help on this is highly appreciated.

JavaScript

Advertisement

Answer

I will post my version of the function. You pass the DateTime of ticket submission and get the DateTime of the allowed response.

JavaScript

And the code i used to test this function with different conditions:

JavaScript

The output:

JavaScript

Tricky part was friday that You didnt really mention, but I added test cases for it.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement