mmpac流程生产订单维护: 修复属性字段与属性值错误
- 修改了 SXZF16、SXZF17 和 SXZF18 的 propertyFiled 和 propertyValue 设置 - 确保属性字段和属性值正确对应,避免数据同步错误
This commit is contained in:
parent
a5c2b18bdb
commit
0cc535d58c
|
@ -214,9 +214,15 @@ public class AfterApproveRuleSyncMes implements IRule<PMOAggVO> {
|
||||||
JSONObject SXZF16 = new JSONObject();
|
JSONObject SXZF16 = new JSONObject();
|
||||||
JSONObject SXZF17 = new JSONObject();
|
JSONObject SXZF17 = new JSONObject();
|
||||||
JSONObject SXZF18 = new JSONObject();
|
JSONObject SXZF18 = new JSONObject();
|
||||||
SXZF16.put("propertyFiled", item.getVparentbillcode());
|
|
||||||
SXZF17.put("propertyFiled", item.getVparentmorowno());
|
SXZF16.put("propertyFiled", "SXZF16");
|
||||||
SXZF18.put("propertyFiled", head.getVtrantypecode());
|
SXZF17.put("propertyFiled", "SXZF17");
|
||||||
|
SXZF18.put("propertyFiled", "SXZF18");
|
||||||
|
|
||||||
|
SXZF16.put("propertyValue", item.getVparentbillcode());
|
||||||
|
SXZF17.put("propertyValue", item.getVparentmorowno());
|
||||||
|
SXZF18.put("propertyValue", head.getVtrantypecode());
|
||||||
|
|
||||||
properties.add(SXZF16);
|
properties.add(SXZF16);
|
||||||
properties.add(SXZF17);
|
properties.add(SXZF17);
|
||||||
properties.add(SXZF18);
|
properties.add(SXZF18);
|
||||||
|
|
Loading…
Reference in New Issue