src/api/inventoryManagement/stockIn.js
@@ -18,6 +18,15 @@
    });
};
// 查询生产入库信息列表
export const getStockInPageByProductProduction = (params) => {
    return request({
        url: "/stockin/listPageByProductProduction",
        method: "get",
        params,
    });
};
// 出库台账-查询自定义入库信息列表
export const getStockInPageByCustom = (params) => {
    return request({
@@ -117,8 +126,8 @@
// 删除自定义入库信息
export function delStockInCustom(ids) {
    return request({
        url: '/stockin/deleteCustom',
        method: 'delete',
        url: '/stockin/delteCustom',
        method: 'post',
        data: ids
    })
}
@@ -141,23 +150,12 @@
    })
}
// 自定义入库-详情
export function detailManagementByCustom(query) {
//查询库存图表数据
export function getStockInChartData() {
    return request({
        url: '/stockin/detailManagementByCustom',
        method: 'get',
        params: query
        url: '/stockin/listReport',
        method: 'get'
    })
}
// 采购入库-详情
export function stockinDetail(query) {
    return request({
        url: '/stockin/detail',
        method: 'get',
        params: query
    })
}
//