pengwei
2025-03-07 7cc3ed0f7aca03e39fa65d617f2a51ff531a12f6
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)