huminmin
17 小时以前 6d1e99e5d16a517e67a59aa735926ac30d8ee926
src/api/inventoryManagement/stockInventory.js
@@ -26,12 +26,18 @@
    });
};
export const exportStockInventory = (params) => {
export const getStockInventoryReportList = (params) => {
    return request({
        url: "/stockInventory/exportStockInventory",
        method: "post",
        data: params,
        url: "/stockInventory/stockInventoryPage",
        method: "get",
        params,
    });
};
export const getStockInventoryInAndOutReportList = (params) => {
    return request({
        url: "/stockInventory/stockInAndOutRecord",
        method: "get",
        params,
    });
};