Compare commits
No commits in common. "93a6bee01b7f0b85a72392be9ceb06e4be54471c" and "4048c286285cb3c02d2d95d7a7ce6e534b7102e0" have entirely different histories.
93a6bee01b
...
4048c28628
|
|
@ -6,7 +6,6 @@ using IRaCIS.Core.Infra.EFCore.Common;
|
|||
using IRaCIS.Core.Infrastructure;
|
||||
using MassTransit;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using MiniExcelLibs;
|
||||
|
|
@ -643,7 +642,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
/// <param name="taskId">任务Id</param>
|
||||
/// <param name="questionType">任务类型</param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
public string GetTaskanswer(List<ReadingTaskQuestionAnswer>? answerList, List<Dictionary>? dictionList, List<Dictionary>? unitDictionary, Guid taskId, QuestionType questionType)
|
||||
{
|
||||
var answerData = answerList.FirstOrDefault(x => x.VisitTaskId == taskId && x.ReadingQuestionTrial.QuestionType == questionType);
|
||||
|
|
@ -708,7 +706,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
/// </summary>
|
||||
/// <param name="visitTaskInfo"></param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
public async Task<string> GetReportExportNo(VisitTask visitTaskInfo)
|
||||
{
|
||||
if (visitTaskInfo.ReportExportDate != null && visitTaskInfo.ReportExportNum != null)
|
||||
|
|
@ -841,7 +838,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
/// <param name="questionMark">问题标识</param>
|
||||
/// <param name="rowIndex">索引</param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
public string GetTaskTableAnswer(List<ReadingTableQuestionAnswer>? tableAnswerList, List<Dictionary>? dictionList, List<Dictionary>? unitDictionary, Guid taskId, LesionType lesionType, QuestionMark questionMark, decimal rowIndex,bool AutoUnit=true)
|
||||
{
|
||||
var answerData = tableAnswerList.FirstOrDefault(x => x.VisitTaskId == taskId && x.ReadingQuestionTrial.LesionType == lesionType && x.ReadingTableQuestionTrial.QuestionMark == questionMark && x.RowIndex == rowIndex);
|
||||
|
|
@ -886,7 +882,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
/// <param name="rowinfoList"></param>
|
||||
/// <param name="lesionType"></param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
public async Task<List<Dictionary<string, object>>> GetLesionPic(List<ReadingTableAnswerRowInfo> rowinfoList, LesionType lesionType, Guid DownLoadGuid)
|
||||
{
|
||||
var lesionRowinfo = rowinfoList.Where(x => x.PicturePath != string.Empty && x.ReadingQuestionTrial.LesionType == lesionType).OrderBy(x => x.VisitTask.VisitTaskNum).OrderBy(x => x.RowIndex).ToList();
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using IRaCIS.Core.Application.Service.Reading.Dto;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using MiniSoftware;
|
||||
using System.Data;
|
||||
|
||||
|
|
@ -105,7 +104,6 @@ namespace IRaCIS.Core.Application.Service
|
|||
/// <param name="lesionType"></param>
|
||||
/// <param name="downLoadGuid"></param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
Task<List<Dictionary<string, object>>> GetLesionPic(List<ReadingTableAnswerRowInfo> rowinfoList, LesionType lesionType, Guid downLoadGuid);
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -117,7 +115,6 @@ namespace IRaCIS.Core.Application.Service
|
|||
/// <param name="taskId">任务Id</param>
|
||||
/// <param name="questionType">任务类型</param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
string GetTaskanswer(List<ReadingTaskQuestionAnswer>? answerList, List<Dictionary>? dictionList, List<Dictionary>? unitDictionary, Guid taskId, QuestionType questionType);
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -131,7 +128,6 @@ namespace IRaCIS.Core.Application.Service
|
|||
/// <param name="questionMark">问题标识</param>
|
||||
/// <param name="rowIndex">索引</param>
|
||||
/// <returns></returns>
|
||||
[ApiExplorerSettings(IgnoreApi = true)]
|
||||
string GetTaskTableAnswer(List<ReadingTableQuestionAnswer>? tableAnswerList, List<Dictionary>? dictionList, List<Dictionary>? unitDictionary, Guid taskId, LesionType lesionType, QuestionMark questionMark, decimal rowIndex, bool AutoUnit = true);
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in New Issue