Merge remote-tracking branch 'origin/dev_ksck' into dev_ksck

dev_ksck
wangwei 2 weeks ago
commit 4a29722074

@ -361,6 +361,7 @@ import {getInvListByUser} from "@/api/system/invWarehouse";
import invCountCodes from "@/views/inventory/count/InvCountCodes.vue"; import invCountCodes from "@/views/inventory/count/InvCountCodes.vue";
import {updateBizProduct} from "@/api/inout/orderDetailCode"; import {updateBizProduct} from "@/api/inout/orderDetailCode";
export default { export default {
props: { props: {
countOrder: { countOrder: {
@ -381,6 +382,7 @@ export default {
} }
}, },
data() { data() {
return { return {
formData: { formData: {
@ -595,7 +597,7 @@ export default {
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("保存成功!"); this.$message.success("保存成功!");
this.selectedIndex = null; this.selectedIndex = null;
this.getCountOrderList(); this.getList();
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
@ -679,28 +681,40 @@ export default {
this.$message.warning("请选择产品"); this.$message.warning("请选择产品");
return; return;
} }
let existsMsg = ""
let exists = this.multiProduct.some(product => {
if (this.countProductList.total != 0) {
return this.countProductList.some(item => {
existsMsg = product.nameCode
return item && item.productId == product.relIdFk && item.batchNo == product.batchNo;
});
}
});
if (exists){
this.$message.error("当前产品【"+ existsMsg + "】不能重复选入!");
return;
}
// if (this.countProductList.length === 0) {
// //
this.multiProduct.forEach(product => { this.multiProduct.forEach(product => {
let detailData = { let detailData = {
orderIdFk: this.formData.orderId, orderIdFk: this.formData.orderId,
productId: product.relIdFk, productId: product.relIdFk,
nameCode: product.nameCode, nameCode: product.nameCode,
batchNo: product.batchNo, batchNo: product.batchNo,
produceDate: product.productionDate, produceDate: product.productionDate,
expireDate: product.expireDate, expireDate: product.expireDate,
invCode: this.formData.invStorageCode, invCode: this.formData.invStorageCode,
invSpaceCode: this.formData.invSpaceCode, invSpaceCode: this.formData.invSpaceCode,
invNum: product.reCount, invNum: product.reCount,
supId: product.supId supId: product.supId
}; };
this.countProductList.push(detailData); this.countProductList.push(detailData);
}); });
// this.saveOrderDetail();
this.saveOrder(1); this.saveOrder(1);
// } this.selectInvProductVisible = false;
this.selectInvProductVisible = false;
}, },
getRowKeys(row) { getRowKeys(row) {
return row.id; return row.id;

@ -685,7 +685,7 @@ export default {
this.filterQuery.endAuditDate = null; this.filterQuery.endAuditDate = null;
} }
this.loading = true; this.loading = true;
this.filterQuery.status = 3; this.filterQuery.status = null;
this.filterQuery.isUser = true this.filterQuery.isUser = true
listApply(this.filterQuery) listApply(this.filterQuery)
.then((response) => { .then((response) => {

Loading…
Cancel
Save