From 4e5b96b8eac7ab444b35681211c2f09dbb8af653 Mon Sep 17 00:00:00 2001
From: hang <872297557@qq.com>
Date: Thu, 26 Oct 2023 10:03:10 +0800
Subject: [PATCH] xx
---
IRaCIS.Core.API/IRaCIS.Core.API.xml | 9 +++++
.../IRaCIS.Core.Application.xml | 37 ++++++++++++++++++-
.../Service/Visit/SubjectVisitService.cs | 3 +-
3 files changed, 46 insertions(+), 3 deletions(-)
diff --git a/IRaCIS.Core.API/IRaCIS.Core.API.xml b/IRaCIS.Core.API/IRaCIS.Core.API.xml
index 5e57621b6..5198124a0 100644
--- a/IRaCIS.Core.API/IRaCIS.Core.API.xml
+++ b/IRaCIS.Core.API/IRaCIS.Core.API.xml
@@ -300,6 +300,15 @@
+
+
+ new 医生详情 下载指定简历
+
+
+
+
+
+
下载多个医生的所有附件
diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index c0fc753c7..4650ad18a 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -4813,6 +4813,11 @@
Path
+
+
+ 分组分类
+
+
问题分类
@@ -6598,6 +6603,11 @@
问题分类
+
+
+ 分组分类
+
+
单位
@@ -6676,6 +6686,11 @@
问题分类
+
+
+ 分组分类
+
+
数据来源
@@ -7024,6 +7039,11 @@
问题分类
+
+
+ 分组分类
+
+
单位
@@ -7084,6 +7104,11 @@
问题分类
+
+
+ 分组分类
+
+
备注
@@ -7439,6 +7464,11 @@
问题分类
+
+
+ 分组分类
+
+
限制编辑
@@ -7769,6 +7799,11 @@
问题分类
+
+
+ 分组分类
+
+
数据来源
@@ -13183,7 +13218,7 @@
-
+
获取阅片外层问题
diff --git a/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs b/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs
index 2c7f9e564..695454728 100644
--- a/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs
+++ b/IRaCIS.Core.Application/Service/Visit/SubjectVisitService.cs
@@ -267,8 +267,7 @@ namespace IRaCIS.Core.Application.Services
foreach (var t in studyList)
{
t.SeriesList = await _repository.Where(s => s.StudyId == t.StudyId)
- .WhereIf(isReading == 1, s => s.IsReading).OrderBy(s => s.SeriesNumber).
- ThenBy(s => s.SeriesTime)
+ .WhereIf(isReading == 1, s => s.IsReading).OrderBy(s => s.SeriesNumber).ThenBy(s => s.SeriesTime)
.ProjectTo(_mapper.ConfigurationProvider).ToListAsync();