Commit 40fc6075cbb432af913bfa64b16ca848a9867ca6

Authored by liquanyu
1 parent 1fe8559618

结算管理修改

Showing 2 changed files with 4 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/HealthChargeController.java View file @ 40fc607
... ... @@ -93,10 +93,11 @@
93 93 @RequestParam(required = false) Integer source,
94 94 @RequestParam(required = false) Integer status,
95 95 @RequestParam(required = false) Integer type,
  96 + @RequestParam(required = false) String doctorId,
96 97 HttpServletRequest httpServletRequest) {
97 98 LoginContext loginState = (LoginContext) httpServletRequest.getAttribute("loginContext");
98 99  
99   - BaseResponse baseResponse =healthChargeFacade.setHealthCharged(healthType, hospitalId, time, source, status, type, loginState.getId());
  100 + BaseResponse baseResponse =healthChargeFacade.setHealthCharged(doctorId,healthType, hospitalId, time, source, status, type, loginState.getId());
100 101 return baseResponse;
101 102 }
102 103  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/HealthChargeFacade.java View file @ 40fc607
... ... @@ -316,7 +316,7 @@
316 316 * @param userId
317 317 * @return
318 318 */
319   - public BaseResponse setHealthCharged(Integer healthType, String hospitalId, String time, Integer source, Integer status, Integer type, Integer userId)
  319 + public BaseResponse setHealthCharged(String doctorId,Integer healthType, String hospitalId, String time, Integer source, Integer status, Integer type, Integer userId)
320 320 {
321 321  
322 322 ChargeRecordModel recordModel = new ChargeRecordModel();
... ... @@ -325,6 +325,7 @@
325 325 healthChargeQuery.setHealthType(healthType);
326 326 healthChargeQuery.setYn(YnEnums.YES.getId());
327 327 healthChargeQuery.setHospitalId(hospitalId);
  328 + healthChargeQuery.setDoctorId(doctorId);
328 329 healthChargeQuery.setSource(source);
329 330 healthChargeQuery.setStatus(status);
330 331 healthChargeQuery.setType(type);