| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.vincent.rsf.framework.common.R; |
| | | import com.vincent.rsf.server.manager.controller.params.GenerateTaskParams; |
| | | import com.vincent.rsf.server.manager.entity.Task; |
| | | import com.vincent.rsf.server.manager.entity.WaitPakin; |
| | | import com.vincent.rsf.server.manager.entity.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface TaskService extends IService<Task> { |
| | | |
| | | R generateTasks(GenerateTaskParams waitPakin, Long loginUserId); |
| | | |
| | | R generateFlatWarehouseTasks(WaitPakin waitPakins,String locCode, Long loginUserId); |
| | | R generateFlatWarehouseTasks(WaitPakin waitPakins, String locCode, Long loginUserId); |
| | | |
| | | R generateAGVTasks(WaitPakin waitPakins,String locCode,String orgSta, Long loginUserId); |
| | | R generateAGVTasks(WaitPakin waitPakins, String locCode, String orgSta, Long loginUserId); |
| | | |
| | | // R completeTask(String id); |
| | | void completeTask(List<Task> task) throws Exception; |
| | | void completeTask(List<Task> task) throws Exception; |
| | | |
| | | R removeTask(Long[] ids); |
| | | R removeTask(Long[] ids, Long loginUserId); |
| | | |
| | | Task pickOrCheckTask(Long id, String oType) throws Exception; |
| | | |
| | | void complateInTask(List<Task> tasks) throws Exception; |
| | | } |
| | | |
| | | Task taskToTop(Long id, Long loginUserId) throws Exception; |
| | | |
| | | Task operateComplete(Long id, Long loginUserId); |
| | | |
| | | Task completeFullOutStock(Long id, Long loginUserId); |
| | | |
| | | void moveToDeep(Long loginUserId, String curLoc) throws Exception; |
| | | |
| | | void saveOutStockItem(List<TaskItem> taskItems, WkOrderItem orderItem, WaveItem waveItem, WkOrderItem diffItem, Long loginUserId) throws Exception; |
| | | |
| | | R menualExceTask(List<Long> ids); |
| | | |
| | | void pubTaskToWcs(List<Task> tasks); |
| | | |
| | | /** |
| | | * 同箱码下多条 200 拣料出库一次性处理:按相同物料合计扣减库位、更新出库单/库存明细、生成一张拣料入库单(有余量时)、更新库位状态 |
| | | */ |
| | | void processPickOutBarcodeAll200(List<Task> all200Tasks); |
| | | } |