| | |
| | | import request from '/@/utils/request'; |
| | | enum Api { |
| | | AddWmsOrderPurchase = '/api/wmsOrderPurchase/add', |
| | | ForceOutbound = '/api/WmsOperationTask/ForceOutbound', |
| | | |
| | | |
| | | DeleteWmsOrderPurchase = '/api/wmsOrderPurchase/delete', |
| | | UpdateWmsOrderPurchase = '/api/wmsOrderPurchase/update', |
| | | KittingList = '/api/WmsStockQuan/KittingList', ///api/wmsOrderPurchase/page |
| | | packList = '/api/WmsStockQuan/packList', ///api/wmsOrderPurchase/page |
| | | KittingList = '/api/WmsCommonnQuery/KittingList', ///api/wmsOrderPurchase/page |
| | | packList = '/api/WmsCommonnQuery/packList', ///api/wmsOrderPurchase/page |
| | | |
| | | ListWmsOrderPurchase = '/api/wmsStockQuan/list', |
| | | DetailWmsOrderPurchase = '/api/wmsOrderPurchase/detail', |
| | |
| | | method: 'get', |
| | | data: params, |
| | | responseType: 'blob' |
| | | }); |
| | | }); |
| | | |
| | | |
| | | |
| | | export const ForceOutbound = (params?: any) => |
| | | request({ |
| | | url: Api.ForceOutbound, |
| | | method: 'post', |
| | | data: params, |
| | | }); |
| | | |