|
@@ -222,7 +222,7 @@ const getDemandData = () => {
|
|
|
});
|
|
|
});
|
|
|
proxy.post("/warehouse/page", { pageNum: 1, pageSize: 999 }).then((res) => {
|
|
|
- warehouseList.value[0].children = res.rows;
|
|
|
+ warehouseList.value[0].children = res.rows.filter((item) => item.type !== "1");
|
|
|
proxy.post("/inventory/getQuantityByWarehouse", { departmentId: sourceList.value.pagination.departmentId }).then((res) => {
|
|
|
if (warehouseList.value[0].children && warehouseList.value[0].children.length > 0) {
|
|
|
for (let i = 0; i < warehouseList.value[0].children.length; i++) {
|