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:
+4
-4
@@ -1434,7 +1434,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
planMapper.update(new LambdaUpdateWrapper<PlanDO>()
|
planMapper.update(new LambdaUpdateWrapper<PlanDO>()
|
||||||
.eq(PlanDO::getId, planId)
|
.eq(PlanDO::getId, planId)
|
||||||
.set(PlanDO::getPlateNum, plateNum)
|
.set(PlanDO::getPlateNum, plateNum)
|
||||||
.set(PlanDO::getArea, area));
|
.set(PlanDO::getPlateArea, area));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1502,7 +1502,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
planMapper.update(new LambdaUpdateWrapper<PlanDO>()
|
planMapper.update(new LambdaUpdateWrapper<PlanDO>()
|
||||||
.eq(PlanDO::getId, planId)
|
.eq(PlanDO::getId, planId)
|
||||||
.set(PlanDO::getPlateNum, plateNum)
|
.set(PlanDO::getPlateNum, plateNum)
|
||||||
.set(PlanDO::getArea, area));
|
.set(PlanDO::getPlateArea, area));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1944,7 +1944,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
.build();
|
.build();
|
||||||
|
|
||||||
// 更新板件排单id & 统计更新order_goods的数量和面积
|
// 更新板件排单id & 统计更新order_goods的数量和面积
|
||||||
planDO.setArea(computePlatePlanAndComputeOrderGoodsInfo(planId, goodsPlateIdMap));
|
planDO.setPlateArea(computePlatePlanAndComputeOrderGoodsInfo(planId, goodsPlateIdMap));
|
||||||
planDOS.add(planDO);
|
planDOS.add(planDO);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -2015,7 +2015,7 @@ public class PlanServiceImpl implements PlanService {
|
|||||||
.build();
|
.build();
|
||||||
|
|
||||||
// 更新板件排单id & 统计更新order_goods的数量和面积
|
// 更新板件排单id & 统计更新order_goods的数量和面积
|
||||||
planDO.setArea(computePlatePlanAndComputeOrderGoodsInfo(planId, goodsPlateIdMap));
|
planDO.setPlateArea(computePlatePlanAndComputeOrderGoodsInfo(planId, goodsPlateIdMap));
|
||||||
planDOS.add(planDO);
|
planDOS.add(planDO);
|
||||||
}
|
}
|
||||||
// 统计更新orders的小板数量和面积
|
// 统计更新orders的小板数量和面积
|
||||||
|
|||||||
Reference in New Issue
Block a user