|
@ -10555,9 +10555,9 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
com.alibaba.fastjson.JSONObject jsonObject = object.getJSONObject("MsgInfo");
|
|
|
String Msg = jsonObject.getString("Msg");
|
|
|
if (Msg.contains("Error")){
|
|
|
returnMap.put("msg",Msg);
|
|
|
returnMap.put("status","-1");
|
|
|
return returnMap;
|
|
|
returnMap.put("msg",Msg);
|
|
|
returnMap.put("status","-1");
|
|
|
return returnMap;
|
|
|
}else {
|
|
|
flag = true;
|
|
|
}
|
|
@ -10729,7 +10729,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
}else if (wechatId.equalsIgnoreCase("xm_ykyy_wx")){
|
|
|
Double natFee = 8000.0;
|
|
|
if(StringUtils.isNoneBlank(chargeAmount)){
|
|
|
natFee= Double.parseDouble(chargeAmount);
|
|
|
natFee= Double.parseDouble(chargeAmount)*100;
|
|
|
}
|
|
|
BaseNatAppointmentDO baseNatAppointmentDO= new BaseNatAppointmentDO();
|
|
|
baseNatAppointmentDO.setMedicare(mediaCard);
|
|
@ -11126,7 +11126,6 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
List<WlyyHospitalSysDictDO> natConfigList = wlyyHospitalSysDictDao.findByDictName("natConfigList");
|
|
|
String checkPart = "鼻/咽拭子";
|
|
|
String chargeFlag = "2";
|
|
|
String chargeCode = "361322";
|
|
|
String icdCode = "Z00.000";
|
|
|
Integer winNo = 6;
|
|
|
for (WlyyHospitalSysDictDO wlyyHospitalSysDictDO:natConfigList){
|
|
@ -11136,9 +11135,6 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
if (StringUtils.isNoneBlank(wlyyHospitalSysDictDO.getDictValue())&&"chargeFlag".equalsIgnoreCase(wlyyHospitalSysDictDO.getDictCode())){
|
|
|
chargeFlag = wlyyHospitalSysDictDO.getDictValue();
|
|
|
}
|
|
|
if (StringUtils.isNoneBlank(wlyyHospitalSysDictDO.getDictValue())&&"chargeCode".equalsIgnoreCase(wlyyHospitalSysDictDO.getDictCode())){
|
|
|
chargeCode = wlyyHospitalSysDictDO.getDictValue();
|
|
|
}
|
|
|
if (StringUtils.isNoneBlank(wlyyHospitalSysDictDO.getDictValue())&&"icdCode".equalsIgnoreCase(wlyyHospitalSysDictDO.getDictCode())){
|
|
|
icdCode = wlyyHospitalSysDictDO.getDictValue();
|
|
|
}
|
|
@ -11152,7 +11148,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
jsondate.put("checkPart",checkPart);
|
|
|
jsondate.put("cardNo",baseNatAppointmentDO.getMedicare());
|
|
|
jsondate.put("chargeFlag",chargeFlag);
|
|
|
jsondate.put("chargeCode",chargeCode);
|
|
|
jsondate.put("chargeCode",baseNatAppointmentDO.getChargeCode());
|
|
|
jsondate.put("icdCode",icdCode);
|
|
|
jsondate.put("socialNo",baseNatAppointmentDO.getCardNo());
|
|
|
jsondate.put("tellPhone",baseNatAppointmentDO.getMobile());
|