Uat_Study
hang 2022-07-07 16:28:50 +08:00
parent 8aef6ddf16
commit 648761eff4
3 changed files with 16 additions and 18 deletions

View File

@ -1613,11 +1613,21 @@
文件名称
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SendMedicalReviewDialogInDto.DoctorUserIdeaEnum">
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ApplyReReadingInDto.DoctorUserIdeaEnum">
<summary>
阅片人是否认同
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ApplyReReadingInDto.DisagreeReason">
<summary>
不同意重阅原因
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.ApplyReReadingInDto.IsApplyHeavyReading">
<summary>
是否申请重阅
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SendMedicalReviewDialogInDto.IsHaveQuestion">
<summary>
是否有问题
@ -1633,16 +1643,6 @@
审核建议
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SendMedicalReviewDialogInDto.DisagreeReason">
<summary>
不同意重阅原因
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SendMedicalReviewDialogInDto.IsApplyHeavyReading">
<summary>
是否申请重阅
</summary>
</member>
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetMedicalReviewReadingTaskOutDto.IsClosedDialog">
<summary>
是否关闭
@ -2506,9 +2506,9 @@
<param name="inDto"></param>
<returns></returns>
</member>
<member name="M:IRaCIS.Core.Application.Service.ReadingMedicalReviewService.ApplyReReading(IRaCIS.Core.Application.Service.Reading.Dto.ApplyReReadingInDto)">
<member name="M:IRaCIS.Core.Application.Service.ReadingMedicalReviewService.IRSendMedicalReviewDialog(IRaCIS.Core.Application.Service.Reading.Dto.ApplyReReadingInDto)">
<summary>
IR 申请重阅
IR发送消息
</summary>
<param name="inDto"></param>
<returns></returns>

View File

@ -20,8 +20,6 @@ namespace IRaCIS.Core.Application.ViewModel
public UserSimpleInfo AnalysisDoctorUser { get; set; }
public UserSimpleInfo CompareDoctorUser { get; set; }
public int? GeneratedSubjectCount { get; set; }

View File

@ -275,7 +275,7 @@ namespace IRaCIS.Core.Application.Service
{
var query = from enroll in _repository.Where<Enroll>(t => t.TrialId == trialId)
join user in _repository.Where<User>() on enroll.DoctorId equals user.DoctorId
join taskConsistentRule in _repository.Where<TaskConsistentRule>(t=>t.TrialId==addOrEdit.TrialId) on user.Id equals taskConsistentRule.AnalysisDoctorUserId into c
join taskConsistentRule in _repository.Where<TaskConsistentRule>(t=>t.TrialId== trialId) on user.Id equals taskConsistentRule.AnalysisDoctorUserId into c
from taskConsistentRule in c.DefaultIfEmpty()
select new
{
@ -298,7 +298,7 @@ namespace IRaCIS.Core.Application.Service
{
var verifyExp1 = new EntityVerifyExp<TaskConsistentRule>()
{
VerifyExp = t => t.AnalysisDoctorUserId == addOrEdit.AnalysisDoctorUserId && t.TrialId == addOrEdit.TrialId,
VerifyExp = t => t.AnalysisDoctorUserId == doctor.DoctorUserId && t.TrialId == trialId,
VerifyMsg = "已有该医生配置,不允许继续增加"
};
@ -308,7 +308,7 @@ namespace IRaCIS.Core.Application.Service
}
else
{
await _taskConsistentRuleRepository.UpdatePartialFromQueryAsync(t => t.TrialId == addOrEdit.TrialId, c => new TaskConsistentRule()
await _taskConsistentRuleRepository.UpdatePartialFromQueryAsync(t => t.TrialId == trialId, c => new TaskConsistentRule()
{
PlanSubjectCount = c.PlanSubjectCount,
PlanVisitCount = c.PlanVisitCount,