Hello experts,
I need to do a validation before saving, whether the selected value does not exceed the maximum allowed. In my case, the selected value is the number of days but only working days and taking into account exceptions
What is the best way to capture this value before saving the record?
I need to do a validation before saving, whether the selected value does not exceed the maximum allowed. In my case, the selected value is the number of days but only working days and taking into account exceptions
What is the best way to capture this value before saving the record?
Code:
$totalWorkingDays = ext\workingTime\getWorkingDays( entity\attribute('dateStartDate'), entity\attribute('dateEndDate'), entity\attribute('assignedUser.workingTimeCalendarId')
Comment