Commit f70bf613cfad7ed6f457a8e34f266a81b58eea26
1 parent
1237124b45
Exists in
master
and in
8 other branches
修改新电子病历
Showing 1 changed file with 3 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntenatalExaminationController.java
View file @
f70bf61
... | ... | @@ -115,8 +115,9 @@ |
115 | 115 | @RequestMapping(method = RequestMethod.GET, value = "/antex/antexlist") |
116 | 116 | @ResponseBody |
117 | 117 | @TokenRequired |
118 | - public BaseResponse findAntExList(@Valid AntExListQueryRequest exListQueryRequest) { | |
119 | - return antenatalExaminationFacade.findAntExListTwo(exListQueryRequest); | |
118 | + public BaseResponse findAntExList(@Valid AntExListQueryRequest exListQueryRequest,HttpServletRequest request) { | |
119 | + LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); | |
120 | + return antenatalExaminationFacade.findAntExListTwo(exListQueryRequest,loginState.getId()); | |
120 | 121 | } |
121 | 122 | } |