Compare commits
6 Commits
013b9720b3
...
07b63077d1
| Author | SHA1 | Date |
|---|---|---|
|
|
07b63077d1 | |
|
|
f924b4985a | |
|
|
40b986e310 | |
|
|
146b0635c8 | |
|
|
e76a5d189e | |
|
|
6f81c39c62 |
|
|
@ -203,7 +203,7 @@ namespace IRaCIS.Api.Controllers
|
||||||
|
|
||||||
if (!await _useRepository.AnyAsync(t => t.Id == Guid.Parse(userId) && t.EmailToken == token && t.IsFirstAdd))
|
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. Return")} ";
|
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "您的初始化链接已过期" : "Error!The initialization link has expired.")} ";
|
||||||
}
|
}
|
||||||
|
|
||||||
return Redirect(decodeUrl);
|
return Redirect(decodeUrl);
|
||||||
|
|
|
||||||
|
|
@ -976,7 +976,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 全局阅片
|
/// 全局阅片
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsGlobalReading { get; set; } = true;
|
public bool IsGlobalReading { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 仲裁阅片
|
/// 仲裁阅片
|
||||||
|
|
|
||||||
|
|
@ -360,7 +360,7 @@ namespace IRaCIS.Application.Contracts
|
||||||
|
|
||||||
public DateTime? ReadingInfoSignTime { get; set; }
|
public DateTime? ReadingInfoSignTime { get; set; }
|
||||||
|
|
||||||
public bool IsGlobalReading { get; set; } = true;
|
public bool IsGlobalReading { get; set; } = false;
|
||||||
|
|
||||||
//是否附加评估
|
//是否附加评估
|
||||||
public bool IsAdditionalAssessment { get; set; }
|
public bool IsAdditionalAssessment { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ public class ReadingQuestionCriterionTrial : BaseAddAuditEntity
|
||||||
public bool IsReadingPeriod { get; set; } = true;
|
public bool IsReadingPeriod { get; set; } = true;
|
||||||
|
|
||||||
[Comment("是否生成全局阅片任务")]
|
[Comment("是否生成全局阅片任务")]
|
||||||
public bool IsGlobalReading { get; set; } = true;
|
public bool IsGlobalReading { get; set; } = false;
|
||||||
|
|
||||||
[Comment("是否签名")]
|
[Comment("是否签名")]
|
||||||
public bool IsSigned { get; set; } = false;
|
public bool IsSigned { get; set; } = false;
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
|
||||||
|
|
||||||
[MaxLength]
|
[MaxLength]
|
||||||
public string BodyPartTypes { get; set; } = "鼻咽部|脑部|颈部|胸部|上/下腹部|盆腔|全身|其他";
|
public string BodyPartTypes { get; set; } = "鼻咽部|脑部|颈部|胸部|上/下腹部|盆腔|全身|其他";
|
||||||
public string Modalitys { get; set; } = string.Empty;
|
public string Modalitys { get; set; } = "CT|MRI";
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();
|
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue