Blame view

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

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

    AjaxResult completeReceiptTask(TaskHeader task) throws Exception;

//    List<Map<String, Object>> getReceiptTask(@Param("taskId") Integer taskId);
25
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) ;
xqs authored
42
mahuandong authored
43
}