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.

28 lines
1.5 KiB

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 查询收获入库单
  3. export const searchInboundNotification = data => createAPI('/inbound/searchInboundNotification','post',data)
  4. // 新增收获入库单
  5. export const saveInboundNotification = data => createAPI('/inbound/saveInboundNotification','post',data)
  6. // 编辑收获入库单
  7. export const updateInboundNotification = data => createAPI('/inbound/updateInboundNotification','post',data)
  8. // 删除收获入库单
  9. export const deleteInboundNotification = data => createAPI('/inbound/deleteInboundNotification','post',data)
  10. // 关闭收获入库单
  11. export const closeInboundNotification = data => createAPI('/inbound/closeInboundNotification','post',data)
  12. // 下达收获入库单
  13. export const issueInboundNotification = data => createAPI('/inbound/issueInboundNotification','post',data)
  14. // 查询收获入库单明细
  15. export const getInboundDetail = data => createAPI('/inbound/getInboundDetail','post',data)
  16. // 新增收获入库单明细
  17. export const saveInboundDetail = data => createAPI('/inbound/saveInboundDetail','post',data)
  18. // 查物料
  19. export const getInboundPartList = data => createAPI('/inbound/getInboundPartList','post',data)
  20. // 删除收获入库单明细
  21. export const deleteInboundDetail = data => createAPI('/inbound/deleteInboundDetail','post',data)
  22. // 批量编辑明细
  23. export const updateInboundDetail = data => createAPI('/inbound/updateInboundDetail','post',data)
  24. // 获取入库明细
  25. export const getInboundDetail2 = data => createAPI('/inbound/getInboundDetail2','post',data)