3dca656d by xiaojie

Merge branch 'feature-tds-v1.0.0' into develop

2 parents 95ff4f9c 74bd9de5
......@@ -311,8 +311,9 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
// 删除主平台数据
if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(crossPlatformApproveState)) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("zqSystemCode", SysFuncCode);
jsonObject.put("zqBizGuids", JSON.toJSONString(guids));
jsonObject.put("bizCode", SysFuncCode);
jsonObject.put("operation", "DEL");
jsonObject.put("zqData", JSON.toJSONString(guids));
jsonObject.put("isCollection", true);
invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getZqDelUrl());
}
......
......@@ -294,8 +294,9 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
// 删除主平台数据
if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(crossPlatformApproveState)) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("zqSystemCode", SysFuncCode + "BG");
jsonObject.put("zqBizGuids", JSON.toJSONString(guids));
jsonObject.put("bizCode", SysFuncCode + "BG");
jsonObject.put("operation", "DEL");
jsonObject.put("zqData", JSON.toJSONString(guids));
jsonObject.put("isCollection", true);
invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getZqDelUrl());
}
......
......@@ -417,8 +417,9 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
// 删除主平台数据
if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(crossPlatformApproveState)) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("zqSystemCode", SysFuncCode);
jsonObject.put("zqBizGuids", JSON.toJSONString(guids));
jsonObject.put("bizCode", SysFuncCode);
jsonObject.put("operation", "DEL");
jsonObject.put("zqData", JSON.toJSONString(guids));
jsonObject.put("isCollection", true);
invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getZqDelUrl());
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!