From 46f7ec96a951dd4937778f3480d86f7291265456 Mon Sep 17 00:00:00 2001
From: Elliott <2423414394@qq.com>
Date: Tue, 23 Dec 2025 14:53:48 +0800
Subject: [PATCH] =?UTF-8?q?update:=E5=8C=BB=E4=BF=9D=E4=BB=A3=E7=A0=81?=
=?UTF-8?q?=E6=98=A0=E5=B0=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../medicalInsuranceReconciliationResult.html | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/src/main/resources/templates/financialReconciliation/medicalInsuranceReconciliationResult.html b/src/main/resources/templates/financialReconciliation/medicalInsuranceReconciliationResult.html
index 40b4a7d..8337615 100644
--- a/src/main/resources/templates/financialReconciliation/medicalInsuranceReconciliationResult.html
+++ b/src/main/resources/templates/financialReconciliation/medicalInsuranceReconciliationResult.html
@@ -73,6 +73,7 @@
+
@@ -85,6 +86,11 @@
+
+
+
+
+
@@ -212,12 +218,18 @@
if(d.insutype === '310') return '职工医保';
if(d.insutype === '390') return '居民医保';
if(d.insutype === '510') return '公务员补助';
+ if(d.insutype === '99410') return '工商保险';
return d.insutype;
}},
{field: 'clr_type', title: '清算类别', align: 'center', width: 100, templet: function(d){
if(d.clr_type === '11') return '普通门诊';
if(d.clr_type === '21') return '住院';
if(d.clr_type === '31') return '门诊慢特病';
+ if(d.clr_type === '6101') return '门诊慢特病(高血压)';
+ if(d.clr_type === '6102') return '门诊慢特病(糖尿病)';
+ if(d.clr_type === '999913') return '居民门诊统筹';
+ if(d.clr_type === '999914') return '职工医保门诊共济';
+ if(d.clr_type === '999916') return '其他/非专项医疗费用';
return d.clr_type;
}},
{field: 'medfee_sumamt', title: '医疗费用总额', align: 'center', width: 130},
@@ -399,12 +411,18 @@
if(data.insutype === '310') insutypeText = '310-职工基本医疗保险';
if(data.insutype === '390') insutypeText = '390-城乡居民基本医疗保险';
if(data.insutype === '510') insutypeText = '510-公务员医疗补助';
+ if(data.insutype === '99410') insutypeText = '99410-工商保险';
$("#detail_insutype").text(insutypeText || '-');
let clrTypeText = data.clr_type;
if(data.clr_type === '11') clrTypeText = '11-普通门诊';
if(data.clr_type === '21') clrTypeText = '21-住院';
if(data.clr_type === '31') clrTypeText = '31-门诊慢特病';
+ if(data.clr_type === '6101') clrTypeText = '6101-门诊慢特病(高血压)';
+ if(data.clr_type === '6102') clrTypeText = '6102-门诊慢特病(糖尿病)';
+ if(data.clr_type === '999913') clrTypeText = '999913-居民门诊统筹';
+ if(data.clr_type === '999914') clrTypeText = '999914-职工医保门诊共济';
+ if(data.clr_type === '999916') clrTypeText = '999916-其他/非专项医疗费用';
$("#detail_clr_type").text(clrTypeText || '-');
$("#detail_medfee_sumamt").text(data.medfee_sumamt || '0.00');