修改一版
This commit is contained in:
@@ -199,7 +199,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public bool? IsCopyOrigenalForms { get; set; } = false;
|
||||
|
||||
|
||||
public string RequestReReadingReason { get; set; } = string.Empty;
|
||||
|
||||
@@ -219,6 +219,9 @@ 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; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否申请重阅
|
||||
/// </summary>
|
||||
|
||||
@@ -389,7 +389,8 @@ namespace IRaCIS.Core.Application.Service
|
||||
{
|
||||
await _visitTaskService.ApplyReReading(new ApplyReReadingCommand()
|
||||
{
|
||||
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms.Value,
|
||||
IsCopyOrigenalForms = inDto.IsCopyOrigenalForms,
|
||||
IsCopyFollowForms=inDto.IsCopyFollowForms,
|
||||
RequestReReadingReason = inDto.RequestReReadingReason,
|
||||
RequestReReadingType = RequestReReadingType.DocotorApply,
|
||||
TrialId = inDto.TrialId,
|
||||
@@ -534,6 +535,7 @@ namespace IRaCIS.Core.Application.Service
|
||||
{
|
||||
var taskMedicalReviewquery = _taskMedicalReviewRepository.Where(x => x.TrialId == inDto.TrialId).Include(x => x.VisitTask)
|
||||
.Where(x => x.VisitTask.DoctorUserId == _userInfo.Id)
|
||||
.Where(x=>!x.IsHaveQuestion)
|
||||
.Select(x => new GetIRMedicalFeedbackListOutDto
|
||||
{
|
||||
Id = x.Id,
|
||||
|
||||
Reference in New Issue
Block a user