From f458b011a8eb453cd1e4fdc7aa87f37dd297c8d4 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期二, 22 九月 2026 17:15:13 +0800
Subject: [PATCH] 【丽水】推送提示工号
---
smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml | 50 ++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 46 insertions(+), 4 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml b/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml
index 4baa70c..9a47f1f 100644
--- a/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/PatMedInhospMapper.xml
@@ -370,7 +370,38 @@
order by b.endtime desc
</if>
<if test="cry != null and cry==0">
- order by b.starttime desc , b.bed_no asc
+ <!--
+ 鍦ㄩ櫌鎮h�咃細鍙寜鍏ラ櫌搴婁綅姝�/鍊掑簭锛坆edSort=asc 鎴� desc锛夛紝涓嶄紶鏃朵繚鎸侀粯璁ゆ帓搴忥紙鍏ラ櫌鏃堕棿鍊掑簭 + 搴婁綅姝e簭锛夈��
+ 搴婁綅鎸夎嚜鐒跺簭鎺掞紙鍙敤 5.7 涔熸敮鎸佺殑 REGEXP/CAST/TRIM/LENGTH锛屼笉渚濊禆 8.0 鐨� REGEXP_REPLACE锛夛細
+ 1) 搴婁綅涓虹┖/绌轰覆鐨勬帓鏈�鍚�
+ 2) 绾暟瀛楀簥浣嶆帓鍓嶉潰锛屾寜鏁板�煎ぇ灏忥紙2 鍦� 10 鍓嶏級
+ 3) 甯﹀瓧姣�/姹夊瓧鐨勫簥浣嶆寜闀垮害 + 瀛楃涓诧紙A2 鍦� A12 鍓嶏級
+ 4) inhospid 鍏滃簳锛屼繚璇佺炕椤甸『搴忕ǔ瀹�
+ 鍊掑簭鍙弽杞� 2)銆�3) 涓ょ粍鍐呴儴椤哄簭锛氱┖搴婁綅浠嶆帓鏈�鍚庯紝绾暟瀛椾粛鍦ㄥ墠銆�
+ -->
+ <choose>
+ <when test='"asc".equals(bedSort)'>
+ order by
+ coalesce(trim(b.bed_no), '') = '' ,
+ (trim(b.bed_no) regexp '^[0-9]+$') = 0 ,
+ cast(trim(b.bed_no) as unsigned) asc ,
+ length(trim(b.bed_no)) asc ,
+ trim(b.bed_no) asc ,
+ b.inhospid asc
+ </when>
+ <when test='"desc".equals(bedSort)'>
+ order by
+ coalesce(trim(b.bed_no), '') = '' ,
+ (trim(b.bed_no) regexp '^[0-9]+$') = 0 ,
+ cast(trim(b.bed_no) as unsigned) desc ,
+ length(trim(b.bed_no)) desc ,
+ trim(b.bed_no) desc ,
+ b.inhospid asc
+ </when>
+ <otherwise>
+ order by b.starttime desc , b.bed_no asc
+ </otherwise>
+ </choose>
</if>
</select>
@@ -808,7 +839,8 @@
<if test="deptcode != null">#{deptcode},</if>
<if test="deptname != null">#{deptname},</if>
<if test="roomno != null">#{roomno},</if>
- <if test="bedNo != null">#{bedNo},</if>
+ <!-- 搴婁綅绌轰覆锛圚IS 鏃犲綋鍓嶅簥浣嶏級钀藉簱涓� null锛屼繚鎸�"鏈夊�� or null"涓ょ鐘舵�� -->
+ <if test="bedNo != null">nullif(#{bedNo}, ''),</if>
<if test="orgid != null">#{orgid},</if>
<if test="campusid != null">#{campusid},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
@@ -894,7 +926,7 @@
#{item.serialnum}, #{item.hospitalname}, #{item.hospitalcode}, #{item.hospitaldistrictcode},
#{item.hospitaldistrictname},
#{item.icd10code}, #{item.diagname}, #{item.starttime}, #{item.endtime}, #{item.deptcode}, #{item.deptname},
- #{item.roomno}, #{item.bedNo},
+ #{item.roomno}, nullif(#{item.bedNo}, ''),
#{item.orgid}, #{item.delFlag}, #{item.updateBy}, #{item.updateTime}, #{item.createBy}, #{item.createTime},
#{item.isupload},
#{item.uploadTime}, #{item.patid}, #{item.leavediagname}, #{item.leaveicd10code}, #{item.drcode},
@@ -919,6 +951,11 @@
<update id="updatePatMedInhosp" parameterType="com.smartor.domain.PatMedInhosp">
update pat_med_inhosp
<trim prefix="SET" suffixOverrides=",">
+ <!--
+ 鍏滃簳锛氫笅闈㈠瓧娈靛叏涓虹┖鏃讹紙渚嬪璋冪敤鏂瑰彧浼犱簡 inhospid锛夛紝濡傛灉娌℃湁浠讳綍 SET 椤逛細鐢熸垚
+ "update pat_med_inhosp where inhospid = ?" 杩欑闈炴硶 SQL銆傝繖閲屾斁涓�涓嚜璧嬪�硷紝淇濊瘉 SET 涓嶄负绌轰笖涓嶆敼鏁版嵁銆�
+ -->
+ inhospid = inhospid,
<if test="serialnum != null">serialnum = #{serialnum},</if>
<if test="hospitalname != null">hospitalname = #{hospitalname},</if>
<if test="hospitalcode != null">hospitalcode = #{hospitalcode},</if>
@@ -931,7 +968,12 @@
<if test="deptcode != null">deptcode = #{deptcode},</if>
<if test="deptname != null">deptname = #{deptname},</if>
<if test="roomno != null">roomno = #{roomno},</if>
- <if test="bedNo != null">bed_no = #{bedNo},</if>
+ <!--
+ 搴婁綅锛欻IS 浼犵┖涓蹭唬琛�"褰撳墠娌℃湁搴婁綅"锛堟崲搴娿�佹垨浜哄凡绂婚櫌杩樻病鍔炲嚭闄㈡墜缁級锛岃惤搴撲负 null锛�
+ 瀹屽叏涓嶄紶(null)鍒欎笉鏀瑰姩搴婁綅銆傜┖涓蹭笌 null 蹇呴』鍒嗗紑鍒ゆ柇锛屼笉鑳介兘璺宠繃锛屽惁鍒欏簥浣嶄笉浼氳娓呮帀銆�
+ -->
+ <if test='bedNo != null and !"".equals(bedNo)'>bed_no = #{bedNo},</if>
+ <if test='bedNo != null and "".equals(bedNo)'>bed_no = null,</if>
<if test="orgid != null">orgid = #{orgid},</if>
<if test="campusid != null">campusid = #{campusid},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
--
Gitblit v1.9.3