Uat_Study
parent
d42181a40c
commit
3eaa1c110b
|
@ -243,7 +243,7 @@ namespace IRaCIS.Application.Services
|
|||
}).ToListAsync();
|
||||
|
||||
var tableRowAnswers=await _readingTableAnswerRowInfoRepository.Where(x => x.VisitTaskId == baseLineTaskId).Select(x=> new ReadingTableAnswerRowInfo() {
|
||||
Id = NewId.NextGuid(),
|
||||
|
||||
IsCurrentTaskAdd=false,
|
||||
QuestionId=x.QuestionId,
|
||||
RowIndex=x.RowIndex,
|
||||
|
@ -251,6 +251,11 @@ namespace IRaCIS.Application.Services
|
|||
VisitTaskId=visitTaskId
|
||||
}).ToListAsync();
|
||||
|
||||
tableRowAnswers.ForEach(x =>
|
||||
{
|
||||
x.Id = NewId.NextGuid();
|
||||
});
|
||||
|
||||
List<QuestionMark?> notNeedCopyMarks = new List<QuestionMark?>()
|
||||
{
|
||||
QuestionMark.MajorAxis,
|
||||
|
|
|
@ -45,11 +45,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// RowIndex
|
||||
/// </summary>
|
||||
public int RowIndex { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MeasureData
|
||||
/// </summary>
|
||||
public string MeasureData { get; set; }
|
||||
/// MeasureData
|
||||
/// </summary>
|
||||
public string MeasureData { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// CreateTime
|
||||
|
|
Loading…
Reference in New Issue