mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
排单非空判断错误修改
This commit is contained in:
+1
-1
@@ -994,7 +994,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
for (Long planId : planIds) {
|
for (Long planId : planIds) {
|
||||||
PlanDO planDO = planMapper.selectById(planId);
|
PlanDO planDO = planMapper.selectById(planId);
|
||||||
if(ObjectUtils.isEmpty(planDO)){
|
if(ObjectUtils.isEmpty(planDO)){
|
||||||
throw exception(PLAN_NOT_DATA_EXISTS,planDO.getId());
|
throw exception(PLAN_NOT_DATA_EXISTS,planId);
|
||||||
}
|
}
|
||||||
planDOS.add(planDO);
|
planDOS.add(planDO);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user