cl
23 小时以前 43d6ae86bc229a1a75637fae33be378e105016e3
rsf-server/src/main/java/com/vincent/rsf/server/manager/service/TaskService.java
@@ -6,6 +6,7 @@
import com.vincent.rsf.server.manager.entity.*;
import java.util.List;
import java.util.Map;
public interface TaskService extends IService<Task> {
@@ -27,7 +28,21 @@
    Task operateComplete(Long id, Long loginUserId);
    /**
     * @param notifyRcsFromAdmin true:管理后台「全版出库完结」接口调用时通知 RCS;false:定时/PDA 等同源不通知
     */
    Task completeFullOutStock(Long id, Long loginUserId, boolean notifyRcsFromAdmin);
    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);
}