ManiFestJsonController.java
4.1 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.tianbo.controller.json;
import com.tianbo.common.ModelAndPage;
import com.tianbo.controller.base.BaseController;
import com.tianbo.model.TKpiCargoManifest;
import com.tianbo.model.TKpiCargoManifestExample;
import com.tianbo.model.TKpiCargoManifestExample.Criteria;
import com.tianbo.service.ManiFestService;
import com.tianbo.util.dao.Page;
import com.tianbo.util.dao.Totals;
import org.apache.shiro.authz.annotation.RequiresRoles;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.math.BigDecimal;
import java.util.List;
@Controller
@RequestMapping("/man")
public class ManiFestJsonController extends BaseController{
@Autowired
ManiFestService maniFestService;
@RequestMapping(value = "list.json",method = RequestMethod.POST)
@RequiresRoles("admin")
@ResponseBody
public ModelAndPage<TKpiCargoManifest> maniList(@ModelAttribute TKpiCargoManifest manifest, @ModelAttribute Page frontPage){
if(frontPage.getBegin()>=0){
defaultDataStart = frontPage.getBegin();
}
if (frontPage.getLength()>0){
defaultPerPage = frontPage.getLength();
}
TKpiCargoManifestExample example = new TKpiCargoManifestExample();
Criteria criteria = example.createCriteria();
//根据时间段-年
if(manifest.getCuryear()!=null&&manifest.getEndyear()!=null){
criteria.andCuryearBetween(manifest.getCuryear(),manifest.getEndyear());
}
//根据时间段-月
if(manifest.getCurmonth()!=null&&manifest.getEndmonth()!=null){
criteria.andCurmonthBetween(manifest.getCurmonth(),manifest.getEndmonth());
}
//根据时间段-日
if(manifest.getCurweek()!=null&&manifest.getEndweek()!=null){
criteria.andCurweekBetween(manifest.getCurweek(),manifest.getEndweek());
}
//根据机号
if(checkPropertyNull(manifest.getPlaneno())){
criteria.andPlanenoEqualTo(manifest.getPlaneno());
}
//根据航班号
if(checkPropertyNull(manifest.getFlightno())){
criteria.andFlightnoEqualTo(manifest.getFlightno());
}
//根据机型
if(checkPropertyNull(manifest.getPlanetype())){
criteria.andPlanetypeEqualTo(manifest.getPlanetype());
}
//根据航空公司
if(checkPropertyNull(manifest.getAircorpid())){
criteria.andAircorpidEqualTo(manifest.getAircorpid());
}
//进出港
if(checkPropertyNull(manifest.getExpimp())){
criteria.andExpimpEqualTo(manifest.getExpimp());
}
//国内国际
if(checkPropertyNull(manifest.getDomint())){
criteria.andDomintEqualTo(manifest.getDomint());
}
//运单类型
if(checkPropertyNull(manifest.getWaybilltype())){
criteria.andWaybilltypeEqualTo(manifest.getWaybilltype());
}
//营业点
if(checkPropertyNull(manifest.getOperdepartid())){
criteria.andOperdepartidEqualTo(manifest.getOperdepartid());
}
int count = maniFestService.countByExample(example);
BigDecimal weight = maniFestService.sumWeightByExample(example);
BigDecimal pcs= maniFestService.sumPcsByExample(example);
BigDecimal vol= maniFestService.sumVolByExample(example);
Totals totals = new Totals(weight,pcs,vol);
Page page = new Page(defaultDataStart,defaultPerPage);
page.setCount(count);
example.setPage(page); //oracle 用这个
List<TKpiCargoManifest> maniList = maniFestService.selectByExample(example);
ModelAndPage<TKpiCargoManifest> modelAndPage = new ModelAndPage<TKpiCargoManifest>(maniList,page,totals);
return modelAndPage;
}
}