transmitReceive.ts 820 B

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