Commit 92e410a3 authored by 任鸿志's avatar 任鸿志

工伤审核

parent 840a6b5b
...@@ -171,6 +171,8 @@ ...@@ -171,6 +171,8 @@
? selectTableArr[0].settle_type.name + '-转-医保个账' ? selectTableArr[0].settle_type.name + '-转-医保个账'
: man_name == '4' : man_name == '4'
? selectTableArr[0].settle_type.name + '-转-门诊慢性病' ? selectTableArr[0].settle_type.name + '-转-门诊慢性病'
: man_name == '5'
? selectTableArr[0].settle_type.name + '-转-工伤结算'
: selectTableArr[0] : selectTableArr[0]
? selectTableArr[0].settle_type.name ? selectTableArr[0].settle_type.name
: '' : ''
...@@ -750,6 +752,10 @@ export default { ...@@ -750,6 +752,10 @@ export default {
value: '1', value: '1',
label: '自费', label: '自费',
}, },
{
value: '5',
label: '工伤',
},
], ],
channels: '', channels: '',
man_name: '', man_name: '',
...@@ -1352,7 +1358,7 @@ export default { ...@@ -1352,7 +1358,7 @@ export default {
} }
}) })
// 医技预约channel=4不走审核 省职也要加审核 25-7-10 慢病审核] // 医技预约channel=4不走审核 省职也要加审核 25-7-10 慢病审核]
if ((this.channel != '4' && (this.man_name == '4' || (this.ismb && this.man_name == ''))) || (this.patientData.insurance_type.value == 'PROVINCE' && this.man_name != '1' && this.man_name != '3')) { if ((this.channel != '4' && (this.man_name == '4' || (this.ismb && this.man_name == ''))) || (this.patientData.insurance_type.value == 'PROVINCE' && this.man_name != '1' && this.man_name != '3' && this.man_name != '5')) {
this.yujiesuanLoading = true this.yujiesuanLoading = true
const { code, data } = await verifyFeeStatus({ const { code, data } = await verifyFeeStatus({
patient_id: this.patientData.patient_id, patient_id: this.patientData.patient_id,
...@@ -1401,7 +1407,7 @@ export default { ...@@ -1401,7 +1407,7 @@ export default {
this.carddialogFormVisible = true this.carddialogFormVisible = true
}, },
ybjs() { ybjs() {
if ((this.checktipes() && this.man_name != '1') || this.man_name == '2' || this.man_name == '3' || this.man_name == '4') { if ((this.checktipes() && this.man_name != '1') || this.man_name == '2' || this.man_name == '3' || this.man_name == '4' ||this.man_name == '5') {
if (this.channel == '5') { if (this.channel == '5') {
this.$message({ this.$message({
message: '药房药库禁止医保结算,请转为自费结算!', message: '药房药库禁止医保结算,请转为自费结算!',
...@@ -1477,7 +1483,7 @@ export default { ...@@ -1477,7 +1483,7 @@ export default {
} else { } else {
this.qrjs() this.qrjs()
} }
} else if ((this.ztvalue.value == 'SELF_PAY' || this.man_name == '1') && this.man_name != '2' && this.man_name != '3' && this.man_name != '4') { } else if ((this.ztvalue.value == 'SELF_PAY' || this.man_name == '1') && this.man_name != '2' && this.man_name != '3' && this.man_name != '4' && this.man_name != '5') {
this.selfPre() this.selfPre()
} else { } else {
this.qrjs() this.qrjs()
......
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