update:医保代码映射

This commit is contained in:
Elliott
2025-12-23 14:53:48 +08:00
parent ae385398fc
commit 46f7ec96a9

View File

@@ -73,6 +73,7 @@
<option value="310">职工基本医疗保险</option> <option value="310">职工基本医疗保险</option>
<option value="390">城乡居民基本医疗保险</option> <option value="390">城乡居民基本医疗保险</option>
<option value="510">公务员医疗补助</option> <option value="510">公务员医疗补助</option>
<option value="99410">工商保险</option>
</select> </select>
</div> </div>
</div> </div>
@@ -85,6 +86,11 @@
<option value="11">普通门诊</option> <option value="11">普通门诊</option>
<option value="21">住院</option> <option value="21">住院</option>
<option value="31">门诊慢特病</option> <option value="31">门诊慢特病</option>
<option value="6101">门诊慢特病(高血压)</option>
<option value="6102">门诊慢特病(糖尿病)</option>
<option value="999913">居民门诊统筹</option>
<option value="999914">职工医保门诊共济</option>
<option value="999916">其他/非专项医疗费用</option>
</select> </select>
</div> </div>
</div> </div>
@@ -212,12 +218,18 @@
if(d.insutype === '310') return '职工医保'; if(d.insutype === '310') return '职工医保';
if(d.insutype === '390') return '居民医保'; if(d.insutype === '390') return '居民医保';
if(d.insutype === '510') return '公务员补助'; if(d.insutype === '510') return '公务员补助';
if(d.insutype === '99410') return '工商保险';
return d.insutype; return d.insutype;
}}, }},
{field: 'clr_type', title: '清算类别', align: 'center', width: 100, templet: function(d){ {field: 'clr_type', title: '清算类别', align: 'center', width: 100, templet: function(d){
if(d.clr_type === '11') return '普通门诊'; if(d.clr_type === '11') return '普通门诊';
if(d.clr_type === '21') return '住院'; if(d.clr_type === '21') return '住院';
if(d.clr_type === '31') 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; return d.clr_type;
}}, }},
{field: 'medfee_sumamt', title: '医疗费用总额', align: 'center', width: 130}, {field: 'medfee_sumamt', title: '医疗费用总额', align: 'center', width: 130},
@@ -399,12 +411,18 @@
if(data.insutype === '310') insutypeText = '310-职工基本医疗保险'; if(data.insutype === '310') insutypeText = '310-职工基本医疗保险';
if(data.insutype === '390') insutypeText = '390-城乡居民基本医疗保险'; if(data.insutype === '390') insutypeText = '390-城乡居民基本医疗保险';
if(data.insutype === '510') insutypeText = '510-公务员医疗补助'; if(data.insutype === '510') insutypeText = '510-公务员医疗补助';
if(data.insutype === '99410') insutypeText = '99410-工商保险';
$("#detail_insutype").text(insutypeText || '-'); $("#detail_insutype").text(insutypeText || '-');
let clrTypeText = data.clr_type; let clrTypeText = data.clr_type;
if(data.clr_type === '11') clrTypeText = '11-普通门诊'; if(data.clr_type === '11') clrTypeText = '11-普通门诊';
if(data.clr_type === '21') clrTypeText = '21-住院'; if(data.clr_type === '21') clrTypeText = '21-住院';
if(data.clr_type === '31') clrTypeText = '31-门诊慢特病'; 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_clr_type").text(clrTypeText || '-');
$("#detail_medfee_sumamt").text(data.medfee_sumamt || '0.00'); $("#detail_medfee_sumamt").text(data.medfee_sumamt || '0.00');