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

refactor(outpatientCharging): 修改结算条件逻辑

- 在自费结算条件中增加了对 man_name 为 3 和 4 的判断
- 优化了结算流程的判断逻辑,提高了代码的准确性和可读性
parent 99e7a4f3
...@@ -1989,7 +1989,7 @@ export default { ...@@ -1989,7 +1989,7 @@ export default {
// } else { // } else {
// this.qrjs() // this.qrjs()
// } // }
} else if ((this.ztvalue.value == 'SELF_PAY' || this.man_name == '1') && this.man_name != '2') { } else if ((this.ztvalue.value == 'SELF_PAY' || this.man_name == '1') && this.man_name != '2' && this.man_name != '3'&& this.man_name != '4') {
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