From 67f1baf04aa78facd262dc450d8c1a0d79c2b66b Mon Sep 17 00:00:00 2001 From: wangjian963 <15215920+aprilry@user.noreply.gitee.com> Date: Thu, 18 Jun 2026 10:42:52 +0800 Subject: [PATCH] =?UTF-8?q?759=20=E3=80=90=E9=97=A8=E8=AF=8A=E5=8C=BB?= =?UTF-8?q?=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99=E3=80=91=E7=94=B5=E5=AD=90?= =?UTF-8?q?=E5=A4=84=E6=96=B9=E7=82=B9=E5=87=BB=E6=96=B0=E5=A2=9E=E5=A4=84?= =?UTF-8?q?=E6=96=B9=EF=BC=8C=E6=8A=A5=E5=8D=A1=E5=9C=A8100%=E5=8D=A1?= =?UTF-8?q?=E5=87=BA=E5=B1=8F=E5=B9=95=E4=B8=94=E8=AF=8A=E6=96=AD=E7=AD=89?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E6=A1=86=E6=97=A0=E6=95=B0=E6=8D=AE=E5=9B=9E?= =?UTF-8?q?=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/ElepMedicationInfoDto.java | 5 ++ .../DoctorStationElepPrescriptionMapper.xml | 4 ++ .../components/eprescriptiondialog.vue | 61 +++++++++++-------- .../components/eprescriptionlist.vue | 17 +++++- 4 files changed, 61 insertions(+), 26 deletions(-) diff --git a/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/doctorstation/dto/ElepMedicationInfoDto.java b/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/doctorstation/dto/ElepMedicationInfoDto.java index 2f2c9d2a3..200ff9ebd 100755 --- a/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/doctorstation/dto/ElepMedicationInfoDto.java +++ b/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/doctorstation/dto/ElepMedicationInfoDto.java @@ -67,6 +67,11 @@ public class ElepMedicationInfoDto { /** 诊断id */ @JsonSerialize(using = ToStringSerializer.class) private Long conditionId; + /** 诊断定义id */ + @JsonSerialize(using = ToStringSerializer.class) + private Long conditionDefId; + /** 慢病诊断编码 */ + private String opspDiseCode; /** 药品版本号 */ private String version; } diff --git a/healthlink-his-server/healthlink-his-application/src/main/resources/mapper/doctorstation/DoctorStationElepPrescriptionMapper.xml b/healthlink-his-server/healthlink-his-application/src/main/resources/mapper/doctorstation/DoctorStationElepPrescriptionMapper.xml index f92100c9b..39bac8b29 100755 --- a/healthlink-his-server/healthlink-his-application/src/main/resources/mapper/doctorstation/DoctorStationElepPrescriptionMapper.xml +++ b/healthlink-his-server/healthlink-his-application/src/main/resources/mapper/doctorstation/DoctorStationElepPrescriptionMapper.xml @@ -400,6 +400,8 @@ T1.rx_type_code, --处方类别 T1.rx_item_type_code, --处方项目类别 T1.condition_id, --诊断id + T1.condition_def_id, --诊断定义id + T1.opsp_dise_code, --慢病诊断编码 T1.version --药品版本号 FROM elep_medication_request AS T1 LEFT JOIN yb_catalog_drug_info AS T2 @@ -427,6 +429,8 @@ T1.rx_type_code, T1.rx_item_type_code, T1.condition_id, + T1.condition_def_id, + T1.opsp_dise_code, T1.version