New constraints: earlyStart
, lateStart
, earlyFinish
, lateFinish
#2
Labels
enhancement
New feature or request
earlyStart
, lateStart
, earlyFinish
, lateFinish
#2
It might be useful to have some business time constraints along the lines of
earlyStart
,lateStart
,earlyFinish
,lateFinish
.These would take an exact timestamp, i.e. for a single date and time only, and act as a constraint accordingly.
E.g.
new earlyFinish('2019-07-03 13:00')
rejects any time after 13:00 but only on 2019-07-03. Similar logic for the other three.This would make it more natural to add single adjustments to start and finish times.
Currently you'd have to do something like
new NotConstraint(new Dates('2019-07-03').andAlso(new BetweenHoursOfDay('13', '00')))
which works OK but is not intuitive at all.The text was updated successfully, but these errors were encountered: