mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 13:42:07 +08:00
修改、修改排单逻辑
This commit is contained in:
+2
-2
@@ -132,7 +132,6 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
Long planId = plan.getId();
|
Long planId = plan.getId();
|
||||||
|
|
||||||
/*planOrderMapper.delete(new LambdaQueryWrapperX<PlanOrderDO>().eq(PlanOrderDO::getPlanId, planId));*/
|
/*planOrderMapper.delete(new LambdaQueryWrapperX<PlanOrderDO>().eq(PlanOrderDO::getPlanId, planId));*/
|
||||||
planItemMapper.delete(new LambdaQueryWrapperX<PlanItemDO>().eq(PlanItemDO::getPlanId, planId));
|
|
||||||
|
|
||||||
/* List<Long> orderIds = updateReqVO.getOrderIds();
|
/* List<Long> orderIds = updateReqVO.getOrderIds();
|
||||||
if (CollectionUtil.isNotEmpty(orderIds)) {
|
if (CollectionUtil.isNotEmpty(orderIds)) {
|
||||||
@@ -145,6 +144,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
}
|
}
|
||||||
planOrderMapper.insertBatch(planOrderDOS);
|
planOrderMapper.insertBatch(planOrderDOS);
|
||||||
}*/
|
}*/
|
||||||
|
/* planItemMapper.delete(new LambdaQueryWrapperX<PlanItemDO>().eq(PlanItemDO::getPlanId, planId));
|
||||||
List<Long> plateIds = updateReqVO.getPlateIds();
|
List<Long> plateIds = updateReqVO.getPlateIds();
|
||||||
if (CollectionUtil.isNotEmpty(plateIds)) {
|
if (CollectionUtil.isNotEmpty(plateIds)) {
|
||||||
ArrayList<PlanItemDO> planItemDOS = new ArrayList<>();
|
ArrayList<PlanItemDO> planItemDOS = new ArrayList<>();
|
||||||
@@ -155,7 +155,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
.build());
|
.build());
|
||||||
}
|
}
|
||||||
planItemMapper.insertBatch(planItemDOS);
|
planItemMapper.insertBatch(planItemDOS);
|
||||||
}
|
}*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user