package com.zy.asrs.common.wms.service; import com.zy.asrs.common.domain.dto.LocDetlDto; import com.zy.asrs.common.domain.dto.TaskDto; import com.zy.asrs.common.domain.enums.IoWorkType; import com.zy.asrs.common.domain.param.FullStoreParam; import com.zy.asrs.common.domain.param.LocDetlAdjustParam; import com.zy.asrs.common.domain.param.StockOutParam; import java.util.List; public interface WorkService { /** * 全板入库 * * @return 库位号 */ String startupFullPutStore(FullStoreParam param, Long userId, Long hostId); /** * 出库作业 */ void startupFullTakeStore(StockOutParam param, Long userId, Long hostId); /** * 手动完成工作档 */ void completeWrkMast(String workNo, Long userId, Long hostId); /** * 手动取消工作档 */ void cancelWrkMast(String workNo, Long userId, Long hostId); /** * 手动拣料入库工作档 */ void pickWrkMast(String workNo, Long userId, Long hostId); void stockOut(Integer staNo, List locDetls, IoWorkType ioWorkType, Long userId, Long hostId); void stockOut(Integer staNo, TaskDto taskDto, Long userId, Long hostId); /** * 库存明细调整 */ void adjustLocDetl(LocDetlAdjustParam param, Long userId, Long hostId); /** * 库位移转 */ void locMove(String sourceLocNo, String locNo, Long userId, Long hostId); }