import { createAPI } from "@/utils/httpRequest.js"; // 查询收获入库单 export const searchInboundNotification = data => createAPI('/inbound/searchInboundNotification','post',data) // 新增收获入库单 export const saveInboundNotification = data => createAPI('/inbound/saveInboundNotification','post',data) // 编辑收获入库单 export const updateInboundNotification = data => createAPI('/inbound/updateInboundNotification','post',data) // 删除收获入库单 export const deleteInboundNotification = data => createAPI('/inbound/deleteInboundNotification','post',data) // 关闭收获入库单 export const closeInboundNotification = data => createAPI('/inbound/closeInboundNotification','post',data) // 下达收获入库单 export const issueInboundNotification = data => createAPI('/inbound/issueInboundNotification','post',data) // 查询收获入库单明细 export const getInboundDetail = data => createAPI('/inbound/getInboundDetail','post',data) // 新增收获入库单明细 export const saveInboundDetail = data => createAPI('/inbound/saveInboundDetail','post',data) // 查物料 export const getInboundPartList = data => createAPI('/inbound/getInboundPartList','post',data) // 删除收获入库单明细 export const deleteInboundDetail = data => createAPI('/inbound/deleteInboundDetail','post',data) // 批量编辑明细 export const updateInboundDetail = data => createAPI('/inbound/updateInboundDetail','post',data) // 获取入库明细 export const getInboundDetail2 = data => createAPI('/inbound/getInboundDetail2','post',data)