Blame view

src/main/java/com/huaheng/pc/task/taskHeader/service/TaskHeaderService.java 1.12 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
30
    AjaxResult createTransferTask(String sourceLocation, String destinationLocation);


    AjaxResult createCheckOutTask(String[] ids);

    AjaxResult completeCycleCountOrSeeOutTask(TaskHeader taskHeader);
xqs authored
31
xqs authored
32
33
    AjaxResult createReceiptTask(List<Integer> ids);
xqs authored
34
35
36
    Integer UncompleteCount(String containerCode);
mahuandong authored
37
}