修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
05189b4e5a
commit
64c275a91c
|
@ -805,6 +805,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
x.DoctorUserId==taskinfo.DoctorUserId).FirstOrDefaultAsync();
|
x.DoctorUserId==taskinfo.DoctorUserId).FirstOrDefaultAsync();
|
||||||
if (recistTask != null)
|
if (recistTask != null)
|
||||||
{
|
{
|
||||||
|
_userInfo.AuditIdentification = "HCC";
|
||||||
|
|
||||||
|
|
||||||
var trialReadingCriterion=await _readingQuestionCriterionTrialRepository.Where(x => x.Id == taskinfo.TrialReadingCriterionId).FirstOrDefaultAsync();
|
var trialReadingCriterion=await _readingQuestionCriterionTrialRepository.Where(x => x.Id == taskinfo.TrialReadingCriterionId).FirstOrDefaultAsync();
|
||||||
|
|
|
@ -43,6 +43,11 @@
|
||||||
|
|
||||||
Guid? BatchId { get; set; }
|
Guid? BatchId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 稽查额外字符串
|
||||||
|
/// </summary>
|
||||||
|
string? AuditIdentification { get; set; }
|
||||||
|
|
||||||
bool IsNotNeedInspection { get; set; }
|
bool IsNotNeedInspection { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3910,18 +3910,18 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
//{
|
//{
|
||||||
// entityTypeName = "New/" + "UserSigned";
|
// entityTypeName = "New/" + "UserSigned";
|
||||||
//}
|
//}
|
||||||
|
string result = string.Empty;
|
||||||
//默认规则
|
//默认规则
|
||||||
if (IsDistinctionInterface)
|
if (IsDistinctionInterface)
|
||||||
{
|
{
|
||||||
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
||||||
if (isSelfDefine)
|
if (isSelfDefine)
|
||||||
{
|
{
|
||||||
return $"{_userInfo.RequestUrl}/{entityTypeName}";
|
result= $"{_userInfo.RequestUrl}/{entityTypeName}";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return $"{_userInfo.RequestUrl}/{entityTypeName}/{type}";
|
result= $"{_userInfo.RequestUrl}/{entityTypeName}/{type}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -3931,15 +3931,22 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
||||||
if (isSelfDefine)
|
if (isSelfDefine)
|
||||||
{
|
{
|
||||||
return $"{entityTypeName}";
|
result = $"{entityTypeName}";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return $"{entityTypeName}/{type}";
|
result = $"{entityTypeName}/{type}";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_userInfo.AuditIdentification != null)
|
||||||
|
{
|
||||||
|
result = result + "/" + _userInfo.AuditIdentification;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue