Home      Ask a Question      My Stuff      Help   
  
TimeWorks Plus - Adding a Split to the Last Day of the Pay Period
In TimeWorks Plus clients will request having cut off times for their pay periods other than the last OUT time on the last day of the pay period. We can accommodate this by splitting worked time per what the client wants for the end of the pay period using a split script under Settings Menu > Processing Rules > SplitPostReportingDateScript.

Here is an example using 8:00pm as our cut off time for the last day of the pay period. Meaning any worked time AFTER 8:00pm will be considered part of the following pay period.


if (reportingdate.date = reportingdate.payperiodend) {
split(8:00pm,true,false);
}

This 8:00pm as seen in the above script can be adjusted to any time the client would require just by changing the time. Here is another example for 11:00pm:


if (reportingdate.date = reportingdate.payperiodend) {
split(11:00pm,true,false);
}

ID
1620
Category
>Support
  Scripting
Date Created
8/24/2015 7:04:57 AM
Date Updated
8/24/2015 7:12:30 AM
Back to Search Results