18 lines
420 B
JavaScript
Raw Normal View History

2025-04-09 18:55:14 +08:00
import { RamRequest } from '@/utils/service/index'
//收料
class ReceiveModel extends RamRequest {
GetReceiveList(param) {
return this.get('/api/PUR_ReceiveBill/List', param);
}
GetReceiveView(param) {
return this.get('/api/PUR_ReceiveBill/View', param);
}
//下推
OrderPush(param){
return this.post('/api/PUR_ReceiveBill/Push', param);
}
}
export const receiveModel = new ReceiveModel()