Commit 4126d040 authored by 任鸿志's avatar 任鸿志

fix(settle): 禁止器械和药物临床试验门诊使用医保结算

- 在 outpatient.vue 中添加 settleType 参数
- 在 ybjs 方法中增加对 settleType 为 'mjzys' 的判断
- 如果结算类型为 'mjzys',显示错误消息并阻止医保结算
parent 92e5bc98
......@@ -745,6 +745,7 @@ export default {
jsroundData: {},
ismb: false,
channel: '',
settleType:''
}
},
mounted() {
......@@ -754,6 +755,7 @@ export default {
// if (this.$route.query?.jobNumber) {
// localStorage.setItem('jobNumber', this.$route.query.jobNumber)
// }
this.settleType=this.$route.query?.settleType || ''
this.channel = this.$route.query?.channel || ''
this.titleshow = this.$route.query?.layoutShow || ''
this.cardNo = this.$route.query?.cardNo || ''
......@@ -1749,6 +1751,13 @@ export default {
},
ybjs() {
if (this.checktipes() && this.man_name == false) {
if (this.settleType=='mjzys') {
this.$message({
message: '器械临床试验门诊、药物临床试验门诊禁止医保结算',
type: 'error',
})
return false
}
// this.yibaoshow = true
this.yibaoshowNew = true
this.yujiesuanload = false
......
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