|
@ -3677,7 +3677,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
totalSql += " AND e.name like '%" + nameKey + "%' ";
|
|
|
}
|
|
|
if (type!=null) {
|
|
|
totalSql += " AND e.type ='"+type+"' ";
|
|
|
totalSql += " AND e.sf_type ='"+type+"' ";
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(patientName)) {
|
|
|
totalSql += " AND o.patient_name like '%" + patientName + "%' ";
|
|
@ -3745,7 +3745,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
}
|
|
|
sql = sql + " e.name as \"name\", " +
|
|
|
" e.oneself_pickup_flg AS \"oneselfPickupFlg\", " +
|
|
|
" e.type AS \"type\", " +
|
|
|
" e.sf_type AS \"type\", " +
|
|
|
" o.id AS \"outpatientId\", " +
|
|
|
" o.icd10_name AS \"icd10Name\", " +
|
|
|
" o.medical_state AS \"medicalState\", " +
|
|
@ -11836,7 +11836,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
if (patientDO==null){
|
|
|
return PageEnvelop.getError("找不到该患者",-1);
|
|
|
}
|
|
|
StringBuffer sql = new StringBuffer(" SELECT DISTINCT b.*, c.oneself_pickup_flg,c.type,f.job_title_code,f.job_title_name FROM (SELECT a.* FROM wlyy_prescription a left join wlyy_outpatient o ON o.id=a.outpatient_id WHERE o.consumer = '");
|
|
|
StringBuffer sql = new StringBuffer(" SELECT DISTINCT b.*, c.oneself_pickup_flg,c.sf_type as \"type\",f.job_title_code,f.job_title_name FROM (SELECT a.* FROM wlyy_prescription a left join wlyy_outpatient o ON o.id=a.outpatient_id WHERE o.consumer = '");
|
|
|
StringBuffer countSql = new StringBuffer("select COUNT(DISTINCT b.id) count FROM (SELECT a.* FROM wlyy_prescription a left join wlyy_outpatient o ON o.id=a.outpatient_id WHERE o.consumer = '");
|
|
|
/*if (consumerflag){
|
|
|
sql.append(" WHERE o.consumer = '");
|
|
@ -17222,6 +17222,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
if (StringUtils.isNoneBlank(sysDictDO.getDictValue())){
|
|
|
com.alibaba.fastjson.JSONObject obj = com.alibaba.fastjson.JSONObject.parseObject(sysDictDO.getDictValue());
|
|
|
String amStartStr = DateUtil.getStringDateShort()+" "+obj.getString("amStartDate");
|
|
|
String sftcFlag = obj.getString("sftcFlag");
|
|
|
String amEndStr = DateUtil.getStringDateShort()+" "+obj.getString("amEndDate");
|
|
|
String pmStartStr = DateUtil.getStringDateShort()+" "+obj.getString("pmStartDate");
|
|
|
String pmEndStr = DateUtil.getStringDateShort()+" "+obj.getString("pmEndDate");
|
|
@ -17230,17 +17231,26 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
Date amEndDate = DateUtil.strToDateLong(amEndStr);
|
|
|
Date pmStartDate = DateUtil.strToDateLong(pmStartStr);
|
|
|
Date pmEndDate = DateUtil.strToDateLong(pmEndStr);
|
|
|
if (amStartDate.compareTo(nowDate)<0&&amEndDate.compareTo(nowDate)>0){
|
|
|
flag = true;
|
|
|
} else if (pmStartDate.compareTo(nowDate)<0&&pmEndDate.compareTo(nowDate)>0) {
|
|
|
flag = true;
|
|
|
if (sftcFlag.equalsIgnoreCase("1")){
|
|
|
if (amStartDate.compareTo(nowDate)<0&&amEndDate.compareTo(nowDate)>0){
|
|
|
flag = true;
|
|
|
} else if (pmStartDate.compareTo(nowDate)<0&&pmEndDate.compareTo(nowDate)>0) {
|
|
|
flag = true;
|
|
|
}else {
|
|
|
flag = false;
|
|
|
}
|
|
|
LocalDate today = LocalDate.now();
|
|
|
int dayOfWeek = today.getDayOfWeek().getValue();
|
|
|
System.out.println(dayOfWeek+"=====================");
|
|
|
if (dayOfWeek==6){
|
|
|
if (amStartDate.compareTo(nowDate)<0&&amEndDate.compareTo(nowDate)>0){
|
|
|
flag = true;
|
|
|
}
|
|
|
}
|
|
|
}else {
|
|
|
flag = false;
|
|
|
flag=false;
|
|
|
}
|
|
|
}
|
|
|
LocalDate today = LocalDate.now();
|
|
|
int dayOfWeek = today.getDayOfWeek().getValue();
|
|
|
System.out.println(dayOfWeek+"=====================");
|
|
|
return flag;
|
|
|
}
|
|
|
|