From 5f87de695345bd16a49d92b16e1836510d66f73c Mon Sep 17 00:00:00 2001 From: x_z Date: Mon, 27 Jun 2022 10:22:37 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E5=BA=93=E5=AD=98=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=88=86=E5=BA=93=E9=80=89=E6=8B=A9=EF=BC=8C=E4=B8=BB?= =?UTF-8?q?=E5=BA=93=E5=92=8C=E5=88=86=E5=BA=93=E5=AE=9E=E7=8E=B0=E8=81=94?= =?UTF-8?q?=E5=8A=A8=EF=BC=8C=E5=BD=93=E4=B8=BB=E5=BA=93=E6=9C=AA=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E6=97=B6=EF=BC=8C=E7=A6=81=E7=94=A8=E5=88=86=E5=BA=93?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvProducts.vue | 35 +++++++++++++++----------- src/views/inventory/supInvProducts.vue | 3 --- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index 41062ea..70b6d9d 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -63,6 +63,7 @@ import { filterProducts, - filterDetailProducts, deleteProducts, } from "../../api/inventory/InvProducts"; import draggable from "vuedraggable"; import codeDetail from "./InvProductsDetail"; import store from "../../store"; import {getBussinessType} from "../../api/basic/bussinessType"; -import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; -import {filterAllByUser, filterUplLocInv} from "@/api/basic/invWarehouse"; +import {filterUplLocInv} from "@/api/basic/invWarehouse"; import {filterCustomers} from "@/api/auth/customer"; import {filterSubByInv} from "@/api/basic/invSubWarehouse"; @@ -202,6 +201,7 @@ export default { loading: true, index: null, dialogTableVisible: false, + invWarehouseDisabled: true, formLoading: false, dialogVisible: false, deleteLoading: false, @@ -228,9 +228,12 @@ export default { customerId: null, unitFk: null, supId: null, + invWarehouseCode: null, + invStorageCode: null, page: 1, limit: 20, }; + this.invChange(); this.getList(); }, onSubmit() { @@ -261,7 +264,6 @@ export default { this.filterQuery.customerId = store.getters.customerId; filterProducts(this.filterQuery) .then((response) => { - console.log(response) this.showSup = response.data.showSup; this.loading = false; this.list = response.data.list || []; @@ -309,7 +311,6 @@ export default { }); }, findMethod(query) { - console.log(query); this.fromOptions = []; let cQuery = { key: query, @@ -344,18 +345,22 @@ export default { invChange() { - // this.$set(this.filterQuery, "entrustUser", ""); this.filterQuery.invWarehouseCode = ""; this.subInvList = []; - let query = { - pcode: this.filterQuery.invStorageCode - }; - filterSubByInv(query) - .then((response) => { - this.subInvList = response.data || []; - }) - .catch(() => { - }); + if (this.filterQuery.invStorageCode != null) { + this.invWarehouseDisabled = false; + let query = { + pcode: this.filterQuery.invStorageCode + }; + filterSubByInv(query) + .then((response) => { + this.subInvList = response.data || []; + }) + .catch(() => { + }); + } else { + this.invWarehouseDisabled = true; + } }, intentDetail(row) { diff --git a/src/views/inventory/supInvProducts.vue b/src/views/inventory/supInvProducts.vue index 4b1efc0..1a28dff 100644 --- a/src/views/inventory/supInvProducts.vue +++ b/src/views/inventory/supInvProducts.vue @@ -90,7 +90,6 @@