update 批次入库页面,入库按钮,修改调用QMS接口组装报文方法,增加供应商编码:supplierCode,供应商名称:supplierName

This commit is contained in:
18110972313 2025-05-12 14:30:54 +08:00
parent fefcf3a717
commit e7612d00d0

View File

@ -177,6 +177,15 @@ public class QMSServiceImpl implements QMSService{
jsonObject.put("transferOrderNumber", receiveActNo);
jsonObject.put("factoryArea", factoryArea);
/**
* 增加供应商编码和供应商名称
* 2025-05-12
*/
//供应商编码
jsonObject.put("supplierCode", list.get(i).get("SUPPLIERCODE"));
//供应商名称
jsonObject.put("supplierName", list.get(i).get("SUPPLIERNAME"));
String lots = list.get(i).get("LOTS") == null ? "" : list.get(i).get("LOTS").toString();
String[] split = lots.split("\\;");
JSONArray jsonArray2 = new JSONArray ();