import { createAPI } from "@/utils/httpRequest.js"; // 查询拣货出库单 export const searchOutboundNotification = data => createAPI('/outbound/searchOutboundNotification','post',data) // 新增拣货出库单 export const saveOutboundNotification = data => createAPI('/outbound/saveOutboundNotification','post',data) // 编辑拣货出库单 export const updateOutboundNotification = data => createAPI('/outbound/updateOutboundNotification','post',data) // 删除拣货出库单 export const deleteOutboundNotification = data => createAPI('/outbound/deleteOutboundNotification','post',data) // 关闭拣货出库单 export const closeOutboundNotification = data => createAPI('/outbound/closeOutboundNotification','post',data) // 下达拣货出库单 export const issueOutboundNotification = data => createAPI('/outbound/issueOutboundNotification','post',data) // 查询拣货出库单明细 export const getOutboundDetail = data => createAPI('/outbound/getOutboundDetail','post',data) export const getOutboundDetailWithRoll = data => createAPI('/outbound/getOutboundDetailWithRoll','post',data) // 新增拣货出库单明细 export const saveOutboundDetail = data => createAPI('/outbound/saveOutboundDetail','post',data) // 查物料 export const getOutboundPartList = data => createAPI('/outbound/getOutboundPartList','post',data) // 删除拣货出库单明细 export const deleteOutboundDetail = data => createAPI('/outbound/deleteOutboundDetail','post',data) // 批量编辑明细 export const updateOutboundDetail = data => createAPI('/outbound/updateOutboundDetail','post',data) // 获取出库明细 export const getOutboundDetail2 = data => createAPI('/outbound/getOutboundDetail2','post',data)