private JComboBox comboBoxProductAreaGroup;
private List<ProductAreaGroup> areas;
public ExcelReportViewHandlerOwnProduction(ExcelReportEnum excelReportType) {
super(excelReportType,new Dimension(250, 130));
presentationModel = new PresentationModel(new ExcelReportSettingOwnProduction(excelReportType));
ProductAreaGroupManager productAreaGroupManager = (ProductAreaGroupManager) ModelUtil
.getBean("productAreaGroupManager");
areas = productAreaGroupManager.findAll();
}