use of org.springframework.web.servlet.ModelAndView in project head by mifos.
the class AccountingDataController method confirmExportsDelete.
@RequestMapping("confirmExportsDelete.ftl")
public final ModelAndView confirmExportsDelete() {
ModelAndView mav = new ModelAndView("confirmExportsDelete");
List<BreadCrumbsLinks> breadcrumbs = new AdminBreadcrumbBuilder().withLink("accounting.viewaccountingexports", "confirmExportsDelete.ftl").build();
mav.addObject("breadcrumbs", breadcrumbs);
return mav;
}
use of org.springframework.web.servlet.ModelAndView in project head by mifos.
the class AccountingDataController method showAccountingDataFor.
@RequestMapping("renderAccountingData.ftl")
public final ModelAndView showAccountingDataFor(@RequestParam(value = FROM_DATE) String paramFromDate, @RequestParam(value = TO_DATE) String paramToDate) {
DateTimeFormatter fmt = DateTimeFormat.forPattern("yyyy-MM-dd");
LocalDate fromDate = fmt.parseDateTime(paramFromDate).toLocalDate();
LocalDate toDate = fmt.parseDateTime(paramToDate).toLocalDate();
Boolean hasAlreadyRanQuery = Boolean.FALSE;
String fileName = null;
List<AccountingDto> accountingData = new ArrayList<AccountingDto>();
try {
fileName = accountingService.getExportOutputFileName(fromDate, toDate).replace(".xml", "");
hasAlreadyRanQuery = accountingService.hasAlreadyRanQuery(fromDate, toDate);
accountingData = accountingService.getExportDetails(fromDate, toDate);
} catch (Exception e) {
LOGGER.error(e.getMessage(), e);
}
ModelAndView mav = new ModelAndView("renderAccountingData");
List<BreadCrumbsLinks> breadcrumbs = new AdminBreadcrumbBuilder().withLink("accounting.viewaccountingexports", "renderAccountingDataCacheInfo.ftl").withLink(fileName, "").build();
mav.addObject("breadcrumbs", breadcrumbs);
mav.addObject("accountingData", accountingData);
mav.addObject("hasAlreadyRanQuery", hasAlreadyRanQuery);
mav.addObject("fileName", fileName);
mav.addObject("fromDate", fromDate);
mav.addObject("toDate", toDate);
return mav;
}
use of org.springframework.web.servlet.ModelAndView in project head by mifos.
the class AccountingDataController method generateList.
@RequestMapping("generateExportsList.ftl")
public final ModelAndView generateList(@RequestParam(value = LIST_START_DAY) Integer listStartDay, @RequestParam(value = "type") String type) {
ModelAndView mav = new ModelAndView("generateExportsList");
List<ExportFileInfo> exports = accountingService.getLastTenExports(listStartDay);
mav.addObject("exports", exports);
mav.addObject("size", listStartDay);
return mav;
}
use of org.springframework.web.servlet.ModelAndView in project head by mifos.
the class AccountingDataController method listAllExports.
@RequestMapping("renderAccountingDataCacheInfo.ftl")
public final ModelAndView listAllExports() {
List<BreadCrumbsLinks> breadcrumbs = new AdminBreadcrumbBuilder().withLink("accounting.viewaccountingexports", "renderAccountingDataCacheInfo.ftl").build();
ModelAndView mav = new ModelAndView("renderAccountingDataCacheInfo");
mav.addObject("breadcrumbs", breadcrumbs);
mav.addObject("numberDaysFromStartOfFinancialTransactions", accountingService.getNumberDaysFromStartOfFinancialTransactions());
return mav;
}
use of org.springframework.web.servlet.ModelAndView in project head by mifos.
the class UncaughtExceptionHandler method checkForAccessDenied.
private ModelAndView checkForAccessDenied(Exception ex, HttpServletRequest request) {
if (ex instanceof AccessDeniedException) {
ModelAndView modelAndView = null;
String viewName = determineViewName(ex, request);
if (viewName != null) {
modelAndView = getModelAndView(viewName, ex, request);
}
return modelAndView;
}
if (ex.getCause() != null && ex.getCause() instanceof Exception) {
return checkForAccessDenied((Exception) ex.getCause(), request);
}
return null;
}
Aggregations