试运行问题修改
This commit is contained in:
parent
2a0556f200
commit
8c3665d599
|
|
@ -584,7 +584,7 @@
|
|||
AND (bai.agreement_code like concat('%', #{record.keyWord}, '%') or tt.code like concat('%', #{record.keyWord}, '%'))
|
||||
</if>
|
||||
GROUP BY tt.task_id
|
||||
ORDER BY tt.update_time DESC
|
||||
ORDER BY tt.task_status,tt.update_time DESC
|
||||
</select>
|
||||
|
||||
<select id="getAuditListByLeaseInfo" resultType="com.bonus.sgzb.app.domain.LeaseApplyInfo">
|
||||
|
|
|
|||
|
|
@ -55,7 +55,6 @@ public class PurchaseMacodeInfoServiceImpl implements IPurchaseMacodeInfoService
|
|||
private PurchaseCheckDetailsMapper checkDetailsMapper;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 查询新购验收编号管理
|
||||
*
|
||||
|
|
@ -431,10 +430,9 @@ public class PurchaseMacodeInfoServiceImpl implements IPurchaseMacodeInfoService
|
|||
List<PurchaseMacodeInfo> purchaseMacodeInfos = purchaseMacodeInfoMapper.selectPutinDetails(purchaseMacodeInfo);
|
||||
for (PurchaseMacodeInfo macodeInfo : purchaseMacodeInfos) {
|
||||
List<String> userIds = purchaseMacodeInfoMapper.selectKeepUser(macodeInfo.getTypeId().intValue());
|
||||
if (CollUtil.isNotEmpty(userIds)){
|
||||
userIds.add("1");
|
||||
macodeInfo.setUserIds(userIds);
|
||||
}
|
||||
}
|
||||
return purchaseMacodeInfos;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,10 +58,9 @@ public class RepairTestInputServiceImpl implements RepairTestInputService {
|
|||
List<RepairTestInputDetailVo> repairedDetailList = mapper.getRepairedDetailList(dto);
|
||||
for (RepairTestInputDetailVo repairTestInputDetailVo : repairedDetailList) {
|
||||
List<String> userIds = purchaseMacodeInfoMapper.selectKeepUser(repairTestInputDetailVo.getTypeId());
|
||||
if (CollUtil.isNotEmpty(userIds)) {
|
||||
userIds.add("1");
|
||||
repairTestInputDetailVo.setUserIds(userIds);
|
||||
}
|
||||
}
|
||||
return repairedDetailList;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue