spring
4 天以前 a9600ae56b844289a04e1a7385cf0ccfc384cd08
src/api/inventoryManagement/stockIn.js
@@ -9,11 +9,20 @@
    });
};
// 修改库存信息
// 修改入库存信息
export const updateStockIn = (data) => {
    return request({
        url: "/stockin/update",
        method: "put",
        method: "post",
        data,
    });
};
// 修改库存信息
export const updateManagement = (data) => {
    return request({
        url: "/stockin/updateManagement",
        method: "post",
        data,
    });
};
@@ -31,7 +40,7 @@
export function delStockIn(ids) {
    return request({
        url: '/stockin/del',
        method: 'delete',
        method: 'post',
        data: ids
    })
}
@@ -46,3 +55,14 @@
    })
}
export function selectProductRecordListByPuechaserId(query) {
    return request({
        url: '/stockin/productlist',
        method: 'get',
        params: query
    })
}
//