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.

35 lines
2.0 KiB

7 months ago
17 hours ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // 查询处理单元列表
  3. export const getWorkOrderMaterials = data => createAPI(`/pda/production/issue/getWorkOrderMaterials`,'post',data)
  4. // 解析物料标签
  5. export const parseMaterialLabel = data => createAPI(`/pda/production/issue/parseMaterialLabel`,'post',data)
  6. // 直接发料
  7. export const directIssue = data => createAPI(`/pda/production/issue/directIssue`,'post',data)
  8. // 获取申请单物料列表
  9. export const getRequestMaterials = data => createAPI(`/pda/production/issue/getRequestMaterials`,'post',data)
  10. // 基于申请单发料
  11. export const requestIssue = data => createAPI(`/pda/production/issue/requestIssue`,'post',data)
  12. // 创建拣选托盘
  13. export const createPickingPallet = data => createAPI(`/pda/production/issue/createPickingPallet`,'post',data)
  14. // 绑定处理单元到托盘
  15. export const bindUnitsToPallet = data => createAPI(`/pda/production/issue/bindUnitsToPallet`,'post',data)
  16. // 打印托盘标签
  17. export const printPalletLabel = data => createAPI(`/pda/production/issue/printPalletLabel`,'post',data)
  18. // 获取托盘信息
  19. export const getPalletInfo = data => createAPI(`/pda/production/issue/getPalletInfo`,'post',data)
  20. // 获取发料历史记录
  21. export const getIssueHistory = data => createAPI(`/pda/production/issue/getIssueHistory`,'post',data)
  22. // 验证工单状态
  23. export const validateWorkOrder = data => createAPI(`/pda/production/issue/validateWorkOrder`,'post',data)
  24. // 验证申请单状态
  25. export const validateNotify = data => createAPI(`/pda/production/issue/validateNotify`,'post',data)
  26. // 扫描材料是否存在
  27. export const scanMaterialLabel = data => createAPI(`/pda/production/issue/scanMaterialLabel`,'post',data)
  28. export const getOrderInfoByBucketNoForPda = data => createAPI(`/demandOrder/getOrderInfoByBucketNoForPda`, 'post', data)
  29. export const sendInkHandle = data => createAPI(`/mixInkOrder/sendInkHandle`, 'post', data)
  30. export const getLocationBySite = (data) => createAPI(`/location/getLocationBySite`, 'post', data);