* @see no.ugland.utransprod.util.excel.ExcelManager#
* getReportDataMap(no.ugland.utransprod.util.excel.ExcelReportSetting)
*/
public final Map<Object, Object> getReportDataMap(
final ExcelReportSetting params) {
ExcelReportSettingDeviation paramsDeviation = (ExcelReportSettingDeviation) params;
Map<Object, Object> map = new Hashtable<Object, Object>();
// Avvik gjeldende periode
setDeviationForPeriode(paramsDeviation.getYear(), paramsDeviation
.getMonthEnum().getMonth(), paramsDeviation.getProductArea()
.getProductArea(), map,"Period");
// Avvik totalt hittil
setDeviationTotal(paramsDeviation, map);
// Avvik i fjor samme periode
setDeviationForPeriode(paramsDeviation.getYear() - 1, paramsDeviation
.getMonthEnum().getMonth(), paramsDeviation.getProductArea()
.getProductArea(), map,"LastYear");
// �pne tiltak
setOpenPreventiveActions(map);