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.

37 lines
2.8 KiB

10 months ago
10 months ago
9 months ago
9 months ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. export const searchSoReceiveBoxesData = data => createAPI('/boxForNotification/searchSoReceiveBoxesData','post',data)
  3. export const newSoReceiveBoxesData = data => createAPI('/boxForNotification/newSoReceiveBoxesData','post',data)
  4. export const searchBoxDetail = data => createAPI('/boxForNotification/searchBoxDetail','post',data)
  5. export const deleteSoReceiveBoxesData= data => createAPI('/boxForNotification/deleteSoReceiveBoxesData','post',data)
  6. export const updateBoxStatus= data => createAPI('/boxForNotification/updateBoxStatus','post',data)
  7. export const scanBoxRoll= data => createAPI('/boxForNotification/scanBoxRoll','post',data)
  8. export const deleteBoxRoll= data => createAPI('/boxForNotification/deleteBoxRoll','post',data)
  9. export const searchRollForOrderNo= data => createAPI('/boxForNotification/searchRollForOrderNo','post',data)
  10. // 盒清单相关接口
  11. export const searchSoReceiveCasesData = data => createAPI('/boxForNotification/searchSoReceiveCasesData','post',data)
  12. export const searchSoReceiveCasesDataByPage = data => createAPI('/boxForNotification/searchSoReceiveCasesDataByPage','post',data)
  13. export const deleteSoReceiveCasesData = data => createAPI('/boxForNotification/deleteSoReceiveCasesData','post',data)
  14. export const validateAndScanCaseRoll = data => createAPI('/boxForNotification/validateAndScanCaseRoll','post',data)
  15. export const saveCaseRollList = data => createAPI('/boxForNotification/saveCaseRollList','post',data)
  16. // 查询出库通知单主记录(关联明细)
  17. export const searchOutboundNotificationWithDetail = data => createAPI('/boxForNotification/searchOutboundNotificationWithDetail','post',data)
  18. // 分页查询出库通知单主记录(关联明细)
  19. export const searchOutboundNotificationWithDetailByPage = data => createAPI('/boxForNotification/searchOutboundNotificationWithDetailByPage','post',data)
  20. // 更新出库通知单状态
  21. export const updateOrderStatus = data => createAPI('/boxForNotification/updateOrderStatus','post',data)
  22. // ==================== 托清单相关接口 ====================
  23. export const searchPalletList = data => createAPI('/boxForNotification/searchPalletList','post',data)
  24. export const newPallet = data => createAPI('/boxForNotification/newPallet','post',data)
  25. export const searchPalletDetail = data => createAPI('/boxForNotification/searchPalletDetail','post',data)
  26. export const deletePallet = data => createAPI('/boxForNotification/deletePallet','post',data)
  27. export const updatePalletStatus = data => createAPI('/boxForNotification/updatePalletStatus','post',data)
  28. export const scanPalletBox = data => createAPI('/boxForNotification/scanPalletBox','post',data)
  29. export const deletePalletBox = data => createAPI('/boxForNotification/deletePalletBox','post',data)
  30. export const searchBoxRollDetail = data => createAPI('/boxForNotification/searchBoxRollDetail','post',data)