Home      Ask a Question      My Stuff      Help   
  
TimeWorks: Scripting - Holiday Worked
Most of this information can also be accomplished by following the Knowledge Base article ID: 62 Scripting - Holiday Worked Feature. All this article does is allows you to customize the script more than those outlined in the previous article.

To script manually for holidays worked you would follow the below script:

if (isholiday and istimes = true)
{
category = "HolidayWorked";
}

You can also edit the above script to include an alternate payrate as below:

if (isholiday and istimes = true)
{
category = "HolidayWorked";
payrate = payrate * 1.75;
}

The above script says if an employee worked on a holiday recognized by the system he would get his regular payrate plus an additional 75% of his regular payrate.

ID
177
Category
Training
  FAQ's
Date Created
1/14/2008 2:04:57 PM
Date Updated
8/13/2014 3:03:54 PM
Back to Search Results