Compare commits

..

No commits in common. "07b63077d15f1784e9208191a328ccda08ca7011" and "013b9720b3ec510873b158e5a569d19a7ca72e35" have entirely different histories.

5 changed files with 5 additions and 5 deletions

View File

@ -203,7 +203,7 @@ namespace IRaCIS.Api.Controllers
if (!await _useRepository.AnyAsync(t => t.Id == Guid.Parse(userId) && t.EmailToken == token && t.IsFirstAdd))
{
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "" : "ErrorThe initialization link has expired.")} ";
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "" : "ErrorThe initialization link has expired. Return")} ";
}
return Redirect(decodeUrl);

View File

@ -976,7 +976,7 @@ namespace IRaCIS.Core.Application.Contracts
/// <summary>
/// 全局阅片
/// </summary>
public bool IsGlobalReading { get; set; } = false;
public bool IsGlobalReading { get; set; } = true;
/// <summary>
/// 仲裁阅片

View File

@ -360,7 +360,7 @@ namespace IRaCIS.Application.Contracts
public DateTime? ReadingInfoSignTime { get; set; }
public bool IsGlobalReading { get; set; } = false;
public bool IsGlobalReading { get; set; } = true;
//是否附加评估
public bool IsAdditionalAssessment { get; set; }

View File

@ -112,7 +112,7 @@ public class ReadingQuestionCriterionTrial : BaseAddAuditEntity
public bool IsReadingPeriod { get; set; } = true;
[Comment("是否生成全局阅片任务")]
public bool IsGlobalReading { get; set; } = false;
public bool IsGlobalReading { get; set; } = true;
[Comment("是否签名")]
public bool IsSigned { get; set; } = false;

View File

@ -177,7 +177,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
[MaxLength]
public string BodyPartTypes { get; set; } = "鼻咽部|脑部|颈部|胸部|上/下腹部|盆腔|全身|其他";
public string Modalitys { get; set; } = "CT|MRI";
public string Modalitys { get; set; } = string.Empty;
[NotMapped]
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();