fix:云之家获取按钮

This commit is contained in:
ljw 2024-09-12 17:37:25 +08:00
parent 3087a59a1e
commit 2b328be8ea

View File

@ -150,7 +150,7 @@ public class YemBillPlugInBaseFrom extends AbstractBillPlugIn {
throw new RuntimeException(ex); throw new RuntimeException(ex);
} }
JSONObject retJson = JSONObject.parseObject(retStr); JSONObject retJson = JSONObject.parseObject(retStr);
if (!"FINISH".equals(retJson.getString("data"))) { if ("FINISH".equals(retJson.getString("data"))) {
//回写数据 //回写数据
// BackfilljsonAssignUtils.BackfilljsonAssign(data); // BackfilljsonAssignUtils.BackfilljsonAssign(data);
OperationResult result = OperationServiceHelper.executeOperate("audit", this.getModel().getDataEntityType().getName() OperationResult result = OperationServiceHelper.executeOperate("audit", this.getModel().getDataEntityType().getName()
@ -162,6 +162,7 @@ public class YemBillPlugInBaseFrom extends AbstractBillPlugIn {
, new Object[]{this.getModel().getValue("id")}, OperateOption.create()); , new Object[]{this.getModel().getValue("id")}, OperateOption.create());
}else { }else {
this.getView().showMessage("同步成功:"); this.getView().showMessage("同步成功:");
this.getModel().setValue("yem_synfalt", "同步成功");
} }
} }
} }