lxf 1 yıl önce
ebeveyn
işleme
6d8123ba5f

+ 3 - 1
src/views/production/operation/batching/quick.vue

@@ -193,7 +193,9 @@ onMounted(() => {
       }
     }
     proxy.post("/stockPreparation/getPackageBomList", orderList).then((res) => {
-      formData.data.inOutStorageBomList = formData.data.inOutStorageBomList.concat(res);
+      if (res && res.length > 0) {
+        formData.data.inOutStorageBomList = formData.data.inOutStorageBomList.concat(res);
+      }
     });
   }
 });