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.

16 lines
800 B

1 month ago
  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // ========== 合托相关 ========== - rqrq
  3. // 校验栈板(通用,用于来源/目标托盘)- rqrq
  4. export const checkPalletForMerge = data => createAPI(`/wcsIntegration/checkPalletForMerge`, 'post', data)
  5. // 校验目标栈板是否为混装托盘 - rqrq
  6. export const checkTargetPalletType = data => createAPI(`/wcsIntegration/checkTargetPalletType`, 'post', data)
  7. // 查询栈板明细(根据site+palletId查询pallet_detail)- rqrq
  8. export const getPalletDetailForMerge = data => createAPI(`/wcsIntegration/getPalletDetailForMerge`, 'post', data)
  9. // 执行合托操作(将来源栈板的物料转移到目标栈板)- rqrq
  10. export const executePalletMerge = data => createAPI(`/wcsIntegration/executePalletMerge`, 'post', data)