Blame view

src/main/java/com/huaheng/api/acs/controller/AcsController.java 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.huaheng.api.acs.controller;

import com.huaheng.api.acs.domain.AcsStatus;
import com.huaheng.api.acs.service.AcsService;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.task.agvTask.service.AgvTaskService;
import io.swagger.annotations.ApiOperation;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;

@RestController
@RequestMapping("/agv")
public class AcsController extends BaseController {

    @Resource
    private AcsService acsService;
周鸿 authored
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

    /**
     * status 20  任务执行中;
     * 50  取货完成;
     * 100  任务完成;
     * @param acsStatus
     * @return
     */
    @PostMapping("/notifyAGVTask")
    @ApiOperation("更新AGV状态")
    @ResponseBody
    @ApiLogger(apiName = "更新AGV状态", from="acs")
    @Transactional(rollbackFor = Exception.class)
    public AjaxResult notifyAGVTask(@RequestBody AcsStatus acsStatus) {
        if(acsStatus == null) {
            return AjaxResult.error("入库组盘信息为空");
        }
        String taskNo = acsStatus.getTaskNo();
周鸿 authored
41
42
43
        String carNo = acsStatus.getAgvNo();
        int status = acsStatus.getState();
        String updateBy = "acs";
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
        if(StringUtils.isEmpty(taskNo) ) {
            return AjaxResult.error("更新AGV状态,任务号为空");
        }
        if(status == 0) {
            return AjaxResult.error("更新AGV状态,状态信息为空");
        }
        if(StringUtils.isEmpty(updateBy)) {
            return AjaxResult.error("更新AGV状态,更新者信息为空");
        }
        String finalUpdateBy = updateBy;
        AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
            @Override
            public AjaxResult doProcess() {
                AjaxResult ajaxResult = acsService.notifyAGVTask(taskNo, carNo, status, finalUpdateBy);
                return ajaxResult;
            }
        });
        return ajaxResult;
    }
周鸿 authored
64
65
66
67


}