|
@ -2224,10 +2224,17 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
* @param date
|
|
|
* @return
|
|
|
*/
|
|
|
public List<WlyyDoctorWorkTimeVO> findDoctorWorkTimeByMonth(String doctor,String date){
|
|
|
List<WlyyDoctorWorkTimeDO> times = doctorWorkTimeDao.findDoctorWorkTimeByMonth(doctor,"%"+date+"%");
|
|
|
List<WlyyDoctorWorkTimeVO> timeVOs = new ArrayList<>();
|
|
|
return convertToModels(times,timeVOs,WlyyDoctorWorkTimeVO.class);
|
|
|
public List<WlyyDoctorWorkTimeVO> findDoctorWorkTimeByMonth(String doctor,String date,String startDate,String endDate){
|
|
|
|
|
|
if(StringUtils.isNotBlank(date)){
|
|
|
List<WlyyDoctorWorkTimeDO> times = doctorWorkTimeDao.findDoctorWorkTimeByMonth(doctor,"%"+date+"%");
|
|
|
List<WlyyDoctorWorkTimeVO> timeVOs = new ArrayList<>();
|
|
|
return convertToModels(times,timeVOs,WlyyDoctorWorkTimeVO.class);
|
|
|
}else{
|
|
|
List<WlyyDoctorWorkTimeDO> times = doctorWorkTimeDao.findDoctorWorkTimeByTime(doctor,DateUtil.stringToDate(startDate+" 00:00:00","yyyy-MM-dd HH:mm:ss"),DateUtil.stringToDate(endDate+" 23:59:59","yyyy-MM-dd HH:mm:ss"));
|
|
|
List<WlyyDoctorWorkTimeVO> timeVOs = new ArrayList<>();
|
|
|
return convertToModels(times,timeVOs,WlyyDoctorWorkTimeVO.class);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public Map<String,Object> findPatientInfo(String patient){
|
|
@ -2252,22 +2259,27 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
private HttpClientUtil httpClientUtil;
|
|
|
public String test() {
|
|
|
List<NameValuePair> params = new ArrayList<>();
|
|
|
// params.add(new BasicNameValuePair("clientId", "ihealth_pa8DIRJasL"));
|
|
|
// params.add(new BasicNameValuePair("clientSecret", "jkzl1h7aj39dnasyi23fnkv92"));
|
|
|
// params.add(new BasicNameValuePair("code", "b60bab0617c04b23b7fa0a059cc83eb6"));
|
|
|
// params.add(new BasicNameValuePair("openid","o0hubt3byGmNYLyC-UvmSVyUuZkI"));
|
|
|
// //String res = httpClientUtil.post("http://www.xmtyw.cn/wlyy/iHealth/userInfo", params, "UTF-8");
|
|
|
// //https://wx.xmzsh.com
|
|
|
// String res = httpClientUtil.post("https://wx.xmzsh.com/interface/getUserInfoByOpenId.htm", params, "UTF-8");
|
|
|
// return res;
|
|
|
|
|
|
|
|
|
com.alibaba.fastjson.JSONObject jsonObject=new com.alibaba.fastjson.JSONObject();
|
|
|
jsonObject.put("openId","o0hubt3byGmNYLyC-UvmSVyUuZkI");
|
|
|
String responseMsg =httpClientUtil.sendPost("https://wx.xmzsh.com/interface/getUserInfoByOpenId.htm",jsonObject.toString());
|
|
|
com.alibaba.fastjson.JSONObject object1 = com.alibaba.fastjson.JSONObject.parseObject(responseMsg);
|
|
|
return object1.toString();
|
|
|
// return null;
|
|
|
params.add(new BasicNameValuePair("method", "ehc.ehealthcard.authurl"));
|
|
|
params.add(new BasicNameValuePair("app_id", "1BQA48ETK000A718A8C000001FFAA482"));
|
|
|
params.add(new BasicNameValuePair("term_id", "b60bab0617c04b23b7fa0a059cc83eb6"));
|
|
|
params.add(new BasicNameValuePair("version","o0hubt3byGmNYLyC-UvmSVyUuZkI"));
|
|
|
params.add(new BasicNameValuePair("timestamp", "ihealth_pa8DIRJasL"));
|
|
|
params.add(new BasicNameValuePair("sign_type", "jkzl1h7aj39dnasyi23fnkv92"));
|
|
|
params.add(new BasicNameValuePair("sign", "b60bab0617c04b23b7fa0a059cc83eb6"));
|
|
|
params.add(new BasicNameValuePair("enc_type","o0hubt3byGmNYLyC-UvmSVyUuZkI"));
|
|
|
params.add(new BasicNameValuePair("biz_content", "ihealth_pa8DIRJasL"));
|
|
|
|
|
|
|
|
|
|
|
|
String res = httpClientUtil.post("http://172.16.1.21:6601/ehcService/gateway.do", params, "UTF-8");
|
|
|
return res;
|
|
|
|
|
|
|
|
|
// com.alibaba.fastjson.JSONObject jsonObject=new com.alibaba.fastjson.JSONObject();
|
|
|
// jsonObject.put("openId","o0hubt3byGmNYLyC-UvmSVyUuZkI");
|
|
|
// String responseMsg =httpClientUtil.sendPost("https://wx.xmzsh.com/interface/getUserInfoByOpenId.htm",jsonObject.toString());
|
|
|
// com.alibaba.fastjson.JSONObject object1 = com.alibaba.fastjson.JSONObject.parseObject(responseMsg);
|
|
|
// return object1.toString();
|
|
|
}
|
|
|
|
|
|
|