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

fix(outpatientCharging): 调整医技预约审核逻辑

- 在医技预约时,增加对省职保险类型的审核
- 仅当 channel 为 4 且保险类型非省职时,不走审核流程
- 其他情况下,维持原有的审核逻辑
parent 463bb0c3
......@@ -1757,8 +1757,8 @@ export default {
this.ismb = true
}
})
// 医技预约channel=4不走审核
if ((!this.ismb && this.man_name != '1') || this.channel == '4') {
// 医技预约channel=4不走审核 省职也要加审核 25-7-10
if ((!this.ismb && this.man_name != '1') || this.channel == '4' && this.form.insurance_type != 'PROVINCE') {
if (this.orders.length > 0) {
this.ybjs()
} else {
......
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