gongchunyi
昨天 600d741431308365cfe4387ae5305d945bcd9eca
src/api/inventoryManagement/stockInventory.js
@@ -2,7 +2,7 @@
// 分页查询库存记录列表
export const getStockInventoryListPage = (params) => {
    return request({
        url: "/stockInventory/pagestockInventory",
        url: "/stockInventory/pageListCombinedStockInventory",
        method: "get",
        params,
    });
@@ -41,3 +41,22 @@
        params,
    });
};
// 冻结库存记录
export const frozenStockInventory = (params) => {
    return request({
        url: "/stockInventory/frozenStock",
        method: "post",
        data: params,
    });
};
// 解冻库存记录
export const thawStockInventory = (params) => {
    return request({
        url: "/stockInventory/thawStock",
        method: "post",
        data: params,
    });
};