From 0e055fdadc00e46c33009d56680a1c1569fe39ce Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 19 Jun 2026 11:43:50 +0800 Subject: [PATCH] =?UTF-8?q?fix(#776):=20zhaoyun=20(=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=90=88=E5=85=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../drugDistribution/components/summaryMedicineList.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue b/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue index 5f6b8011f..06d13a5b2 100755 --- a/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue +++ b/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue @@ -191,10 +191,8 @@ function handleGetPrescription() { const params = { encounterIds: encounterIds || undefined }; - if (props.therapyEnum !== undefined) { - params.therapyEnum = props.therapyEnum; - } - params.tcmFlag = props.drugType === '1' ? 0 : 1; + // 注意:汇总单查询不传 tcmFlag / therapyEnum,因为汇总单表(wor_supply_request) + // 没有这些列,传入会导致 PostgreSQL 报 "column 'tcm_flag' does not exist" getMedicineSummary(params).then((res) => { medicineSummaryFormList.value = res.data.records; loading.value = false;