导入修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
8defcae83f
commit
a9f2f506d3
|
|
@ -3653,7 +3653,8 @@ namespace IRaCIS.Core.Application.Service
|
|||
task.ReadingVersionEnum = criterionInfo.ReadingVersionEnum;
|
||||
task.ReadingToolList = criterionInfo.ReadingToolList;
|
||||
task.IsExistUnprocessedFeedback = await _userFeedBackRepository.AnyAsync(x => x.VisitTaskId == task.VisitTaskId && x.State == 0);
|
||||
task.IsViewStudyPart = visitTaskInfo.IsViewStudyPart;
|
||||
task.IsViewStudyPart = visitTaskInfo.ReadingCategory != ReadingCategory.Judge && visitTaskInfo.IsViewStudyPart;
|
||||
// 添加默认答案
|
||||
if (inDto.VisitTaskId == null && visitTaskInfo.ReadingTaskState != ReadingTaskState.HaveSigned)
|
||||
{
|
||||
await AddDefaultValueToTask(task.VisitTaskId);
|
||||
|
|
|
|||
|
|
@ -479,7 +479,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
catch (Exception)
|
||||
{
|
||||
|
||||
errorRow.Add(i);
|
||||
errorRow.Add(i+1);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -338,7 +338,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
catch (Exception)
|
||||
{
|
||||
|
||||
errorRow.Add(i);
|
||||
errorRow.Add(i+1);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -367,7 +367,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
{ string.Empty,string.Empty},
|
||||
};
|
||||
|
||||
int row = 2;
|
||||
int row = 3;
|
||||
foreach (var item in measuredValueList)
|
||||
{
|
||||
row++;
|
||||
|
|
@ -667,7 +667,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
catch (Exception)
|
||||
{
|
||||
|
||||
errorRow.Add(i);
|
||||
errorRow.Add(i+1);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue