Commit 8e56d455 by liuyang

2024-07-17 业务账期维护重复添加校验优化

parent 85dfea34
......@@ -181,16 +181,12 @@ function saveFunc() {
EiCommunicator.send("HGCW001", "save", info, {
onSuccess: function (ei) {
if (ei.getStatus() >= 0) {
try {
query();
} catch (e) {
// TODO: handle exception
}
if (ei.getStatus() == 0) {
NotificationUtil(ei, 'warning');
} else {
NotificationUtil(ei);
}
query();
} else {
NotificationUtil(ei, "error");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment