| | |
| | | package com.zy.asrs.wms.asrs.service; |
| | | |
| | | import com.zy.asrs.wms.asrs.entity.Loc; |
| | | import com.zy.asrs.wms.asrs.entity.param.FieldParam; |
| | | import com.zy.asrs.wms.asrs.entity.param.GeneratePakInParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface WorkService { |
| | | |
| | |
| | | //生成可用库位号 |
| | | Loc generateLoc(Long taskType, String barcode, Integer locTypeHeight); |
| | | |
| | | //生成可用库位号 |
| | | Loc generateLoc(Long taskType, Long matId, String batch, List<FieldParam> uniqueFields, Integer locTypeHeight); |
| | | |
| | | //生成入库任务(满托盘) |
| | | boolean generatePakIn(GeneratePakInParam param); |
| | | |
| | |
| | | //取消任务 |
| | | boolean cancelTask(Long taskId); |
| | | |
| | | //拣料任务 |
| | | boolean pickTask(Long taskId); |
| | | |
| | | } |