修改医学审核

Test.EIImageViewer
hang 2023-03-01 16:41:54 +08:00
parent dcb231f788
commit 4471ecf150
1 changed files with 6 additions and 1 deletions

View File

@ -591,10 +591,15 @@ namespace IRaCIS.Core.Application.Service
await _taskMedicalReviewRepository.UpdatePartialFromQueryAsync(x => !x.IsClosedDialog && x.Id == inDto.TaskMedicalReviewId, x => new TaskMedicalReview()
{
IsClosedDialog = true,
IsApplyHeavyReading=true,
MedicalDialogCloseEnum = MedicalDialogClose.IRApplyReReading,
IsApplyHeavyReading = true,
FileName = inDto.FileName,
ImagePath = JsonConvert.SerializeObject(inDto.FileList),
DisagreeReason = inDto.DisagreeReason,
});
}