From 1404bc9d4231debc085fdae515a8a6d03146b063 Mon Sep 17 00:00:00 2001
From: zuozhengqing <a13193816592@163.com>
Date: 星期六, 30 三月 2024 14:52:09 +0800
Subject: [PATCH] 采购管理-产品信息已发货数量换为已收货数量
---
src/views/other/commonDialog/SelectCommonDialog.vue | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/views/other/commonDialog/SelectCommonDialog.vue b/src/views/other/commonDialog/SelectCommonDialog.vue
index e0e3748..afff0b0 100644
--- a/src/views/other/commonDialog/SelectCommonDialog.vue
+++ b/src/views/other/commonDialog/SelectCommonDialog.vue
@@ -72,7 +72,8 @@
clientId: 0,
isRequest: true,
client_name: "",
- tableInfomation: []
+ tableInfomation: [],
+ supplierId:null,
}
}
},
@@ -117,7 +118,7 @@
tableColumn: [],
selectArray: []
}
- },
+ },
created() {
this.setTable()
this.getData()
@@ -182,10 +183,11 @@
async getProductList() {
let fn = this.sign == "purchase" ? getProductList : getProductListFromGrpc
await fn({
- keyword: this.keyword,
- page: this.pagerOptions.currPage,
- pageSize: this.pagerOptions.pageSize
- }).then((res) => {
+ keyword: this.keyword,
+ page: this.pagerOptions.currPage,
+ supplierId:this.editConfig.supplierId,
+ pageSize: this.pagerOptions.pageSize,
+ }).then((res) => {
if (res.code === 200) {
if (res.data.list && res.data.list.length > 0) {
const list = res.data.list.map((item) => {
--
Gitblit v1.8.0