You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.6 KiB

import request from '@/axios';
// 月度仓储成本统计表接口
export const $_Getlist = params => {
return request({
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/list',
method: 'get',
params,
});
};
// 获取仓库
export const $_getMyWarehouseList = params => {
return request({
url: '/api/logpm-basicdata/warehouse/getMyWarehouseList',
method: 'get',
params,
});
};
//月度仓储成本统计导出
export const $_expenseWarehouseMonth = params => {
return request({
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/export-expenseWarehouseMonth',
method: 'get',
params,
responseType: 'blob',
});
};
// 月度订单仓储成本明细列表
export const $_Monthlyorderwarehousing = params => {
return request({
url: '/api/logpm-statisticsdata/expenseOrderWarehouseMonth/list',
method: 'get',
params,
});
};
//月度订单仓储成本明细导出
export const $_expenseOrderWarehouseMonth = params => {
return request({
url: '/api/logpm-statisticsdata/expenseOrderWarehouseMonth/export-expenseOrderWarehouseMonth',
method: 'get',
params,
responseType: 'blob',
});
};
// 订单总仓储成本明细列表
export const $_OrderTotalWarehouse = params => {
return request({
url: '/api/logpm-statisticsdata/expenseOrderWarehouseTotal/list',
method: 'get',
params,
});
};
// 订单总仓储成本明细导出
export const $_expenseOrderWarehouseTotal = params => {
return request({
url: '/api/logpm-statisticsdata/expenseOrderWarehouseTotal/export-expenseOrderWarehouseTotal',
method: 'get',
params,
responseType: 'blob',
});
};