Compare commits

..

6 Commits

Author SHA1 Message Date
hang 07b63077d1 Merge branch 'Uat_IRC_Net8' into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-01-20 11:34:35 +08:00
hang f924b4985a Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-01-20 11:27:40 +08:00
hang 40b986e310 修改默认值 和账号已过期 2025-01-20 11:27:39 +08:00
he 146b0635c8 修改默认值
continuous-integration/drone/push Build is passing Details
2025-01-20 11:22:53 +08:00
he e76a5d189e Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2025-01-20 11:17:26 +08:00
he 6f81c39c62 全局阅片 默认值改为false 2025-01-20 11:17:24 +08:00
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. Return")} ";
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "" : "ErrorThe initialization link has expired.")} ";
}
return Redirect(decodeUrl);

View File

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

View File

@ -360,7 +360,7 @@ namespace IRaCIS.Application.Contracts
public DateTime? ReadingInfoSignTime { get; set; }
public bool IsGlobalReading { get; set; } = true;
public bool IsGlobalReading { get; set; } = false;
//是否附加评估
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; } = true;
public bool IsGlobalReading { get; set; } = false;
[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; } = string.Empty;
public string Modalitys { get; set; } = "CT|MRI";
[NotMapped]
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();