WaveFlowDetailController.java
3.26 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
78
79
80
81
82
83
84
package com.huaheng.pc.shipment.waveFlowDetail.controller;
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;
import com.huaheng.pc.shipment.waveFlowDetail.domain.WaveFlowDetail;
import com.huaheng.pc.shipment.waveFlowDetail.service.WaveFlowDetailService;
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("/shipment/waveFlowDetail")
public class WaveFlowDetailController extends BaseController {
private String prefix = "shipment/waveFlowDetail";
@Autowired
private WaveFlowDetailService waveFlowDetailService;
@RequiresPermissions("shipment:waveFlowDetail:view")
@GetMapping()
public String waveFlowDetail() {
return prefix + "/waveFlowDetail";
}
/**
* 查询订单分析结果
*/
@RequiresPermissions("shipment:waveFlowDetail:list")
@Log(title = "出库-波次流明细", operating="查看波次流明细", action = BusinessType.GRANT)
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(WaveFlowDetail waveFlowDetail, String createdBegin, String createdEnd)
{
LambdaQueryWrapper<WaveFlowDetail> lambdaQueryWrapper = Wrappers.lambdaQuery();
PageDomain pageDomain = TableSupport.buildPageRequest();
Integer pageNum = pageDomain.getPageNum();
Integer pageSize = pageDomain.getPageSize();
lambdaQueryWrapper.ge(StringUtils.isNotEmpty(createdBegin),WaveFlowDetail::getCreated, createdBegin)
.le(StringUtils.isNotEmpty(createdEnd), WaveFlowDetail::getCreated, createdEnd)
.eq(WaveFlowDetail::getWarehouseCode, ShiroUtils.getWarehouseCode());
if (StringUtils.isNotNull(pageNum) && StringUtils.isNotNull(pageSize)){
/**
* 使用分页查询
*/
Page<WaveFlowDetail> page = new Page<>(pageNum, pageSize);
IPage<WaveFlowDetail> iPage = waveFlowDetailService.page(page, lambdaQueryWrapper);
return getMpDataTable(iPage.getRecords(),iPage.getTotal());
} else {
List<WaveFlowDetail> list = waveFlowDetailService.list(lambdaQueryWrapper);
return getDataTable(list);
}
}
}