|
@@ -637,6 +637,7 @@ public class MedicalViewApiController {
|
|
|
return results;
|
|
|
}
|
|
|
try {
|
|
|
+ log.info("微信查询待缴费记录传参====>{}",JsonUtil.object2Json(haiciCharge));
|
|
|
String[] arr = haiciCharge.getHisOrdNum().split("_");
|
|
|
MzChargeDetail mzChargeDetail = new MzChargeDetail(arr[0], Integer.valueOf(arr[1]));
|
|
|
mzChargeDetail.setBillItemCode("100");
|
|
@@ -685,6 +686,8 @@ public class MedicalViewApiController {
|
|
|
map.put("execDeptAddress", (unitCode == null || unitCode.getOfficePos() == null) ? "" : unitCode.getOfficePos());
|
|
|
returnList.add(map);
|
|
|
}
|
|
|
+ log.info("微信查询待缴费门诊号===>{},就诊次数====>{}", arr[0], arr[1]);
|
|
|
+ log.info("微信查询待缴费记录明细===>{}",JsonUtil.object2Json(returnList));
|
|
|
results.put("resultCode", 0);
|
|
|
results.put("resultMessage", "待缴费记录明细查询成功");
|
|
|
results.put("data", returnList);
|