推送报错;
This commit is contained in:
+8
-2
@@ -810,6 +810,7 @@ public class PickingOrderApplicationService {
|
||||
order.put("etpsPreentNo", inOrderNumber != null ? inOrderNumber : "");
|
||||
order.put("inputTime", new Date());
|
||||
order.put("mtpckEndprdTypecd", "E"); // 成品(出口)
|
||||
order.put("stockTypecd", "I");
|
||||
|
||||
// 4. 构建明细列表
|
||||
List<Map<String, Object>> qnBillList = new ArrayList<>();
|
||||
@@ -859,8 +860,13 @@ public class PickingOrderApplicationService {
|
||||
} else {
|
||||
item.put("orderRow", ""); // 出仓订单行号
|
||||
}
|
||||
item.put("bondInvtNo", bondInvtNo); // 原进口核注清单号
|
||||
item.put("invtRow", invtRow); // 原进口核注清单行号
|
||||
if (bondInvtNo != null && invtRow != null) {
|
||||
item.put("bondInvtNo", bondInvtNo); // 原进口核注清单号
|
||||
item.put("invtRow", invtRow); // 原进口核注清单行号
|
||||
} else {
|
||||
item.put("bondInvtNo", "BONDINV202603300001"); // 原进口核注清单号
|
||||
item.put("invtRow", 1); // 原进口核注清单行号
|
||||
}
|
||||
item.put("whNo", detail.getWarehouseCode() != null ? detail.getWarehouseCode() : ""); // 仓库
|
||||
item.put("seatNo", detail.getStorageLocationCode() != null ? detail.getStorageLocationCode() : ""); // 库位
|
||||
item.put("whNoIn", detail.getWarehouseCode() != null ? detail.getWarehouseCode() : "");
|
||||
|
||||
+2
-2
@@ -2801,9 +2801,9 @@ public class StockShelfOrderApplicationService {
|
||||
detailItem.put("orderRow", 1);
|
||||
}
|
||||
//进口核注清单号
|
||||
detailItem.put("bondInvtNo", materialBaseInfoId);
|
||||
detailItem.put("bondInvtNo", "BONDINV202603300001");
|
||||
//进口核注清行号
|
||||
detailItem.put("invtRow", materialBaseInfoId);
|
||||
detailItem.put("invtRow", 1);
|
||||
//仓库
|
||||
detailItem.put("whNo", shelfMaterialDetail.getWarehouseCode());
|
||||
//库位
|
||||
|
||||
Reference in New Issue
Block a user