| | |
| | | return AjaxResult.error(); |
| | | } |
| | | |
| | | @GetMapping("/signOrderInfo") |
| | | public AjaxResult signOrderInfo(@RequestParam("tjNum") String tjNum){ |
| | | List<Map<String, Object>> djdInfos = tjOrderService.selectDjdInfo(tjNum); |
| | | Map<String, Object> userInfo = tjOrderService.selectDjdUserInfo(tjNum); |
| | | HashMap<String, Object> hashMap = new HashMap<>(); |
| | | hashMap.put("djd",djdInfos); |
| | | hashMap.put("user",userInfo); |
| | | return AjaxResult.success(hashMap); |
| | | } |
| | | |
| | | // @Transactional |
| | | public void getAjaxResults(String cusIdcard) { |
| | | if (!"".equals(cusIdcard) && cusIdcard != null) { |
| | |
| | | // 静态资源,可匿名访问 |
| | | .antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll() |
| | | .antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll() |
| | | .antMatchers("/jmreport/**","/lis/**","/pacs/**","/callBack/**").anonymous() |
| | | .antMatchers("/jmreport/**","/lis/**","/pacs/**","/callBack/**","/hosp/order/signOrderInfo").anonymous() |
| | | // 除上面外的所有请求全部需要鉴权认证 |
| | | .anyRequest().authenticated() |
| | | .and() |
| | |
| | | "/cus/package/projectListByPacId/**", |
| | | "/cus/hospital/getHospList", |
| | | "/lis/**","/api/His/**","/pacs/**", |
| | | "/callBack/**" |
| | | "/callBack/**", |
| | | "/hosp/order/signOrderInfo" |
| | | }); |
| | | } |
| | | } |
| | |
| | | |
| | | |
| | | @Select("SELECT \n" + |
| | | " '1' AS xh, " + |
| | | " ROW_NUMBER() OVER (ORDER BY d.djd_num) AS xh, " + |
| | | " REPLACE(d.dept_name, '门诊', '') AS ksmc,\n" + |
| | | " d.official_web AS ksdz,\n" + |
| | | " ifnull(d.official_web,'') AS ksdz,\n" + |
| | | " e.tjxm,\n" + |
| | | " e.tjjg\n" + |
| | | "FROM sys_dept d\n" + |