[Bug #838] Fix bug
Allow again to grow the allocation so the original number of hours is respected. FEA: ItEr70S04BugFixing
This commit is contained in:
parent
36baa57baa
commit
fc02c28e91
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ public class SigmoidFunction extends AssignmentFunction {
|
|||
LocalDate day, int hours) {
|
||||
final LocalDate nextDay = day.plusDays(1);
|
||||
resourceAllocation.withPreviousAssociatedResources()
|
||||
.onIntervalWithinTask(day, nextDay).allocateHours(hours);
|
||||
.onInterval(day, nextDay).allocateHours(hours);
|
||||
}
|
||||
|
||||
private BigDecimal[] roundValues(BigDecimal[] allocatedHoursPerDay,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue