diff --git a/zt-module-contract-order/zt-module-contract-order-server/src/main/java/com/zt/plat/module/contractorder/api/ContractApiImpl.java b/zt-module-contract-order/zt-module-contract-order-server/src/main/java/com/zt/plat/module/contractorder/api/ContractApiImpl.java index 72ed16c..e4cc53b 100644 --- a/zt-module-contract-order/zt-module-contract-order-server/src/main/java/com/zt/plat/module/contractorder/api/ContractApiImpl.java +++ b/zt-module-contract-order/zt-module-contract-order-server/src/main/java/com/zt/plat/module/contractorder/api/ContractApiImpl.java @@ -162,7 +162,7 @@ public class ContractApiImpl implements ContractApi { @Override public void push(@RequestBody IntPushContractReqVO pushReqVO) { - log.info("接受到国贸2.0系统推送合同数据:{}", new JSONObject(pushReqVO)); + log.info("接受到国贸系统推送的合同数据:{}", new JSONObject(pushReqVO)); try { // 合同主信息表映射 ContractMainDO contractMainDO = internationalToMainDO(pushReqVO.getData()); @@ -257,6 +257,7 @@ public class ContractApiImpl implements ContractApi { pushResult(pushReqVO, 1, null); } catch (Exception e) { + log.info("国贸系统推送合同异常:{}", e.getMessage(), e); pushResult(pushReqVO, -1, e.getMessage()); } } @@ -390,11 +391,11 @@ public class ContractApiImpl implements ContractApi { req.set("messageKey", pushReqVO.getBusiBillCode()); req.set("messageBody", body.toString()); try { - log.info("国贸2.0系统推送合同回调参数:{}",req); + log.info("国贸系统推送合同回调参数:{}",req); String res = shareServiceUtil.callShareService("S_EPLAT_04", req.toString()); - log.info("国贸2.0系统推送合同回调成功:{}",res); + log.info("国贸系统推送合同回调成功:{}",res); } catch (Exception e) { - log.error("国贸2.0系统推送合同回调失败:{}",e.getMessage(), e); + log.error("国贸系统推送合同回调失败:{}",e.getMessage(), e); } }