|
|
|
@ -227,7 +227,8 @@ export default {
|
|
|
|
|
label: '特殊往来'
|
|
|
|
|
}],
|
|
|
|
|
twoCheck: false,
|
|
|
|
|
settingDialogVisible: false
|
|
|
|
|
settingDialogVisible: false,
|
|
|
|
|
oldData: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -261,6 +262,14 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.defaultUnit = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.inputQuery.corpType !== 1) {
|
|
|
|
|
this.inputQuery.genUnit = false;
|
|
|
|
|
this.inputQuery.useDyCount = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.genUnit = this.oldData.genUnit;
|
|
|
|
|
this.inputQuery.useDyCount = this.oldData.useDyCount;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取单据类型
|
|
|
|
@ -321,6 +330,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
this.findSpecialMethod();
|
|
|
|
|
this.oldData = Object.assign({}, this.inputQuery);
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|