spring
20 小时以前 46ec48beb42de969c2e83968ee1696a709b99f33
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({
@@ -142,5 +151,11 @@
}
//
//查询库存图表数据
export function getStockInChartData() {
    return request({
        url: '/stockin/listReport',
        method: 'get'
    })
}