|
@@ -642,6 +642,12 @@ public class DataAnalysisFacade {
|
|
|
}
|
|
|
|
|
|
private void clickInnerPageSet(GetQcClickInnerPageVO getQcClickInnerPageVO) {
|
|
|
+ if(StringUtils.isNotBlank(getQcClickInnerPageVO.getDoctorId())){
|
|
|
+ getQcClickInnerPageVO.setDoctorId(transferredMeaning(getQcClickInnerPageVO.getDoctorId()));
|
|
|
+ }
|
|
|
+ if(StringUtils.isNotBlank(getQcClickInnerPageVO.getDoctorName())){
|
|
|
+ getQcClickInnerPageVO.setDoctorName(transferredMeaning(getQcClickInnerPageVO.getDoctorName()));
|
|
|
+ }
|
|
|
//入参验证
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
|
|
|
Date startDate = null;
|
|
@@ -658,6 +664,15 @@ public class DataAnalysisFacade {
|
|
|
getQcClickInnerPageVO.setHospitalId(Long.parseLong(SysUserUtils.getCurrentHospitalID()));
|
|
|
}
|
|
|
|
|
|
+ public String transferredMeaning(String tranStr){
|
|
|
+ if( tranStr.contains("%")){
|
|
|
+ tranStr = tranStr.replace("%", "\\%");
|
|
|
+ }
|
|
|
+ if( tranStr.contains("_")){
|
|
|
+ tranStr = tranStr.replace("_","\\_");
|
|
|
+ }
|
|
|
+ return tranStr;
|
|
|
+ };
|
|
|
private void entryDefectSet(GetEntryDefectImproveVO getEntryDefectImproveVO) {
|
|
|
getEntryDefectImproveVO.setCurrent(1L);
|
|
|
getEntryDefectImproveVO.setSize(Long.MAX_VALUE);
|