Forráskód Böngészése

医师职称列表返回

chengyao 3 éve
szülő
commit
3d83458b44

+ 3 - 0
src/main/java/com/diagbot/config/ResourceServerConfigurer.java

@@ -98,6 +98,8 @@ public class ResourceServerConfigurer extends ResourceServerConfigurerAdapter {
                 .antMatchers("/console/homePageLevelStatistics").permitAll()
                 .antMatchers("/console/homePageLevelStatisticsXY").permitAll()
                 .antMatchers("/console/export/homePageLevelXYExport").permitAll()
+                .antMatchers("/console/homePageLevelStatisticsXYByDept").permitAll()
+                .antMatchers("/console/export/homePageLevelXYExportByDept").permitAll()
                 .antMatchers("/console/leaveHosCount").permitAll()
                 .antMatchers("/console/medicalRecordIndicator").permitAll()
                 .antMatchers("/console/codingMonthly").permitAll()
@@ -211,6 +213,7 @@ public class ResourceServerConfigurer extends ResourceServerConfigurerAdapter {
                 .antMatchers("/consoleByDept/beHosCountByDept").permitAll()
                 .antMatchers("/consoleByDept/casesEntryStatisticsByDept").permitAll()
                 .antMatchers("/bas/doctor/getList").permitAll()
+                .antMatchers("/bas/doctor/getDoctorProfessorList").permitAll()
                 .antMatchers("/consoleByDept/homePageOrGoodLevelByDept").permitAll()
                 .antMatchers("/print/export/homePageLevelExportByDept").permitAll()
                 .antMatchers("/print/export/homePageOrLevelExportByDept").permitAll()

+ 3 - 0
src/main/java/com/diagbot/config/security/UrlAccessDecisionManager.java

@@ -142,6 +142,8 @@ public class UrlAccessDecisionManager implements AccessDecisionManager {
                 || matchers("/console/homePageLevelStatistics", request)
                 || matchers("/console/homePageLevelStatisticsXY", request)
                 || matchers("/console/export/homePageLevelXYExport", request)
+                || matchers("/console/homePageLevelStatisticsXYByDept", request)
+                || matchers("/console/export/homePageLevelXYExportByDept", request)
                 || matchers("/console/leaveHosCount", request)
                 || matchers("/console/levelPercentGroupByDeptPage", request)
                 || matchers("/console/levelStatistics", request)
@@ -255,6 +257,7 @@ public class UrlAccessDecisionManager implements AccessDecisionManager {
                 || matchers("/consoleByDept/beHosCountByDept", request)
                 || matchers("/consoleByDept/casesEntryStatisticsByDept", request)
                 || matchers("/bas/doctor/getList", request)
+                || matchers("/bas/doctor/getDoctorProfessorList", request)
                 || matchers("/consoleByDept/homePageOrGoodLevelByDept", request)
                 || matchers("/print/export/homePageLevelExportByDept", request)
                 || matchers("/print/export/homePageOrLevelExportByDept", request)

+ 1 - 1
src/main/resources/mapper/BehospitalInfoMapper.xml

@@ -3380,7 +3380,7 @@
 
         SELECT
            t4.*,
-        ifnull(bas.professo,'')as professor
+        ifnull(bas.professor,'')as professor
         FROM (
         SELECT
         t1.deptId,

+ 3 - 0
src/main/resources/mapper/QcresultInfoMapper.xml

@@ -1683,6 +1683,9 @@
         <if test="filterPageVO.deptName != null and filterPageVO.deptName != ''">
             AND a.beh_dept_name = #{filterPageVO.deptName}
         </if>
+        <if test="filterPageVO.doctorName != null and filterPageVO.doctorName != ''">
+            AND a.doctor_name = #{filterPageVO.doctorName}
+        </if>
         <if test="filterPageVO.casesId != null and filterPageVO.casesId != 0">
             AND d.cases_id = #{filterPageVO.casesId}
         </if>