ShipmentApiController.java
2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.huaheng.api.general.controller;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.huaheng.api.general.domain.ShipmentDomain;
import com.huaheng.api.general.service.ShipmentApiService;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
@RestController
@RequestMapping("/api/shipmentApi")
@Api(tags = {"出库单接口"}, value = "出库单接口shipment")
public class ShipmentApiController extends BaseController {
    @Resource
    private ShipmentApiService shipmentApiService;
    /**
     * 同步出库单
     */
    @Log(title = "出库单添加", action = BusinessType.INSERT)
    @PostMapping("/shipment")
    @ApiOperation("出库单添加公共接口")
    @ResponseBody
    @ApiLogger(apiName = "添加出库单", from="ERP")
    public AjaxResult Shipment(@RequestBody List<ShipmentDomain> shipmentDomains)
    {
        if(shipmentDomains == null||shipmentDomains.size()<=0){
            return AjaxResult.error("出库单为空");
        }
        AjaxResult ajaxResult = handleMultiProcessV1("Shipment", new BaseController.MultiProcessListener() {
            @Override
            public AjaxResult doProcess() {
                return   shipmentApiService.shipmentlist(shipmentDomains);
            }
        });
        return ajaxResult;
    }
    /**
     * 取消出库单
     */
    @Log(title = "出库-出库单 ",operating = "出库单删除", action = BusinessType.UPDATE)
    @PostMapping("/remove")
    @ResponseBody
    @ApiLogger(apiName = "取消出库单", from="ERP")
    public AjaxResult remove(@RequestBody List<String> shipmentCodeList){
        if (shipmentCodeList==null&&shipmentCodeList.size()<1){
            return AjaxResult.error("出库单号列表为空");
        }
        return shipmentApiService.remove(shipmentCodeList);
    }
    /**
     * 出库单查询
     */
    @Log(title = "出库-出库单 ",operating = "出库单删除", action = BusinessType.UPDATE)
    @GetMapping("/search")
    @ResponseBody
    @ApiLogger(apiName = "取消入库单", from="ERP")
    public AjaxResult search(@RequestParam String shipmentCode,
                             @RequestParam String companyCode,
                             @RequestParam String warehouseCode){
        return shipmentApiService.search(shipmentCode,companyCode,warehouseCode);
    }
}