解决从销售订单转销售出库单的时候没有把账户带过去的bug

This commit is contained in:
jishenghua
2025-09-22 16:17:34 +08:00
parent 10fc7d1db1
commit 584192fbe7

View File

@@ -112,6 +112,10 @@ export const BillModalMixin = {
this.form.setFieldsValue({'accountId': item.id})
}
}
//数据从前一个页面带过来的情况
if(this.transferParam && this.transferParam.accountId) {
this.form.setFieldsValue({'accountId': this.transferParam.accountId})
}
}
})
})