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
16 lines
800 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// ========== 合托相关 ========== - rqrq
|
|
|
|
// 校验栈板(通用,用于来源/目标托盘)- rqrq
|
|
export const checkPalletForMerge = data => createAPI(`/wcsIntegration/checkPalletForMerge`, 'post', data)
|
|
|
|
// 校验目标栈板是否为混装托盘 - rqrq
|
|
export const checkTargetPalletType = data => createAPI(`/wcsIntegration/checkTargetPalletType`, 'post', data)
|
|
|
|
// 查询栈板明细(根据site+palletId查询pallet_detail)- rqrq
|
|
export const getPalletDetailForMerge = data => createAPI(`/wcsIntegration/getPalletDetailForMerge`, 'post', data)
|
|
|
|
// 执行合托操作(将来源栈板的物料转移到目标栈板)- rqrq
|
|
export const executePalletMerge = data => createAPI(`/wcsIntegration/executePalletMerge`, 'post', data)
|
|
|