gongchunyi
8 小时以前 0f30fb5488c0d642e13418ac15f38efda17e08de
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,
    });
};