Uat_Study
parent
86d9189991
commit
49ac88399f
|
@ -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;
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue