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