Browse Source

财务-bug修改

wangqiang 2 years ago
parent
commit
baf89c80a4

+ 1 - 0
jeeplus-module/jeeplus-test/src/main/java/com/jeeplus/test/cw/reimbursementApproval/approvalInfo/service/CwReimbursementInfoService.java

@@ -291,6 +291,7 @@ public class CwReimbursementInfoService {
         // 查询详情列表
         LambdaQueryWrapper<CwReimbursementDetailInfo> detailInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
         detailInfoLambdaQueryWrapper.eq(CwReimbursementDetailInfo::getInfoId, id);
+        detailInfoLambdaQueryWrapper.orderByAsc(CwReimbursementDetailInfo::getNumber);
         List<CwReimbursementDetailInfo> detailInfos = detailInfoMapper.selectList(detailInfoLambdaQueryWrapper);
 
         dto.setDetailInfos(detailInfos);