瀏覽代碼

整改清单查看功能开发-增加排序

zhuang 9 月之前
父節點
當前提交
25c090b58f

+ 2 - 1
business-common/src/main/java/com/rongwei/bscommon/sys/service/impl/ZhcxProjectManageServiceImpl.java

@@ -434,7 +434,8 @@ public class ZhcxProjectManageServiceImpl extends ServiceImpl<ZhcxProjectManageD
         List<ZhcxProjectRectifyDo> rectifyDos = projectRectifyService.list(
                 Wrappers.<ZhcxProjectRectifyDo>lambdaQuery()
                         .eq(ZhcxProjectRectifyDo::getBatchid, batchId)
-                        .eq(ZhcxProjectRectifyDo::getDeleted, "0"));
+                        .eq(ZhcxProjectRectifyDo::getDeleted, "0")
+                        .orderByAsc(ZhcxProjectRectifyDo::getSeqsort));
         List<ZhcxProjectRectifyMachineVo> listData = zhcxProjectManageDao.getRectifyListData(map);
         ZhcxProjectManageRectifyBatchDo rectifyBatchDo =  projectManageRectifyBatchService.getById(batchId);
         String machineno = rectifyBatchDo.getMachineno();