Skip to end of banner
Go to start of banner

getWorkingInterval

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8? Click here and leave these dusty old pages behind!

Availability

This routine is available starting with SIL Engine™ 2.5.

Syntax

getWorkingInterval(startDate, endDate, startWorkingHour, endWorkingHour, weekendDays, holidays)

Description


Returns the number of working hours from a time interval.

Parameters

ParameterTypeRequiredDescription
startDateDateYesStart working date.
endDateDateYesEnd working date.
startWorkingHourStringYesDaily start working hour (HH:mm).
endWorkingHourStringYesDaily end working hour (HH:mm).
weekendDaysNumber arrayYesWeekend days (day of week).
holidaysDate arrayYesDates of the free days.

Return type

number

The returned number represents the working hours from the given time interval.

Example

number hours;
date startDate = "2012-01-10 12:00:00";
date endDate = "2012-01-20 10:30:00";
string startHour = "09:00";
string endHour = "17:00";
number[] weekend = {7, 1};
date[] holidays = {"2012-01-18", "2012-01-16"};

hours = getWorkingInterval(startDate, endDate, startHour, endHour, weekend, holidays);

Returns the number of working hours from 2012-01-10 12:00 to 2012-01-20 10:30, excluding the weekends (7 is Saturday and 1 is Sunday) and holidays (2012-01-18 and 2012-01-16).

 

See also


  • No labels