12345678910111213141516171819202122 |
- import $http from '@/utils/index'
- // 收发记录-列表
- export const inventoryList = (params: any) => $http.post('/stock-template/inventory/list', params)
- // 收发记录-excel
- export const inventoryExcel = (params: any) => $http.post('/stock-template/inventory/export', params, { responseType: "blob", })
- // 运输-excel
- export const transportWord = (params: any) => $http.post('/stock-template/transport-record/export', params, { responseType: "blob", })
- export const tranoutexport = (params: any) => $http.post('/stock-template/out/export', params, { responseType: "blob", })
- // 运输-excel
- export const transportrecordList = (params: any) => $http.post('/stock-template/transport-record/list', params)
- // //购货单位
- // export const stockunit = (params: any) => $http.post('/stock/unit/list', params)
|