Break Rule Details
Example
Break minutes are additive. If employees earn a 10 minute paid break for every 4 hours worked, the rules should be defined as follows:
- "Hours Worked >" = '4', "Minutes" = '10'.
- "Hours Worked >" = '8', "Minutes" = '10'.
- "Hours Worked >" = '12', "Minutes" = '10'.
The application will calculate a total of 30 paid break minutes for one 12-hour shift.
If the rules are defined as follows, the application will calculate a total of 60 paid break minutes for one 12-hour shift:
- "Hours Worked >" = '4', "Minutes" = '10'.
- "Hours Worked >" = '8', "Minutes" = '20'.
- "Hours Worked >" = '12', "Minutes" = '30'.