|
1
2
3
4
|
package com.huaheng.api.tv.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
5
6
|
import com.huaheng.api.tv.domain.AllBean;
import com.huaheng.api.tv.domain.TopBean;
|
|
7
|
import com.huaheng.api.tv.domain.TvBean;
|
|
8
|
import com.huaheng.api.tv.domain.UpBean;
|
|
9
10
|
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.common.constant.QuantityConstant;
|
|
11
|
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.container.domain.Container;
import com.huaheng.pc.config.container.service.ContainerService;
import com.huaheng.pc.config.location.domain.Location;
import com.huaheng.pc.config.location.service.LocationService;
import com.huaheng.pc.config.material.domain.Material;
import com.huaheng.pc.config.material.service.MaterialService;
import com.huaheng.pc.config.zone.domain.Zone;
import com.huaheng.pc.config.zone.service.ZoneService;
import com.huaheng.pc.inventory.InventoryMaterialSummary.domain.InventoryMaterialSummary;
import com.huaheng.pc.inventory.InventoryMaterialSummary.service.InventoryMaterialSummaryService;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import com.huaheng.pc.inventory.inventoryDetail.service.InventoryDetailService;
import com.huaheng.pc.inventory.inventoryTransaction.service.InventoryTransactionService;
|
|
27
28
|
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetailTv;
import com.huaheng.pc.shipment.shipmentDetail.mapper.ShipmentDetailMapper;
|
|
29
|
import com.huaheng.pc.task.taskDetail.domain.TaskDetail;
|
|
30
|
import com.huaheng.pc.task.taskDetail.service.TaskDetailService;
|
|
31
32
33
34
35
36
|
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderService;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
|
|
37
|
import java.util.*;
|
|
38
39
|
@RestController
|
|
40
|
@CrossOrigin
|
|
41
42
43
44
45
46
|
@RequestMapping("/API/WMS/v2")
public class TvController extends BaseController {
@Resource
private TaskHeaderService taskHeaderService;
@Resource
|
|
47
48
|
private TaskDetailService taskDetailService;
@Resource
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
|
private ContainerService containerService;
@Resource
private LocationService locationService;
@Resource
private InventoryTransactionService inventoryTransactionService;
@Resource
private ZoneService zoneService;
@Resource
private InventoryDetailService inventoryDetailService;
@Resource
private InventoryMaterialSummaryService inventoryMaterialSummaryService;
@Resource
private MaterialService materialService;
|
|
62
63
|
@Resource
private ShipmentDetailMapper shipmentDetailMapper;
|
|
64
65
|
@PostMapping("/getTvView")
|
|
66
|
//@ApiLogger(apiName = "获取电视信息", from="TV")
|
|
67
68
|
@ResponseBody
public AjaxResult getTvView(@RequestBody WcsTask wcsTask) {
|
|
69
|
String area = wcsTask.getArea();
|
|
70
71
|
List<TaskHeader> taskHeaderList = taskHeaderService.list(new LambdaQueryWrapper<TaskHeader>()
.eq(TaskHeader::getArea, area)
|
|
72
|
.lt(TaskHeader::getStatus, QuantityConstant.TASK_STATUS_COMPLETED)
|
|
73
74
75
76
|
.orderByDesc(TaskHeader::getId));
//写入物料编码
if (taskHeaderList != null && !taskHeaderList.isEmpty()) {
|
|
77
|
for (TaskHeader taskHeader : taskHeaderList) {
|
|
78
79
80
|
String materialCode = taskHeader.getMaterialCode();
String warehouseCode = taskHeader.getWarehouseCode();
Material material = materialService.getMaterialByCode(materialCode, warehouseCode);
|
|
81
|
if (material != null) {
|
|
82
83
84
85
|
taskHeader.setMaterialCode(material.getName());
}
}
}
|
|
86
|
|
|
87
88
89
|
//获取指定库区的空托盘数量
List<Container> containerEmptyList = containerService.list(new LambdaQueryWrapper<Container>()
.eq(Container::getArea, area)
|
|
90
|
.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_EMPTY)
|
|
91
|
.ne(Container::getLocationCode, ""));
|
|
92
93
|
int containerEmptySize = containerEmptyList.size();
|
|
94
95
96
97
98
99
100
101
102
103
104
105
|
//获取指定库区的有货托盘数量
//List<Container> manyEmptyList = containerService.list(new LambdaQueryWrapper<Container>()
// .eq(Container::getArea, area)
// .eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_MANY)
// .ne(Container::getLocationCode, ""));
//int manyEmptyListSize = manyEmptyList.size();
//空托盘的数量+有货托盘数量*6 (有货托盘数量这个项目好像没有啊,所以直接返回空托盘数量)
//containerEmptySize = containerEmptySize + manyEmptyListSize * 6;
//获取指定库区的有货托盘数量
List<Container> containerSomeList = containerService.list(new LambdaQueryWrapper<Container>()
.eq(Container::getArea, area)
|
|
106
|
.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_SOME)
|
|
107
|
.ne(Container::getLocationCode, ""));
|
|
108
109
|
int containerSomeSize = containerSomeList.size();
|
|
110
111
|
//指定库区总库位数
List<Location> locationList = locationService.list(new LambdaQueryWrapper<Location>().eq(Location::getArea, area));
|
|
112
113
|
int totalLocationSize = locationList.size();
|
|
114
115
116
117
118
|
//获取指定区域的所有库存数
Zone zone = zoneService.getOne(new LambdaQueryWrapper<Zone>().eq(Zone::getArea, area));
List<InventoryDetail> inventoryDetailList = inventoryDetailService.list(new LambdaQueryWrapper<InventoryDetail>()
.eq(InventoryDetail::getZoneCode, zone.getCode()));
|
|
119
120
121
|
int inventorySize = inventoryDetailList.size();
|
|
122
123
124
|
//库存物料汇总
List<InventoryMaterialSummary> list = inventoryMaterialSummaryService.list(new LambdaQueryWrapper<InventoryMaterialSummary>()
.eq(InventoryMaterialSummary::getZoneCode, zone.getCode()));
|
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
if (list == null) {
list = Collections.emptyList();
}
//筛选库存汇总数据的专用方法
List<InventoryMaterialSummary> details = inventoryMaterialSummaryService.duplicateRemoval(list);
TvBean tvBean = new TvBean();
tvBean.setDetails(details);
tvBean.setContainerEmptySize(containerEmptySize);
tvBean.setContainerSomeSize(containerSomeSize);
tvBean.setTotalLocationSize(totalLocationSize);
tvBean.setTaskHeaderList(taskHeaderList);
tvBean.setInventorySize(inventorySize);
return AjaxResult.success(tvBean);
}
|
|
140
141
142
|
@PostMapping("/getTvReceiptView")
@ResponseBody
|
|
143
|
@ApiLogger(apiName = "获取电视入库信息", from = "TV")
|
|
144
|
public AjaxResult getTvReceiptView() {
|
|
145
146
147
148
|
AllBean allBean = new AllBean();
LambdaQueryWrapper<TaskDetail> queryWrapper = Wrappers.lambdaQuery();
List<String> str = Arrays.asList("100", "200");
queryWrapper.in(TaskDetail::getTaskType, str)
|
|
149
|
.last(" and date_format( created, '%Y-%m-%d' )= date_format( now(), '%Y-%m-%d' ) and `status`>=100");
|
|
150
151
|
List<TaskDetail> list = taskDetailService.list(queryWrapper);
List<TopBean> topList = new ArrayList<>();
|
|
152
|
if (!list.isEmpty()) {
|
|
153
|
topList = taskDetailService.getTvReceiptView("1");
|
|
154
|
}
|
|
155
|
allBean.setTopList(topList);
|
|
156
|
List<UpBean> upList = taskDetailService.getTvNotReceiptList("1");
|
|
157
158
159
160
161
162
|
allBean.setUpList(upList);
return AjaxResult.success(allBean);
}
@PostMapping("/getTvShipmentView")
@ResponseBody
|
|
163
|
@ApiLogger(apiName = "获取电视出库信息", from = "TV")
|
|
164
165
166
|
public AjaxResult getTvShipmentView(@RequestBody Map<String, String> map) {
AllBean allBean = new AllBean();
List<String> str = Arrays.asList("300", "400");
|
|
167
168
169
|
List<TaskDetail> list = taskDetailService.list(new LambdaQueryWrapper<TaskDetail>()
.in(TaskDetail::getTaskType, str)
.last(" and date_format( created, '%Y-%m-%d' )= date_format( now(), '%Y-%m-%d' ) and `status`>=100"));
|
|
170
|
List<TopBean> topList = new ArrayList<>();
|
|
171
|
if (!list.isEmpty()) {
|
|
172
|
topList = taskDetailService.getTvReceiptView("2");
|
|
173
|
}
|
|
174
|
allBean.setTopList(topList);
|
|
175
|
List<UpBean> upList = taskDetailService.getTvNotReceiptList("2");
|
|
176
|
allBean.setUpList(upList);
|
|
177
|
String par = map.get("par");
|
|
178
|
List<ShipmentDetailTv> portList = shipmentDetailMapper.getTvOutList(par);
|
|
179
|
allBean.setPortList(portList);
|
|
180
181
|
return AjaxResult.success(allBean);
}
|
|
182
183
184
185
|
@PostMapping("/getTvPortShipmentView")
@ApiOperation("获取出站口出库信息")
@ResponseBody
|
|
186
187
|
@ApiLogger(apiName = "获取出站口出库信息", from = "TV")
public AjaxResult getTvPortShipmentView(@RequestBody Map<String, String> map) {
|
|
188
|
String par = map.get("par");
|
|
189
|
List<ShipmentDetailTv> upList = shipmentDetailMapper.getTvOutList(par);
|
|
190
191
|
return AjaxResult.success(upList);
}
|
|
192
|
}
|