zhangwencui
5 天以前 7cb0cf9a36e263d29be61a44b8caae2a896f3461
src/api/inventoryManagement/stockIn.js
@@ -9,10 +9,19 @@
    });
};
// 修改库存信息
// 修改入库存信息
export const updateStockIn = (data) => {
    return request({
        url: "/stockin/update",
        method: "post",
        data,
    });
};
// 修改库存信息
export const updateManagement = (data) => {
    return request({
        url: "/stockin/updateManagement",
        method: "post",
        data,
    });
@@ -55,5 +64,20 @@
}
//
//查询库存图表数据
export function getStockInChartData() {
    return request({
        url: '/stockin/listReport',
        method: 'get'
    })
}
// 新增商品入库信息
export function addProduct(data) {
    return request({
        url: '/stockin/addProduct',
        method: 'post',
        data: data
    })
}