修改领取任务提示
parent
c90ac27ec1
commit
6ca56c5341
|
@ -981,7 +981,10 @@ namespace IRaCIS.Core.Application.Image.QA
|
|||
{
|
||||
if (await _subjectVisitRepository.AnyAsync(t => t.CurrentActionUserId != null && t.IsTake && t.Id == subjectVisitId))
|
||||
{
|
||||
throw new BusinessValidationFailedException("当前访视已被领取,不允许领取");
|
||||
//throw new BusinessValidationFailedException("当前访视已被领取,不允许领取");
|
||||
|
||||
return ResponseOutput.NotOk("当前访视已被领取,不允许领取",ApiResponseCodeEnum.NeedTips);
|
||||
|
||||
}
|
||||
|
||||
if (await _subjectVisitRepository.AnyAsync(t => t.Trial.QCQuestionConfirmedUserId == null && t.Id == subjectVisitId))
|
||||
|
|
Loading…
Reference in New Issue