From c29997d2201ff70f01f96ff700967ca6df3e10ef Mon Sep 17 00:00:00 2001 From: x_z Date: Sun, 30 Oct 2022 22:26:49 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E7=9B=98=E7=82=B9=E5=8D=95?= =?UTF-8?q?=E6=8D=AE=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/invCountOrder.js | 8 +++ src/views/inventory/addCountOrder.vue | 85 ++++++++++++++++++--------- 2 files changed, 64 insertions(+), 29 deletions(-) diff --git a/src/api/inventory/invCountOrder.js b/src/api/inventory/invCountOrder.js index 934ca5e..95859b1 100644 --- a/src/api/inventory/invCountOrder.js +++ b/src/api/inventory/invCountOrder.js @@ -47,3 +47,11 @@ export function deleteCountOrderDetail(data) { data: data }); } + +export function addCountOrderDetail(data) { + return axios({ + url: "/invCount/order/detail/addCountOrderDetail", + method: "post", + data: data + }); +} diff --git a/src/views/inventory/addCountOrder.vue b/src/views/inventory/addCountOrder.vue index 54b24ab..5b680b1 100644 --- a/src/views/inventory/addCountOrder.vue +++ b/src/views/inventory/addCountOrder.vue @@ -66,7 +66,6 @@ -
当前分库: @@ -91,7 +90,6 @@ -
@@ -103,6 +101,7 @@ > { if (valid) { if (this.codeArray.length === 0) { @@ -363,25 +373,37 @@ export default { return; } - let invProductList = []; - this.codeArray.forEach(product => { - invProductList.push(product); - }); - let orderData = { invCountOrder: { createTime: this.formData.billDate, invStorageCode: this.formData.locStorageCode, invWarehouseCode: this.formData.invWarehouseCode, invSpaceCode: this.formData.invSpaceCode - }, - invProductList: invProductList + } }; saveCountOrder(orderData).then((res) => { if (res.code === 20000) { + this.formData.orderId = res.data; this.$message.success("保存成功"); - this.closeDialog(); + if (type != null) { + //保存当前单据详情 + let product = this.codeArray[0]; + let detailData = { + orderIdFk: this.formData.orderId, + product: product.id, + batchNo: product.batchNo, + produceDate: product.produceDate, + expireDate: product.expireDate + }; + addCountOrderDetail(detailData).then((result) => { + if (result.code === 20000) { + this.getCountOrderDetail(); + } + }); + } else { + this.closeDialog(); + } } else { this.$message.error(res.data.message); } @@ -414,6 +436,9 @@ export default { this.spaceList = res.data || []; }); }, + invSpaceChange() { + this.$forceUpdate(); + }, selectProductFunction() { if (isBlank(this.formData.locStorageCode) || isBlank(this.formData.invWarehouseCode)) { this.$message.warning("请先选择当前仓库货位信息"); @@ -458,20 +483,10 @@ export default { this.$message.warning("请选择产品"); return; } - selection.forEach(product => { - let data = { - productName: product.cpmctymc, - relIdFk: product.relIdFk, - spce: product.ggxh, - batchNo: product.batchNo, - productDate: product.productionDate, - expireDate: product.expireDate, - zczbhhzbapzbh: null, - ylqxzcrbarmc: null, - invCount: product.inCount - product.outCount - }; - this.codeArray.push(data); - }); + if (this.codeArray === 0) { + //添加第一个产品,先保存单据,再添加单据详情 + this.saveOrder(1); + } this.selectInvProductVisible = false; }, deleteOrderDetail(index, row) { @@ -489,7 +504,7 @@ export default { } getCountOrderDetailList(detailParam).then((result) => { this.codeArray = result.data.list || []; - }) + }); } else { this.$message.error(res.data); } @@ -502,9 +517,21 @@ export default { productId: row.productId }; getCountCodesList(params).then((res) => { - this.codesList = res.data.list; + this.codesList = res.data.list || []; }); }, + getInputFocus(event) { + event.currentTarget.select(); + }, + getCountOrderDetail() { + this.detailQuery.orderId = this.formData.orderId; + getCountOrderDetailList(this.detailQuery).then((res) => { + if (res.code === 20000) { + this.codeArray = res.data.list || []; + this.detailTotal = res.data.total || 0; + } + }) + } }, created() { this.getStorage();