This commit is contained in:
2022-09-30 09:54:35 +08:00
parent e5a3dce331
commit c297bf0293
2 changed files with 17 additions and 1 deletions
@@ -2562,7 +2562,7 @@ namespace IRaCIS.Core.Application.Service.Allocation
var list = await _visitTaskRepository.Where(filterExpression)
//IR 申请的时候,仅仅看到影响自己的
.WhereIf(_userInfo.UserTypeEnumInt == (int)UserTypeEnum.IndependentReviewer, t => t.DoctorUserId == _userInfo.Id
.WhereIf(_userInfo.UserTypeEnumInt == (int)UserTypeEnum.IndependentReviewer, t => t.DoctorUserId == _userInfo.Id)
.OrderBy(t => t.VisitTaskNum).ProjectTo<InfluenceTaskInfo>(_mapper.ConfigurationProvider).ToListAsync();
#region