spring
17 小时以前 5a6097ab668b63dc332bac14c700dcd79abb826e
src/api/inventoryManagement/stockInventory.js
@@ -25,3 +25,19 @@
        data: params,
    });
};
export const getStockInventoryReportList = (params) => {
    return request({
        url: "/stockInventory/stockInventoryPage",
        method: "get",
        params,
    });
};
export const getStockInventoryInAndOutReportList = (params) => {
    return request({
        url: "/stockInventory/stockInAndOutRecord",
        method: "get",
        params,
    });
};