ItEr44S08ImplantacionAplicacionItEr43S09: Fixing problem moving tasks out of bounds in the planner.
This commit is contained in:
parent
80a7d4fa14
commit
f90e1b84e3
1 changed files with 3 additions and 1 deletions
|
|
@ -204,7 +204,9 @@ public abstract class EarnedValueChartFiller extends ChartFiller {
|
|||
.get(EarnedValueType.EAC);
|
||||
|
||||
for (LocalDate day : bac.keySet()) {
|
||||
vac.put(day, bac.get(day).subtract(eac.get(day)));
|
||||
if (eac.get(day) != null) {
|
||||
vac.put(day, bac.get(day).subtract(eac.get(day)));
|
||||
}
|
||||
}
|
||||
|
||||
indicators.put(EarnedValueType.VAC, vac);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue