Kaynağa Gözat

feat: 库存为0不可选

liujt 2 hafta önce
ebeveyn
işleme
bd1ccfc7cb

+ 3 - 3
src/views/warehouseManagement/components/AssetsDialog.vue

@@ -298,7 +298,7 @@
           // console.log(row);
           return (
             _this.productLists.some((it) => it.categoryId == row.categoryId) ||
-            _this.dimension == '3'
+            _this.dimension == '3' || row.measureQuantity == 0
           );
         };
       },
@@ -393,7 +393,7 @@
                 selectable: (row) => {
                   return !_this.productLists.some(
                     (it) => it.categoryId == row.categoryId
-                  );
+                  ) && row.measureQuantity != 0;
                 }
               }
             : {
@@ -406,7 +406,7 @@
                 selectable: (row) => {
                   return !_this.productLists.some(
                     (it) => it.categoryId == row.categoryId
-                  );
+                  ) && row.measureQuantity != 0;
                 }
               },
           {

+ 1 - 1
src/views/warehouseManagement/stockManagement/index.vue

@@ -290,7 +290,7 @@
           </el-link>
           <el-link
             type="primary"
-            v-if="($hasPermission('wms:outintwo:delete') && rowrow.verifyStatus == 0 || row.verifyStatus == 3)"
+            v-if="rowrow.verifyStatus == 0 || row.verifyStatus == 3"
             :underline="false"
             icon="el-icon-delete"
             @click="deleted(row)"