Blame view

src/main/java/com/huaheng/pc/shipment/shipmentAnalyzeTemplate/controller/ShipmentAnalyzeTemplateController.java 3.67 KB
pengcheng authored
1
package com.huaheng.pc.shipment.shipmentAnalyzeTemplate.controller;
2
3
4
5
6
7
8
9
10
11
12
13
14
15


import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
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.page.PageDomain;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.framework.web.page.TableSupport;
pengcheng authored
16
17
import com.huaheng.pc.shipment.shipmentAnalyzeTemplate.domain.ShipmentAnalyzeTemplate;
import com.huaheng.pc.shipment.shipmentAnalyzeTemplate.service.ShipmentAnalyzeTemplateService;
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
import io.swagger.annotations.Api;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.List;

/**
 * 订单分析结果
 * @author ricard
 * @date    19.8.26
 *
 */

@Api(tags={"订单分析结果"})
@Controller
@RequestMapping("/config/shipmentAnalyzeTemplate")
public class ShipmentAnalyzeTemplateController extends BaseController {

    private String prefix = "config/shipmentAnalyzeTemplate";

    @Autowired
    private ShipmentAnalyzeTemplateService shipmentAnalyzeTemplateService;


    @RequiresPermissions("config:shipmentAnalyzeTemplate:view")
    @GetMapping()
49
    public String shipmentAnalyzeTemplate() {
50
51
52
53
54
55
        return prefix + "/shipmentAnalyzeTemplate";
    }

    /**
     * 查询订单分析结果
     */
56
    @RequiresPermissions("config:shipmentAnalyzeTemplate:list")
57
58
59
60
61
62
63
64
65
66
    @Log(title = "配置-订单分析结果", operating="查看订单分析结果", action = BusinessType.GRANT)
    @PostMapping("/list")
    @ResponseBody
    public TableDataInfo list(ShipmentAnalyzeTemplate shipmentAnalyzeTemplate, String createdBegin, String createdEnd)
    {
        LambdaQueryWrapper<ShipmentAnalyzeTemplate> lambdaQueryWrapper = Wrappers.lambdaQuery();
        PageDomain pageDomain = TableSupport.buildPageRequest();
        Integer pageNum = pageDomain.getPageNum();
        Integer pageSize = pageDomain.getPageSize();
pengcheng authored
67
        lambdaQueryWrapper.ge(StringUtils.isNotEmpty(createdBegin), ShipmentAnalyzeTemplate::getCreated, createdBegin)
68
69
70
                .le(StringUtils.isNotEmpty(createdEnd), ShipmentAnalyzeTemplate::getCreated, createdEnd)
                .eq(ShipmentAnalyzeTemplate::getWarehouseCode, ShiroUtils.getWarehouseCode())
                .eq(StringUtils.isNotEmpty(shipmentAnalyzeTemplate.getCriteriaCode()
pengcheng authored
71
                ), ShipmentAnalyzeTemplate::getCriteriaCode,shipmentAnalyzeTemplate.getCriteriaCode());
72
73
74
75
76
77
78
79
80
81
82
83
84
85

        if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize)){
            /**
             * 使用分页查询
             */
            Page<ShipmentAnalyzeTemplate> page = new Page<>(pageNum, pageSize);
            IPage<ShipmentAnalyzeTemplate> iPage = shipmentAnalyzeTemplateService.page(page, lambdaQueryWrapper);
            return getMpDataTable(iPage.getRecords(),iPage.getTotal());
        } else {
            List<ShipmentAnalyzeTemplate> list = shipmentAnalyzeTemplateService.list(lambdaQueryWrapper);
            return getDataTable(list);
        }
    }
86
87
}