gaoluyang
20 小时以前 71fa9d0eee805cc2a6445269b949dc65d4274b80
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,
    });
};