Uat_Study
he 2023-05-05 16:11:59 +08:00
parent e21e1488e7
commit 4abad486d2
5 changed files with 14 additions and 6 deletions

View File

@ -530,6 +530,10 @@
"FileStore_TemplateFileStoragePathInvalid": "No corresponding file was found on the storage path for the data template file of FileStoreHelper, please contact system maintenance personnel.",
//SendEmailHelper
"SendEmail_SendFail": "Failed to send email in SendEmailHelper. Your operation was unsuccessful, please check your email or contact maintenance personnel.",
"SendEmail_NoRecipient": "No recipient in SendEmailHelper."
"SendEmail_NoRecipient": "No recipient in SendEmailHelper.",
// ------------------------------------------------------------IRaCIS.Core.Domain--------------------------------------------------------------------
//Trial
"Trial_number": "The serial number consists of five digits. The first two digits are the center number and the last three digits are the serial number. The serial number must be the same as that recorded by the EDC"
}

View File

@ -530,6 +530,10 @@
"FileStore_TemplateFileStoragePathInvalid": "数据模板文件存储路径上未找对应文件,请联系系统运维人员。",
//SendEmailHelper
"SendEmail_SendFail": "邮件发送失败,您进行的操作未能成功,请检查邮箱或联系维护人员",
"SendEmail_NoRecipient": "没有收件人"
"SendEmail_NoRecipient": "没有收件人",
// ------------------------------------------------------------IRaCIS.Core.Domain--------------------------------------------------------------------
//Trial
"Trial_number": "编号由5位数字组成前2位为中心编号后3位为顺序号请与EDC录入的编号保持一致"
}

View File

@ -1622,7 +1622,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
/// {
/// 靶病灶疗效为 ICPD
/// }
/// else if (上一访视评估为iUPD||本次访视SOD增加不小于5mm)
/// else if (上一访视评估为iUPD&&本次访视SOD增加不小于5mm)
/// {
/// 靶病灶疗效为 ICPD
/// }
@ -1723,8 +1723,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
// 靶病灶疗效为 ICPD
result = TargetAssessment.iCPD;
}
// else if (上一访视评估为iUPD||本次访视SOD增加不小于5mm)
else if (resultData.LastTaskTarget.EqEnum(OverallAssessment.iUPD) || resultData.SODAddGreaterThan5)
// else if (上一访视评估为iUPD&&本次访视SOD增加不小于5mm)
else if (resultData.LastTaskTarget.EqEnum(OverallAssessment.iUPD) && resultData.SODAddGreaterThan5)
{
// 靶病灶疗效为 ICPD
result = TargetAssessment.iCPD;

View File

@ -152,7 +152,7 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 受试者编号具体规则
/// </summary>
public string SubjectCodeRule { get; set; } = "编号由5位数字组成前2位为中心编号后3位为顺序号请与EDC录入的编号保持一致";
public string SubjectCodeRule { get; set; } = StaticData.International("Trial_number");
/// <summary>
/// 是否 提醒受试者编号规则
/// </summary>

Binary file not shown.