Periode periode = new Periode(2010, 5, 5);
Collection<SalesmanGoal> salesGoalList = salesVManager.getSalesGoalList(periode);
ExcelUtil.setUseUniqueFileName(false);
ExcelUtil excelUtil=new ExcelUtil();
ExcelReportSetting reportSetting=new ExcelReportSetting(ExcelReportEnum.SALES_GOAL);
reportSetting.setYear(2010);
reportSetting.setWeekFrom(5);
reportSetting.setWeekTo(5);
Map<Object,Object> data=Maps.newHashMap();
data.put("Reportdata", salesGoalList);
excelUtil.generateSalesGoalReport(reportSetting, data);
ExcelUtil excelUtilReader=new ExcelUtil();