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.
31 lines
882 B
31 lines
882 B
import request from '@/utils/request'
|
|
|
|
export default {
|
|
// 查询 -- 库存统计
|
|
inventoryStats: function(params) {
|
|
return request({
|
|
url: '/inventory/wmsinventoryrecord/inventoryStats',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
},
|
|
// 查询分页列表 -- 入库详情统计
|
|
inventoryInboundStats: function(params) {
|
|
return request({
|
|
url: '/inventory/wmsinventoryrecord/inventoryInboundStats',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
},
|
|
// 查询分页列表 -- 出库详情统计
|
|
inventoryOutboundStats: function(params) {
|
|
return request({
|
|
url: '/inventory/wmsinventoryrecord/inventoryOutboundStats',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
}
|
|
}
|
|
|