|
@ -120,7 +120,7 @@ public class OnePayController extends WeixinBaseController {
|
|
|
json.put("bindStatus", "000000");
|
|
|
json.put("sicardUrl", sicardUrl);
|
|
|
msg = "查询绑卡信息成功!";
|
|
|
return write(200, "", "data", json);
|
|
|
return write(200, msg, "data", json);
|
|
|
} else {
|
|
|
json.put("sicardUrl", sicardUrl);
|
|
|
json.put("bindStatus", "030007");
|
|
@ -347,6 +347,7 @@ public class OnePayController extends WeixinBaseController {
|
|
|
charge.setIdType(idType);
|
|
|
charge.setIdNo(idNo);
|
|
|
charge.setTradeStatus(chargeStatus);
|
|
|
charge.setUpdateTime(new Date());
|
|
|
|
|
|
if (param.has("responseContent") && (param.getJSONObject("responseContent") != null)) {
|
|
|
String requestParam = param.getString("responseContent");
|
|
@ -520,10 +521,12 @@ public class OnePayController extends WeixinBaseController {
|
|
|
charge.setIdType(idType);
|
|
|
charge.setIdNo(idNo);
|
|
|
charge.setTradeStatus(chargeStatus);
|
|
|
charge.setUpdateTime(new Date());
|
|
|
|
|
|
String miRegisterNo = "";//医保签约号
|
|
|
if (requestParams.has("responseContent") && (requestParams.getJSONObject("responseContent") != null)) {
|
|
|
JSONObject responseContents = requestParams.getJSONObject("responseContent");//医保结构体
|
|
|
if (requestParam.has("responseContent")) {
|
|
|
String tempcontent = requestParam.getString("responseContent");//医保结构体
|
|
|
JSONObject responseContents = new JSONObject(tempcontent);
|
|
|
String miCollectDate = null;//扣费日期
|
|
|
String miCollectTime = null;//扣费时间
|
|
|
String miSettleNo = null;//扣费单据号
|