|
|
|
@ -183,8 +183,9 @@ import {getBusChange} from "@/api/basic/busTypeChange";
|
|
|
|
|
import {inserThrOrderWeb, updateReceive, updateReceiveDetail, delReceiveDetail} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
|
import {filterSubByInv, findByFrom, findByUp, findInvByUser, findLyInv} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import dialogInvProduct from "../DialogSelectInvProduct";
|
|
|
|
|
import {getOrderDetail} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {addDetail, getOrderDetail, repeatAdd} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {parseTime} from "@/utils/coTools";
|
|
|
|
|
import {listApplyDetail} from "@/api/purchase/purApply";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "idQuery",
|
|
|
|
@ -205,6 +206,10 @@ export default {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
isRepeat: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -269,6 +274,7 @@ export default {
|
|
|
|
|
type: 1,
|
|
|
|
|
Receive: null,
|
|
|
|
|
ischeck: false,
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -527,6 +533,29 @@ export default {
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getDetailByRepeat(value) {
|
|
|
|
|
this.query = {
|
|
|
|
|
orderIdFk: value
|
|
|
|
|
}
|
|
|
|
|
getOrderDetail(this.query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.codeArray = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.codeArray.forEach(item => {
|
|
|
|
|
item.orderIdFk = this.pId
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
|
mounted() {
|
|
|
|
@ -547,6 +576,42 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.editType = false;
|
|
|
|
|
let date = new Date();
|
|
|
|
|
if (this.isRepeat) {
|
|
|
|
|
this.formData = this.idQuery.formData;
|
|
|
|
|
let query = {
|
|
|
|
|
orderIdFk: this.formData.billNo
|
|
|
|
|
}
|
|
|
|
|
getOrderDetail(query) //查找该单号下的所有条码
|
|
|
|
|
.then((response) => {
|
|
|
|
|
let codeArray = response.data.list || [];
|
|
|
|
|
this.loading = false;
|
|
|
|
|
let repeatQuery = {
|
|
|
|
|
purReceiveEntity: this.formData,
|
|
|
|
|
datas: codeArray
|
|
|
|
|
}
|
|
|
|
|
repeatAdd(repeatQuery).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.formData = response.data;
|
|
|
|
|
this.getOrderDetailList()
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
// codeArray.forEach(item => {
|
|
|
|
|
//
|
|
|
|
|
// })
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.formData = {
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
targetInvCode: null,
|
|
|
|
@ -559,6 +624,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.findFromInv();
|
|
|
|
|