Uat_Study
parent
eb890b0c76
commit
a5e7d6eca2
|
@ -312,12 +312,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsClosedDialog { get; set; }
|
public bool IsClosedDialog { get; set; }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 医学审核对话关闭原因
|
|
||||||
/// </summary>
|
|
||||||
public MedicalDialogClose MedicalDialogCloseEnum { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 对话关闭原因
|
/// 对话关闭原因
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -328,7 +328,6 @@ namespace IRaCIS.Core.Application.Service
|
||||||
await _taskMedicalReviewRepository.UpdatePartialFromQueryAsync(inDto.TaskMedicalReviewId, x => new TaskMedicalReview()
|
await _taskMedicalReviewRepository.UpdatePartialFromQueryAsync(inDto.TaskMedicalReviewId, x => new TaskMedicalReview()
|
||||||
{
|
{
|
||||||
IsClosedDialog = inDto.IsClosedDialog,
|
IsClosedDialog = inDto.IsClosedDialog,
|
||||||
MedicalDialogCloseEnum=inDto.MedicalDialogCloseEnum,
|
|
||||||
DialogCloseReason=inDto.DialogCloseReason,
|
DialogCloseReason=inDto.DialogCloseReason,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -388,7 +387,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
await _taskMedicalReviewRepository.BatchUpdateNoTrackingAsync(x => !x.IsClosedDialog && x.Id == inDto.TaskMedicalReviewId, x => new TaskMedicalReview()
|
await _taskMedicalReviewRepository.BatchUpdateNoTrackingAsync(x => !x.IsClosedDialog && x.Id == inDto.TaskMedicalReviewId, x => new TaskMedicalReview()
|
||||||
{
|
{
|
||||||
IsClosedDialog = true,
|
IsClosedDialog = true,
|
||||||
MedicalDialogCloseEnum= MedicalDialogClose.IRApplyReReading,
|
DialogCloseReason= "IR申请重阅",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
ReadingMedicalReviewDialog dialog = new ReadingMedicalReviewDialog()
|
ReadingMedicalReviewDialog dialog = new ReadingMedicalReviewDialog()
|
||||||
|
|
|
@ -153,12 +153,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsSendMessage { get; set; } = false;
|
public bool IsSendMessage { get; set; } = false;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 医学审核对话关闭原因
|
|
||||||
/// </summary>
|
|
||||||
public MedicalDialogClose MedicalDialogCloseEnum { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 对话关闭原因
|
/// 对话关闭原因
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue