Compare commits
No commits in common. "07b63077d15f1784e9208191a328ccda08ca7011" and "013b9720b3ec510873b158e5a569d19a7ca72e35" have entirely different histories.
07b63077d1
...
013b9720b3
|
|
@ -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" ? "您的初始化链接已过期" : "Error!The initialization link has expired.")} ";
|
||||
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "您的初始化链接已过期" : "Error!The initialization link has expired. Return")} ";
|
||||
}
|
||||
|
||||
return Redirect(decodeUrl);
|
||||
|
|
|
|||
|
|
@ -976,7 +976,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// <summary>
|
||||
/// 全局阅片
|
||||
/// </summary>
|
||||
public bool IsGlobalReading { get; set; } = false;
|
||||
public bool IsGlobalReading { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 仲裁阅片
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue