32 lines
		
	
	
		
			639 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			639 B
		
	
	
	
		
			JavaScript
		
	
	
	
import { http } from '@/utils/http'
 | 
						|
 | 
						|
/**
 | 
						|
 * 领料出库  ---- 列表查询
 | 
						|
 */
 | 
						|
export const getPickingOutboundListAPI = (data) => {
 | 
						|
    return http({
 | 
						|
        method: 'GET',
 | 
						|
        url: '/material/lease_apply_info/list',
 | 
						|
        data,
 | 
						|
    })
 | 
						|
}
 | 
						|
/**
 | 
						|
 * 领料出库  ---- 列表详情
 | 
						|
 */
 | 
						|
export const getOutboundDetailsAPI = (id) => {
 | 
						|
    return http({
 | 
						|
        method: 'GET',
 | 
						|
        url: `/material/lease_apply_info/${id}`,
 | 
						|
    })
 | 
						|
}
 | 
						|
/**
 | 
						|
 * 领料出库  ---- 数量出库
 | 
						|
 */
 | 
						|
export const setOutboundNumAPI = (data) => {
 | 
						|
    return http({
 | 
						|
        method: 'POSt',
 | 
						|
        url: '/material/lease_apply_info/leaseOut',
 | 
						|
        data,
 | 
						|
    })
 | 
						|
}
 |