From 6b9f9a107e259713ddceace1ac5d273189143887 Mon Sep 17 00:00:00 2001 From: chenqi Date: Wed, 1 Apr 2026 12:45:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=8B=E6=9C=AF=E5=8C=BB=E5=98=B1?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E6=98=BE=E7=A4=BA=E4=BF=AE=E5=A4=8D=20-=20SQ?= =?UTF-8?q?L=E8=BF=94=E5=9B=9Ecategory=5Fenum=E4=BD=9C=E4=B8=BAadvice=5Fty?= =?UTF-8?q?pe=EF=BC=8C=E5=89=8D=E7=AB=AF=E6=B7=BB=E5=8A=A0=E6=89=8B?= =?UTF-8?q?=E6=9C=AF=E7=B1=BB=E5=9E=8B=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/regdoctorstation/AdviceManageAppMapper.xml | 2 +- .../src/views/inpatientDoctor/home/components/order/index.vue | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/openhis-server-new/openhis-application/src/main/resources/mapper/regdoctorstation/AdviceManageAppMapper.xml b/openhis-server-new/openhis-application/src/main/resources/mapper/regdoctorstation/AdviceManageAppMapper.xml index 94d32fb7..44e4b9fa 100644 --- a/openhis-server-new/openhis-application/src/main/resources/mapper/regdoctorstation/AdviceManageAppMapper.xml +++ b/openhis-server-new/openhis-application/src/main/resources/mapper/regdoctorstation/AdviceManageAppMapper.xml @@ -281,7 +281,7 @@ AND T1.refund_device_id IS NULL ORDER BY T1.status_enum) UNION ALL - (SELECT 3 AS advice_type, + (SELECT COALESCE(T1.category_enum, 3) AS advice_type, T1.id AS request_id, T1.id || '-3' AS unique_key, T1.requester_id AS requester_id, diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue index 654628dc..fb3938f4 100644 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue @@ -449,6 +449,10 @@ const adviceTypeList = ref([ label: '诊疗', value: 3, }, + { + label: '手术', + value: 4, + }, { label: '全部', value: '',