mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
新增排单-板材分组接口Bug修改
This commit is contained in:
+1
-1
@@ -120,7 +120,7 @@ public class PlanServiceImpl implements PlanService {
|
||||
for (Long orderId : orderIds) {
|
||||
|
||||
// 传入的生产单的大板数量
|
||||
int size1 = itemList.stream().filter(f -> Objects.equals(f.getOrderId(), orderId)).map(PlanSaveReqVO.Item::getGoodsId).distinct().toList().size();
|
||||
int size1 = itemList.stream().filter(f -> Objects.equals(f.getOrderId(), orderId)).map(PlanSaveReqVO.Item::getId).distinct().toList().size();
|
||||
// 当前生产单对应的大板数量
|
||||
List<Long> list = goodsNums.stream().filter(f -> Objects.equals(f.getOrderId(), orderId)).map(GoodsNum::getGoodsNum).toList();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user