销售订单审批推送电缆新增行备注

This commit is contained in:
李正@用友 2025-06-27 15:36:11 +08:00
parent be1e1713c9
commit 77b29e0664
1 changed files with 2 additions and 1 deletions

View File

@ -192,9 +192,9 @@ public class AfterApprovingSynchronizeRuleMES implements IRule<SaleOrderVO> {
// 销售订单新增两个字段 vbdef22-->MES客户订单号 vbdef13-->MES客户订单序号
detailItem.put("customNo", body.getVbdef22()); // 客户订单号
detailItem.put("customSN", body.getVbdef13()); // 客户订单序号
detailItem.put("remarks", body.getVrownote());
// 添加是否定制
detailItem.put("customized", body.getVbdef18());
detailItem.put("remarks", null);
// 添加自定义行号
JSONArray properties = new JSONArray();
JSONObject property = new JSONObject();
@ -285,3 +285,4 @@ public class AfterApprovingSynchronizeRuleMES implements IRule<SaleOrderVO> {
return o.toString();
}
}