|
|
|
@ -1188,7 +1188,7 @@ export default {
|
|
|
|
|
JSON.parse(JSON.stringify(this.orderFormData))
|
|
|
|
|
);
|
|
|
|
|
tQuery.code = this.codeFormData.code;
|
|
|
|
|
tQuery.orderType = this.viewType;
|
|
|
|
|
tQuery.orderType = 2;
|
|
|
|
|
tQuery.splitType = this.splitType;
|
|
|
|
|
this.addCodeSubmit(tQuery);
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
@ -1330,7 +1330,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -1585,6 +1585,7 @@ export default {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
this.result = ""
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
@ -1659,13 +1660,18 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.saveLoading = true
|
|
|
|
|
|
|
|
|
|
if (this.splitType == 'return'){
|
|
|
|
|
tQuery.inoutType = 2
|
|
|
|
|
}else {
|
|
|
|
|
tQuery.inoutType = 1
|
|
|
|
|
}
|
|
|
|
|
saveOrderWeb(tQuery).then((response) => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("保存成功")
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
this.result = ""
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|