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.
109 lines
2.8 KiB
109 lines
2.8 KiB
import request from '@/axios'; |
|
// 月度仓储成本统计表接口 |
|
export const $_Getlist = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/page', |
|
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/page', |
|
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/page', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
// 订单总仓储成本明细导出 |
|
export const $_expenseOrderWarehouseTotal = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseOrderWarehouseTotal/export-expenseOrderWarehouseTotal', |
|
method: 'get', |
|
params, |
|
responseType: 'blob', |
|
}); |
|
}; |
|
|
|
// 配送-仓库月度配送成本表 |
|
export const $_WarehouseDeliveryCost = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseDispatchWarehouseMonth/page', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
// 配送-仓库月度配送成本表-导出 |
|
export const $_expenseDispatchWarehouseMonth = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseDispatchWarehouseMonth/export-expenseDispatchWarehouseMonth', |
|
method: 'get', |
|
params, |
|
responseType: 'blob', |
|
}); |
|
}; |
|
|
|
// 配送-订单总成本明细表 |
|
export const $_OrderTotalCostDetail = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseDispatchOrderDetail/page', |
|
method: 'get', |
|
params, |
|
}); |
|
}; |
|
|
|
// 配送-订单总成本明细表-导出 |
|
export const $_expenseDispatchOrderDetail= params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseDispatchOrderDetail/export-expenseDispatchOrderDetail', |
|
method: 'get', |
|
params, |
|
responseType: 'blob', |
|
}); |
|
}; |
|
|
|
// 配送-财务审单 |
|
export const $_Financialreview = params => { |
|
return request({ |
|
url: '/api/logpm-statisticsdata/expenseDispatchFinancialReview/page', |
|
method: 'get', |
|
params, |
|
}); |
|
};
|
|
|