Blame view

src/main/java/com/huaheng/pc/task/taskHeader/service/TaskHeaderService.java 1.41 KB
mahuandong authored
1
2
package com.huaheng.pc.task.taskHeader.service;
pengcheng authored
3
import com.huaheng.framework.web.domain.AjaxResult;
4
import com.huaheng.pc.inventory.cycleCountDetail.domain.CycleCountDetail;
pengcheng authored
5
import com.huaheng.pc.task.taskHeader.domain.ShipmentTaskCreateModel;
mahuandong authored
6
7
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import com.baomidou.mybatisplus.extension.service.IService;
wangyanxiong authored
8
9
10
11
12
import org.apache.ibatis.annotations.Param;

import java.util.List;
import java.util.Map;
mahuandong authored
13
14
15
public interface TaskHeaderService extends IService<TaskHeader>{
pengcheng authored
16
17
    AjaxResult createTaskFromShipmentContainers(ShipmentTaskCreateModel shipmentTaskCreateModel) ;
wangyanxiong authored
18
19
    AjaxResult<TaskHeader> sendTaskToWcs(Integer[] taskIds);
wangyanxiong authored
20
21
22
23
24
25
    AjaxResult completeTaskByWMS(Integer[] taskIds) throws Exception;

    AjaxResult completeReceiptTask(TaskHeader task) throws Exception;

//    List<Map<String, Object>> getReceiptTask(@Param("taskId") Integer taskId);
26
27
28
29
    AjaxResult createTransferTask(String sourceLocation, String destinationLocation);

    AjaxResult createCheckOutTask(String[] ids);
30
31
32
    AjaxResult completeSeeOutTask(TaskHeader taskHeader);

    AjaxResult completeCycleCountTask(TaskHeader taskHeader);
xqs authored
33
34
    AjaxResult createReceiptTask(List<Integer> ids);
wangyanxiong authored
35
36

    void completeShipmentTask(TaskHeader task) ;
37
xqs authored
38
39
    Integer UncompleteCount(String containerCode);
40
41
    AjaxResult cancelTask(Integer[] taskIds) ;
42
43
    List<TaskHeader> preferenceRealize (List<TaskHeader> taskHeaderList);
xqs authored
44
mahuandong authored
45
}