Bug #1334: Prevent the accumulation of the values when building the BCWP chart.

FEA: ItEr76S04BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2012-01-12 14:14:30 +01:00
parent f389d42c2e
commit 70853e7129
2 changed files with 0 additions and 2 deletions

View file

@ -832,7 +832,6 @@ public class CompanyPlanningModel implements ICompanyPlanningModel {
addCost(advanceCost, advanceCostPerTask.get(taskElement));
}
advanceCost = accumulateResult(advanceCost);
addZeroBeforeTheFirstValue(advanceCost);
indicators.put(EarnedValueType.BCWP, calculatedValueForEveryDay(
advanceCost, interval.getStart(), interval.getFinish()));

View file

@ -1356,7 +1356,6 @@ public class OrderPlanningModel implements IOrderPlanningModel {
}
}
advanceCost = accumulateResult(advanceCost);
addZeroBeforeTheFirstValue(advanceCost);
indicators.put(EarnedValueType.BCWP, calculatedValueForEveryDay(
advanceCost, interval.getStart(), interval.getFinish()));