|
@ -70,6 +70,8 @@ public class YkyyEntranceService {
|
|
|
|
|
|
private final static String saveUrl="http://192.168.20.55:10023/ykyy/save";
|
|
|
|
|
|
private final static String updateUrl="http://192.168.20.55:10023/ykyy/updateBySql";
|
|
|
|
|
|
private final static String orgCode ="350211A5004";
|
|
|
|
|
|
private final static String orgName ="厦门大学附属厦门眼科中心";
|
|
@ -1035,7 +1037,7 @@ public class YkyyEntranceService {
|
|
|
hlwCf01DO.setZJFLAG(0);
|
|
|
hlwCf01DO.setLSCFBZ(0);
|
|
|
hlwCf01DO.setZJFLAG(0);
|
|
|
hlwCf01DO.setFKZT(1);
|
|
|
hlwCf01DO.setFKZT(0);
|
|
|
hlwCf01DO.setSCDDH(wlyyPrescriptionVO.getOrderNo());
|
|
|
String patient = wlyyPrescriptionVO.getPatientCode();
|
|
|
PatientMappingDO patientMappingDO = patientMappingDao.findByPatient(patient);
|
|
@ -1143,6 +1145,18 @@ public class YkyyEntranceService {
|
|
|
|
|
|
|
|
|
|
|
|
public String updateHisStatus(String sql) throws Exception {
|
|
|
Map<String,Object> params1 = new HashedMap();
|
|
|
params1.put("sql",sql);
|
|
|
HttpResponse response1 = HttpUtils.doGet(updateUrl,params1);
|
|
|
logger.info(response1.getContent());
|
|
|
if (response1.getStatus()==200){
|
|
|
logger.info("更新his支付状态!");
|
|
|
}else {
|
|
|
logger.info("更新his支付状态!"+response1.getErrorMsg());
|
|
|
}
|
|
|
return response1.getContent();
|
|
|
}
|
|
|
|
|
|
|
|
|
|