|
@ -236,7 +236,7 @@ public class JwPrescriptionService {
|
|
|
JSONObject reobj = JSON.parseObject(response);
|
|
|
Integer status = reobj.getInteger("status");
|
|
|
String errmsg = reobj.getString("msg");
|
|
|
if(-1 == status){
|
|
|
if(200 != status){
|
|
|
throw new Exception("基卫接口(院内结算确认接口)请求失败,"+errmsg);
|
|
|
}else{
|
|
|
prescriptionDao.updatejwPayStatus(prescriptionCode);
|
|
@ -270,7 +270,7 @@ public class JwPrescriptionService {
|
|
|
JSONObject reobj = JSON.parseObject(response);
|
|
|
Integer status = reobj.getInteger("status");
|
|
|
String errmsg = reobj.getString("msg");
|
|
|
if(-1 == status){
|
|
|
if(200 != status){
|
|
|
throw new Exception("基卫接口(挂号作废)请求失败,"+errmsg);
|
|
|
}
|
|
|
}else{
|