spring
12 小时以前 b937241a2c20f62f45b31b232b6cebdec03d41d7
src/api/inventoryManagement/stockInventory.js
@@ -60,3 +60,18 @@
    });
};
export function getMaterials() {
    return request({
        url: "/stockInventory/getMaterials",
        method: "get",
    });
}
// 获取库存树(产品->规格/型号->批号->供应商)
export const getStockInventoryAll = (params = {}) => {
    return request({
        url: "/stockInventory/getStockInventoryAll",
        method: "get",
        params,
    });
};