1 year ago
parent
commit
53c0843009

+ 1 - 1
platform-rest/src/main/java/com/platform/rest/controller/report/InStoreDetailReportController.java

@@ -74,7 +74,7 @@ public class InStoreDetailReportController {
 
     List<InStoreFormVO> inStoreFormVOS = inStoreFormMapper.getInStoreFormCollect(inStoreFormDTO);
 //    List<InStoreDetail> list = inStoreDetailService.getModelListByDTO(inStoreDetailDTO);
-    ExcelUtil.exportResponseDict(response, ExportInStoreDetailVO.class, BeanConverterUtil.copyListProperties(inStoreFormVOS, ExportInStoreDetailVO.class), "入库详情");
+    ExcelUtil.exportResponseDict(response, ExportInStoreDetailVO.class, BeanConverterUtil.copyListProperties(inStoreFormVOS, ExportInStoreDetailVO.class), "入库汇总");
   }
 
 }

+ 1 - 1
platform-rest/src/main/java/com/platform/rest/controller/report/OutStoreDetailReportController.java

@@ -72,7 +72,7 @@ public class OutStoreDetailReportController {
   @PreAuthorize("@pms.hasPermission('store-out-store-details-export')")
   public void export(HttpServletResponse response, OutStoreFormDTO outStoreFormDTO) {
     List<OutStoreFormVO> list = outStoreFormMapper.getOutStoreFormCollect(outStoreFormDTO);
-    ExcelUtil.exportResponseDict(response, ExportOutStoreDetailVO.class, BeanConverterUtil.copyListProperties(list, ExportOutStoreDetailVO.class), "出库详情");
+    ExcelUtil.exportResponseDict(response, ExportOutStoreDetailVO.class, BeanConverterUtil.copyListProperties(list, ExportOutStoreDetailVO.class), "出库汇总");
   }
 
 }