业务单据功能提交

pro
郑明梁 2 years ago
parent 23deacf583
commit 367e61bddf

@ -115,7 +115,7 @@ import {
addMuti, addMuti,
addMutiDetail, addMutiDetail,
addOrderMuti, addOrderMuti,
checkUdi, delectMutiDelect, checkUdi, delectMutiDelect, filterMutiDetailList,
filterMutiList, getMark, filterMutiList, getMark,
selectMutiDetailList, selectMutiDetailList,
updateMuti, updateMuti,
@ -305,6 +305,7 @@ export default {
} }
}, },
addFromCorp() { addFromCorp() {
if (this.inputQuery.fromCorp != 'true' && this.inputQuery.fromCorp != 'false') {
var query = { var query = {
mutiIdFk: this.pId, mutiIdFk: this.pId,
fromCorp: this.inputQuery.fromCorp fromCorp: this.inputQuery.fromCorp
@ -312,6 +313,7 @@ export default {
addMutiDetail(query).then((response) => { addMutiDetail(query).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.selectMutiDetailList(); this.selectMutiDetailList();
this.inputQuery.fromCorp = null;
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
@ -319,6 +321,7 @@ export default {
.catch(() => { .catch(() => {
this.$message.error("添加失败"); this.$message.error("添加失败");
}); });
}
}, },
selectMutiDetailList() { selectMutiDetailList() {
selectMutiDetailList({mutiIdFk: this.pId}).then((response) => { selectMutiDetailList({mutiIdFk: this.pId}).then((response) => {

Loading…
Cancel
Save