Commit 4a7a0ae5 authored by 武飞达's avatar 武飞达

修复日志

parent 030c24e0
...@@ -381,7 +381,7 @@ public class TransactionReceiptRecordServiceImpl implements ITransactionReceiptR ...@@ -381,7 +381,7 @@ public class TransactionReceiptRecordServiceImpl implements ITransactionReceiptR
paramList.add(param); paramList.add(param);
//得到json字符串 //得到json字符串
String result = httpService.post(url, header, paramList); String result = httpService.post(url, header, paramList);
log.info("调用kdsp查询订单接口返回结果,result:{}",result); log.info("[导出凭证]请求kdsp接口调用, 参数:{}, result:{}", JSONObject.toJSONString(paramList), result);
//转换成json 对象 //转换成json 对象
if(StringUtils.isBlank(result)){ if(StringUtils.isBlank(result)){
deleteRedis("exportZipFile"); deleteRedis("exportZipFile");
...@@ -660,7 +660,7 @@ public class TransactionReceiptRecordServiceImpl implements ITransactionReceiptR ...@@ -660,7 +660,7 @@ public class TransactionReceiptRecordServiceImpl implements ITransactionReceiptR
paramList.add(param1); paramList.add(param1);
String kResult = httpService.post(kUrl, header, paramList); String kResult = httpService.post(kUrl, header, paramList);
JSONObject kJson =JSONObject.parseObject(kResult); JSONObject kJson =JSONObject.parseObject(kResult);
log.info("TransactionReceiptRecordServiceImpl kResult ="+kResult); log.info("[导入凭证]请求kdsp接口, 参数:{}, Result:{}", JSONObject.toJSONString(paramList), kResult);
String businessCode = kJson.getString("businessCode"); String businessCode = kJson.getString("businessCode");
if(!"0000".equals(businessCode)){ if(!"0000".equals(businessCode)){
deleteRedis("importTransactionReceiptRecord"); deleteRedis("importTransactionReceiptRecord");
......
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