Uat_Study
he 2022-07-07 17:12:46 +08:00
parent 86d9189991
commit 49ac88399f
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid TrialId { get; set; }
public bool IsCopyOrigenalForms { get; set; } = false;
public bool? IsCopyOrigenalForms { get; set; } = false;
public string RequestReReadingReason { get; set; } = string.Empty;

View File

@ -373,7 +373,7 @@ namespace IRaCIS.Core.Application.Service
{
await _visitTaskService.ApplyReReading(new ApplyReReadingCommand()
{
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms,
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms.Value,
RequestReReadingReason = inDto.RequestReReadingReason,
RequestReReadingType = RequestReReadingType.DocotorApply,
TrialId = inDto.TrialId,