|
|
|
@ -325,7 +325,7 @@ export default {
|
|
|
|
|
this.formDataVisible = item
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (this.formDataVisible.operationType == 1){
|
|
|
|
|
if (this.formDataVisible.operationType == 1) {
|
|
|
|
|
this.findFromInvList("");
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
@ -458,12 +458,13 @@ export default {
|
|
|
|
|
addCode() {
|
|
|
|
|
if (this.$isBlank(this.filterQuery.code)) {
|
|
|
|
|
this.filterQuery.code = this.scanCode.trim();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.$isBlank(this.filterQuery.code) && this.$isBlank(this.scanCode)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let tagQuery = {
|
|
|
|
|
workPlaceCode: this.formData.workPlaceCode,
|
|
|
|
|
fromCorp: this.formData.fromCorp,
|
|
|
|
|
billNo: this.formData.billNo,
|
|
|
|
|
code: this.filterQuery.code.trim(),
|
|
|
|
|
};
|
|
|
|
|