S-79
parent
a58d7c9314
commit
1f7fe0d854
|
@ -871,7 +871,9 @@ namespace IRaCIS.Core.Application.Service
|
||||||
{
|
{
|
||||||
await _readModuleRepository.UpdatePartialFromQueryAsync(x => inDto.ReadModuleId == x.Id, x => new ReadModule()
|
await _readModuleRepository.UpdatePartialFromQueryAsync(x => inDto.ReadModuleId == x.Id, x => new ReadModule()
|
||||||
{
|
{
|
||||||
IsPMConfirm = true
|
IsPMConfirm = true,
|
||||||
|
IsClinicalDataBlind=inDto.IsClinicalDataBlind,
|
||||||
|
IsClinicalDataComplete=inDto.IsClinicalDataComplete,
|
||||||
});
|
});
|
||||||
await _readModuleRepository.SaveChangesAsync();
|
await _readModuleRepository.SaveChangesAsync();
|
||||||
await _iReadingClinicalDataService.DealVisiTaskClinicalDataSignedAsync(inDto.TrialId, inDto.SubjectId, inDto.ReadModuleId, false, readModuleData.TrialReadingCriterionId);
|
await _iReadingClinicalDataService.DealVisiTaskClinicalDataSignedAsync(inDto.TrialId, inDto.SubjectId, inDto.ReadModuleId, false, readModuleData.TrialReadingCriterionId);
|
||||||
|
|
|
@ -222,6 +222,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public Guid ReadModuleId { get; set; }
|
public Guid ReadModuleId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 临床数据是否完整
|
||||||
|
/// </summary>
|
||||||
|
public bool? IsClinicalDataComplete { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 临床数据是否盲化
|
||||||
|
/// </summary>
|
||||||
|
public bool? IsClinicalDataBlind { get; set; }
|
||||||
|
|
||||||
public bool IsConfirm { get; set; }
|
public bool IsConfirm { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,6 +90,16 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
|
|
||||||
public Guid? DeleteUserId { get; set; }
|
public Guid? DeleteUserId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 临床数据是否完整
|
||||||
|
/// </summary>
|
||||||
|
public bool? IsClinicalDataComplete { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 临床数据是否盲化
|
||||||
|
/// </summary>
|
||||||
|
public bool? IsClinicalDataBlind { get; set; }
|
||||||
|
|
||||||
///// <summary>
|
///// <summary>
|
||||||
/////
|
/////
|
||||||
///// </summary>
|
///// </summary>
|
||||||
|
|
Loading…
Reference in New Issue