Commit 374ab221 authored by 任鸿志's avatar 任鸿志

feat(settle): 更新结算方式选项和逻辑

- 修改结算方式选项,增加门诊慢性病、门诊统筹等选项
- 调整自费选项的值为 '1'
- 在选择结算方式时重置管理员名称
- 根据是否是实干家调整人群类别参数
parent a0800f51
...@@ -679,20 +679,23 @@ export default { ...@@ -679,20 +679,23 @@ export default {
adminloading: false, adminloading: false,
options: [ options: [
{ {
value: '1', value: '4',
label: '转为自费账单', label: '门诊慢性病',
}, },
{ {
value: '2', value: '2',
label: '转为医保账单', label: '门诊统筹',
}, },
{ {
value: '3', value: '3',
label: '转为纯个账账单', label: '医保个账',
}, },
{ {
value: '4', value: '1',
label: '转为慢病账单', label: '自费',
}, },
], ],
channels: '', channels: '',
...@@ -1381,6 +1384,7 @@ export default { ...@@ -1381,6 +1384,7 @@ export default {
}, },
//选中左边处方,展示右边方法 //选中左边处方,展示右边方法
seletei(e) { seletei(e) {
this.man_name=''
let searchByFind = this.tableData.cost.filter(item => item.settle_type.name === e) let searchByFind = this.tableData.cost.filter(item => item.settle_type.name === e)
let arr = [] let arr = []
for (let index = 0; index < searchByFind.length; index++) { for (let index = 0; index < searchByFind.length; index++) {
...@@ -2309,7 +2313,7 @@ export default { ...@@ -2309,7 +2313,7 @@ export default {
get_zfbl({ get_zfbl({
item_code: row.item_code, item_code: row.item_code,
//yltclb:row.settle_type.is_mb==true?'4':'6', //yltclb:row.settle_type.is_mb==true?'4':'6',
rqlb: this.patientData.crowd_type, rqlb:this.is_sy?'E': this.patientData.crowd_type,
//xzbz:row.settle_type.is_gs==true?'D':'C', //xzbz:row.settle_type.is_gs==true?'D':'C',
settle_type: row.settle_type.code, settle_type: row.settle_type.code,
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment