spring
4 天以前 79a53d2f9a9a1fab7a1d889c27b8d2e2f6db0fe2
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,
    });
};