bonus-material-app/src/services/picking/outbound.js

22 lines
440 B
JavaScript
Raw Normal View History

2024-11-19 11:20:59 +08:00
import { http } from '@/utils/http'
/**
* 领料出库 ---- 列表查询接口
*/
export const getPickingOutboundListAPI = (data) => {
return http({
method: 'GET',
url: '/material/lease_apply_info/list',
data,
})
}
2024-11-19 14:52:39 +08:00
/**
* 领料出库 ---- 列表详情
*/
export const getOutboundDetailsAPI = (id) => {
return http({
method: 'GET',
url: `/material/lease_apply_info/${id}`,
})
}