|
@@ -271,7 +271,7 @@ public class PreparationController {
|
|
|
@SysLog("筹建类型报表统计导出")
|
|
|
public void getPreparationTypeReport(HttpServletResponse response,PreparationDTO dto, @RequestParam(required = false) Integer year, @RequestParam(required = false) LocalDate startMonth, @RequestParam(required = false) LocalDate endMonth) {
|
|
|
List<PreparationReportByStatusVO> preparationReportByStatusVOS = preparationService.getPreparationReportGroupByStatus(dto, year, startMonth, endMonth);
|
|
|
- ExcelUtil.exportResponseDict(response, PreparationReportByStatusVO.class, BeanConverterUtil.copyListProperties(preparationReportByStatusVOS, PreparationReportByStatusVO.class), "筹建类型报表统计导出");
|
|
|
+ ExcelUtil.exportResponseDict(response, PreparationReportByStatusVO.class, BeanConverterUtil.copyListProperties(preparationReportByStatusVOS, PreparationReportByStatusVO.class), "建筑物类型报表统计导出");
|
|
|
}
|
|
|
|
|
|
@GetMapping("/getPreparationReportGroupByStatus/detail/export")
|
|
@@ -279,7 +279,7 @@ public class PreparationController {
|
|
|
public void getPreparationTypeReport2(HttpServletResponse response,PreparationDTO dto, @RequestParam(required = false) Integer year, @RequestParam(required = false) LocalDate startMonth, @RequestParam(required = false) LocalDate endMonth) {
|
|
|
List<PreparationReportByStatusVO> preparationReportByStatusVOS = preparationService.getPreparationReportGroupByStatus(dto, year, startMonth, endMonth);
|
|
|
List<PreparationVO> preparationVOS = preparationReportByStatusVOS.get(0).getDetailList();
|
|
|
- ExcelUtil.exportResponseDict(response, ExportPreparationVO.class, BeanConverterUtil.copyListProperties(preparationVOS, ExportPreparationVO.class), "筹建类型明细报表统计导出");
|
|
|
+ ExcelUtil.exportResponseDict(response, ExportPreparationVO.class, BeanConverterUtil.copyListProperties(preparationVOS, ExportPreparationVO.class), "建筑物类型明细报表统计导出");
|
|
|
}
|
|
|
|
|
|
@GetMapping("/position/query")
|
|
@@ -293,7 +293,7 @@ public class PreparationController {
|
|
|
public void getPreparationReportExportByPositionId(HttpServletResponse response,PreparationDTO dto) {
|
|
|
List<ExportPreparationNumVO> exportPreparationNumVOS = preparationService.getPreparationReportByPositionId(dto);
|
|
|
|
|
|
- ExcelUtil.exportResponseDict(response, ExportPreparationNumVO.class, BeanConverterUtil.copyListProperties(exportPreparationNumVOS, ExportPreparationNumVO.class), "筹建数量-费用统计导出");
|
|
|
+ ExcelUtil.exportResponseDict(response, ExportPreparationNumVO.class, BeanConverterUtil.copyListProperties(exportPreparationNumVOS, ExportPreparationNumVO.class), "建筑物数量-费用统计导出");
|
|
|
|
|
|
}
|
|
|
|