Uat_Study
parent
92d1273506
commit
b65ae6a58a
|
@ -17,7 +17,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
|
|
||||||
public int AuditState { get; set; }
|
public int AuditState { get; set; }
|
||||||
public DateTime? AuditSignTime { get; set; }
|
public DateTime? AuditSignTime { get; set; }
|
||||||
public int DoctorUserIdeaEnum { get; set; }
|
public MedicalReviewDoctorUserIdea DoctorUserIdeaEnum { get; set; }
|
||||||
public Guid? MedicalManagerUserId { get; set; }
|
public Guid? MedicalManagerUserId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -49,7 +49,6 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public String TrialSiteCode { get; set; } = String.Empty;
|
public String TrialSiteCode { get; set; } = String.Empty;
|
||||||
public string SubjectCode { get; set; } = String.Empty;
|
public string SubjectCode { get; set; } = String.Empty;
|
||||||
|
|
||||||
public bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
|
|
||||||
foreach (var taskId in command.TaskIdList)
|
foreach (var taskId in command.TaskIdList)
|
||||||
{
|
{
|
||||||
await _taskMedicalReviewRepository.AddAsync(new TaskMedicalReview() { TrialId = command.TrialId, VisitTaskId = taskId, MedicalManagerUserId = command.MedicalManagerUserId });
|
await _taskMedicalReviewRepository.AddAsync(new TaskMedicalReview() { TrialId = command.TrialId, VisitTaskId = taskId, MedicalManagerUserId = command.MedicalManagerUserId ,AllocateTime=DateTime.Now});
|
||||||
}
|
}
|
||||||
|
|
||||||
await _taskMedicalReviewRepository.SaveChangesAsync();
|
await _taskMedicalReviewRepository.SaveChangesAsync();
|
||||||
|
|
Loading…
Reference in New Issue