Browse Source

咨询成交商品池 删除图片列------库存预警修改 添加展示业务公司字段------------- 库存预警 列表页 筛选条件及字段修改

lucky 2 years ago
parent
commit
d9a14db08d

+ 6 - 6
src/views/goodStore/dealGoodsPool/columns.js

@@ -46,12 +46,12 @@ const listCol = [
     label: "编号",
     width: "160px",
   },
-  {
-    prop: "good_img",
-    label: "图片",
-    _slot_: "good_img",
-    width: "45px",
-  },
+  // {
+  //   prop: "good_img",
+  //   label: "图片",
+  //   _slot_: "good_img",
+  //   width: "45px",
+  // },
   {
     prop: "good_name",
     label: "名称",

+ 2 - 2
src/views/goodStore/dealGoodsPool/index.vue

@@ -130,7 +130,7 @@
         </div></template
       >
 
-      <template #good_img="{ scope }">
+      <!-- <template #good_img="{ scope }">
         <div
           v-if="scope.row.good_img"
           style="width: 20px; height: 20px"
@@ -143,7 +143,7 @@
             alt=""
           />
         </div>
-      </template>
+      </template> -->
       <!-- <template #status="{ scope }">
         <el-tag
           :size="tablebtnSize"

+ 7 - 2
src/views/stock/survey/index.vue

@@ -30,9 +30,10 @@
               :isDetail="true"
               :size="searchSize"
               :value="parmValue.stock_code"
-              :disabled="supplier_code === ''"
+              :disabled="supplier_code === '' || parmValue.companyNo === ''"
               :placeholder="'出库仓库'"
               :isRelation="true"
+              :companyNo="parmValue.companyNo"
               :companyCode="supplier_code"
               :names="''"
               @searchChange="selectStock"
@@ -295,6 +296,7 @@ export default {
     supplierChange(e) {
       const { code } = e;
       this.parmValue.companyNo = code || ""; //供应商编码
+      //清空子集
       this.parmValue.supplier_code = [];
       this.supplier_code = "";
       this.parmValue.stock_code = [];
@@ -309,8 +311,11 @@ export default {
       const { code } = e;
       this.parmValue.supplier_code = code ? [code] : [];
       this.supplier_code = code;
+
+      //清空子集
       this.parmValue.stock_code = [];
       this.stock_code = "";
+
       this.parmValue.page = 1;
       this.pageInfo.curr = 1;
       this.stockList();
@@ -346,7 +351,7 @@ export default {
           usable_stock,
           wait_in_stock,
           wait_out_stock,
-          // warn_stock,
+          warn_stock,
         } = res.data;
         this.stock_list[0].endVal = Number(total_stock);
         this.stock_list[1].endVal = Number(wait_in_stock);