Commit b671192e authored by 任鸿志's avatar 任鸿志

fix(jiesuan): 禁止药房药库使用医保结算

- 在 outpatientCharging.vue 和 outpatientYfang.vue 中添加了对渠道为 '5' 的判断
- 当渠道为 '5' 时,显示错误消息并阻止医保结算
- 修改了 ybjs 方法的逻辑,确保药房药库只能进行自费结算
parent 4126d040
......@@ -1818,6 +1818,13 @@ export default {
},
ybjs() {
if ((this.checktipes() && this.man_name != '1') || this.man_name == '2' || this.man_name == '3') {
if (this.channel=='5') {
this.$message({
message: '药房药库禁止医保结算,请转为自费结算!',
type: 'error',
})
return false
}
// this.yibaoshow = true
this.yibaoshowNew = true
this.yujiesuanload = false
......
......@@ -1684,9 +1684,14 @@ export default {
},
ybjs() {
if (this.checktipes() && this.man_name == false) {
// this.yibaoshow = true
this.yibaoshowNew = true
this.yujiesuanload = false
this.$message({
message: '药房药库禁止医保结算,请转为自费结算!',
type: 'error',
})
return false
// this.yibaoshowNew = true
// this.yujiesuanload = false
} else {
// this.jiesuanadmin()
this.zfBeforePre()
......
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