MA绩效修改

This commit is contained in:
zhal 2022-11-28 17:44:08 +08:00
parent be4c1cc53b
commit 15b216d4fb
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ public class PublishProcessAfterCompleteEvent extends ExecuteListener implements
}
currentnumber++;
attributesJsonArray.getJSONObject(i).put("value", value + "." + currentnumber);
attributesJsonArray.getJSONObject(i).put("value", "MA."+value + "." + currentnumber);
if (performanceNumberBO != null) {
performanceNumberBO.set("CURRENTNUMBER", currentnumber);
@ -176,7 +176,7 @@ public class PublishProcessAfterCompleteEvent extends ExecuteListener implements
performanceNumberBO = SDK.getBOAPI().query("BO_EU_PERFORMANCE_NUMBER").addQuery("PERFORMANCE_TYPE=", "control.ma").addQuery("PROCESS_NUMBER=", value).detail();
}
recordBO.set("PROCESS_PERFORMANCE_IND_NUM", value + "." + currentnumber);
recordBO.set("PROCESS_PERFORMANCE_IND_NUM", "MA."+value + "." + currentnumber);
SDK.getBOAPI().update("BO_EU_PERFORMANCE_NUMBER", performanceNumberBO);
}