给财务单据增加财务人员的快捷录入

This commit is contained in:
季圣华
2021-10-26 00:34:56 +08:00
parent 7727fd5a91
commit 99422c7bd9
7 changed files with 67 additions and 1 deletions

View File

@@ -162,6 +162,11 @@ export const FinancialModalMixin = {
this.$refs.accountModalForm.title = "新增结算账户";
this.$refs.accountModalForm.disableSubmit = false;
},
addPerson() {
this.$refs.personModalForm.add();
this.$refs.personModalForm.title = "新增经手人";
this.$refs.personModalForm.disableSubmit = false;
},
vendorModalFormOk() {
this.initSupplier()
},
@@ -171,6 +176,9 @@ export const FinancialModalMixin = {
accountModalFormOk() {
this.initAccount()
},
personModalFormOk() {
this.initPerson()
},
//单元值改变一个字符就触发一次
onValueChange(event) {
let that = this