Uat_Study
parent
cf8b587faa
commit
eeb70778b9
|
@ -219,8 +219,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public string DisagreeReason { get; set; } = string.Empty;
|
||||
|
||||
public bool IsCopyOrigenalForms { get; set; }
|
||||
public bool IsCopyFollowForms { get; set; }
|
||||
public bool? IsCopyOrigenalForms { get; set; } = false;
|
||||
public bool? IsCopyFollowForms { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否申请重阅
|
||||
|
|
|
@ -410,8 +410,8 @@ namespace IRaCIS.Core.Application.Service
|
|||
{
|
||||
await _visitTaskService.ApplyReReading(new ApplyReReadingCommand()
|
||||
{
|
||||
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms,
|
||||
IsCopyFollowForms=inDto.IsCopyFollowForms,
|
||||
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms??false,
|
||||
IsCopyFollowForms=inDto.IsCopyFollowForms ?? false,
|
||||
RequestReReadingReason = inDto.RequestReReadingReason,
|
||||
RequestReReadingType = RequestReReadingType.DocotorApply,
|
||||
TrialId = inDto.TrialId,
|
||||
|
|
Loading…
Reference in New Issue