Browse Source

0220

master
wxd 9 months ago
parent
commit
6550f26cbb
  1. 2
      src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
  2. 4
      src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs

2
src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs

@ -1341,7 +1341,7 @@ namespace Shentun.Pacs.PacsBusiness
DataRow row = oldRegisterAsbitemList.Rows[0]; DataRow row = oldRegisterAsbitemList.Rows[0];
#region 档案 #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 sexId = ConvertSex(row["sex_id"].ToString());
var mobileTelephone = row["mobile_telephone"].ToString(); var mobileTelephone = row["mobile_telephone"].ToString();
var telephone = row["telephone"].ToString(); var telephone = row["telephone"].ToString();

4
src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs

@ -142,7 +142,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
/// <summary> /// <summary>
/// 图片上传功能 base64 支持批量 yong
/// 图片上传功能 base64 支持批量 医生诊台手动上传图片
/// </summary> /// </summary>
/// <param name="input"></param> /// <param name="input"></param>
/// <returns></returns> /// <returns></returns>
@ -356,7 +356,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
/// <summary> /// <summary>
/// 导入检查图片 根据检查单号
/// 导入检查图片 根据检查单号 Pacs看图下载图片使用
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
[HttpPost("api/app/RegisterCheckPicture/ImportRegisterCheckPicture")] [HttpPost("api/app/RegisterCheckPicture/ImportRegisterCheckPicture")]

Loading…
Cancel
Save