医学审核对话增加用户类型
parent
523f09d8aa
commit
c15ef3137c
|
@ -585,6 +585,18 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
var entity = item.Entity as ReadingMedicalReviewDialog;
|
||||
|
||||
var extraIdentification = string.Empty;
|
||||
|
||||
//失效的时候 不区分标识
|
||||
if (_userInfo.UserTypeEnumInt==(int)UserTypeEnum.MIM)
|
||||
{
|
||||
extraIdentification = $"/MIM";
|
||||
}
|
||||
else
|
||||
{
|
||||
extraIdentification = $"/IR";
|
||||
}
|
||||
|
||||
await InsertInspection<ReadingMedicalReviewDialog>(entity, type, x => new InspectionConvertDTO()
|
||||
{
|
||||
IsDistinctionInterface = false,
|
||||
|
@ -592,6 +604,8 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
|
||||
ObjectRelationParentId = entity.TaskMedicalReviewId,
|
||||
|
||||
ExtraIndentification=extraIdentification
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue