gaoluyang
2025-11-11 1d9880e6ada168326e7516f23cf12db19e9a875d
src/api/inventoryManagement/stockManage.js
@@ -9,6 +9,24 @@
    });
};
// 查询生产入库库存信息列表
export const getStockManagePageByProduction = (params) => {
    return request({
        url: "/stockin/listPageCopyByProduction",
        method: "get",
        params,
    });
};
// 查询手动入库库存信息列表
export const getStockManagePageByCustom = (params) => {
    return request({
        url: "/stockin/listPageCopyByCustom",
        method: "get",
        params,
    });
};
// 修改库存信息
export const updateStockManage = (data) => {
@@ -38,7 +56,7 @@
    })
}
//出库接口
// 出库管理-领用接口
export const stockOut = (data) => {
    return request({
        url: '/stockmanagement/stockout',