You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.7 KiB

4 months ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 查询拣货出库单
  3. export const searchOutboundNotification = data => createAPI('/outbound/searchOutboundNotification','post',data)
  4. // 新增拣货出库单
  5. export const saveOutboundNotification = data => createAPI('/outbound/saveOutboundNotification','post',data)
  6. // 编辑拣货出库单
  7. export const updateOutboundNotification = data => createAPI('/outbound/updateOutboundNotification','post',data)
  8. // 删除拣货出库单
  9. export const deleteOutboundNotification = data => createAPI('/outbound/deleteOutboundNotification','post',data)
  10. // 关闭拣货出库单
  11. export const closeOutboundNotification = data => createAPI('/outbound/closeOutboundNotification','post',data)
  12. // 下达拣货出库单
  13. export const issueOutboundNotification = data => createAPI('/outbound/issueOutboundNotification','post',data)
  14. // 查询拣货出库单明细
  15. export const getOutboundDetail = data => createAPI('/outbound/getOutboundDetail','post',data)
  16. export const getOutboundDetailWithRoll = data => createAPI('/outbound/getOutboundDetailWithRoll','post',data)
  17. // 新增拣货出库单明细
  18. export const saveOutboundDetail = data => createAPI('/outbound/saveOutboundDetail','post',data)
  19. // 查物料
  20. export const getOutboundPartList = data => createAPI('/outbound/getOutboundPartList','post',data)
  21. // 删除拣货出库单明细
  22. export const deleteOutboundDetail = data => createAPI('/outbound/deleteOutboundDetail','post',data)
  23. // 批量编辑明细
  24. export const updateOutboundDetail = data => createAPI('/outbound/updateOutboundDetail','post',data)
  25. // 获取出库明细
  26. export const getOutboundDetail2 = data => createAPI('/outbound/getOutboundDetail2','post',data)