Commit cd47782c authored by dragondean@qq.com's avatar dragondean@qq.com

兼容应收单收款账户设置相同账号导致判断异常、回显错误,已增加账户名称做比对校验

parent 21ec78aa
......@@ -1470,7 +1470,7 @@ export default {
setTimeout(() => {
this.addForm = { ...row };
let bank = this.bankData.find(
(v) => v.baAccountNum == this.addForm.accountNo
(v) => v.baAccountNum == this.addForm.accountNo && v.baAccountName == this.addForm.accountName
);
if (bank) this.addForm.accountId = bank.id;
this.setWriteOffAmount();
......
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