You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
522 B
JavaScript
34 lines
522 B
JavaScript
2 years ago
|
import axios from '@/utils/request'
|
||
|
|
||
|
//--------------获取领用单据-------------------
|
||
|
export function getReceiveOrder(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/receive/order/filter",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
export function addDetail(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/receive/detail/add",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
export function getOrderDetail(query) {
|
||
|
return axios({
|
||
|
url: "/udiwms/receive/order/detail",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|