From 6550f26cbb24f2fa589d731ac81ce68d7c988d9d Mon Sep 17 00:00:00 2001
From: wxd <123@qq.com>
Date: Thu, 20 Feb 2025 10:56:38 +0800
Subject: [PATCH] 0220
---
.../PacsBusiness/PacsBusinessAppService.cs | 2 +-
.../RegisterCheckPictures/RegisterCheckPictureAppService.cs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs b/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
index 3db9eca..7f7dc50 100644
--- a/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
+++ b/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
@@ -1341,7 +1341,7 @@ namespace Shentun.Pacs.PacsBusiness
DataRow row = oldRegisterAsbitemList.Rows[0];
#region 档案
- var patientName = row["patient_name"].ToString();
+ var patientName = row["patient_name"].ToString().Replace("\n", "").Replace("\t", "").Replace("\r", "");
var sexId = ConvertSex(row["sex_id"].ToString());
var mobileTelephone = row["mobile_telephone"].ToString();
var telephone = row["telephone"].ToString();
diff --git a/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs b/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
index 5dc3641..eba151b 100644
--- a/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
+++ b/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
@@ -142,7 +142,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
///
- /// 图片上传功能 base64 支持批量 yong
+ /// 图片上传功能 base64 支持批量 医生诊台手动上传图片
///
///
///
@@ -356,7 +356,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
///
- /// 导入检查图片 根据检查单号
+ /// 导入检查图片 根据检查单号 Pacs看图下载图片使用
///
///
[HttpPost("api/app/RegisterCheckPicture/ImportRegisterCheckPicture")]