ItEr59S04ValidacionEProbasFuncionaisItEr58S04: [Bug #480]. Fixed bug, if consolidated date is equals to task end date it is needed to reallocate tasks after the supposed end date.
This commit is contained in:
parent
515e9e889f
commit
988bdc55bb
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ public class AdvanceConsolidationModel implements IAdvanceConsolidationModel {
|
|||
resourceAllocation
|
||||
.setOnDayAssignmentRemoval(new DetachDayAssignmentOnRemoval());
|
||||
|
||||
if (value.getDate().compareTo(endExclusive) > 0) {
|
||||
if (value.getDate().compareTo(endExclusive.minusDays(1)) >= 0) {
|
||||
LocalDate date = ResourceAllocation.allocating(
|
||||
Arrays.asList(resourceAllocation
|
||||
.asResourcesPerDayModification()))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue