mj-li há 2 meses atrás
pai
commit
d5dd043243

+ 2 - 2
healthy-data/healthy-doctor-data/src/main/java/com/xxh/cloud/healthy/data/framework/modules/biz/service/impl/DoctorDwdPatientDataBizServiceImpl.java

@@ -1477,8 +1477,8 @@ public class DoctorDwdPatientDataBizServiceImpl implements DoctorDwdPatientDataB
                 .isNull("b.id")
                 .ge("a.apply_date", DateUtil.date(startDate).toDateStr())
                 .lt("a.apply_date", DateUtil.date(endDate).toDateStr())
-                .ge("b.inpatient_date", DateUtil.date(startDate).toDateStr())
-                .ge("b.inpatient_date", DateUtil.date(DateUtil.offsetDay(startDate, inHospitalLostDay)).toDateStr())
+//                .ge("b.inpatient_date", DateUtil.date(startDate).toDateStr())
+//                .ge("b.inpatient_date", DateUtil.date(DateUtil.offsetDay(startDate, inHospitalLostDay)).toDateStr())
         );
         if (CollectionUtil.isEmpty(list)) {
             return new ArrayList<>(0);

+ 1 - 1
healthy-service/healthy-service-manager-com-api/src/main/java/com/xxh/cloud/healthy/service/com/manager/controller/DoctorFollowUpManagerController.java

@@ -40,7 +40,7 @@ public class DoctorFollowUpManagerController {
     @ApiOperation(value = "分页", response = DoctorFollowUpVO.class)
     public Result<PageData<DoctorFollowUpVO>> query(@RequestBody DoctorFollowUpQueryDTO params) {
         LoginUser user= AuthContextUtils.getCurrentLoginUser();
-//        params.setDoctorId(user.getId()); TODO mj-li
+        params.setDoctorId(user.getId());
         PageData<DoctorFollowUpVO> data = doctorFollowUpBizService.page(params);
         return new Result<PageData<DoctorFollowUpVO>>().ok(data);
     }