pengwei
2025-03-12 18fcb8ad28f583e3e1b99b23e4f7d9e1833dcd83
1
2
3
4
5
6
7
8
9
10
import http from "./http";
 
//分页获取物料
export const GetPageDataApi = (data) => http.post('api/Dt_ReceiveInfo/GetPageData', data)
 
//单据详情查询
export const GetReceiveDetailApi = (key,code) => http.post(`api/Dt_ReceiveInfo/GetReceiveDetail?key=${key}&code=${code}`)
 
//确认收货
export const GetReceiveApi = (data) => http.post('api/Dt_ReceiveInfo/GetReceive', data)