TvController.java
13.7 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package com.huaheng.api.tv.controller;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.huaheng.api.tv.domain.*;
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.common.constant.HttpConstant;
import com.huaheng.common.constant.QuantityConstant;
import com.huaheng.common.utils.restful.RestUtil;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.service.ConfigService;
import com.huaheng.mobile.task.TaskDomain;
import com.huaheng.pc.config.address.service.AddressService;
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;
import com.huaheng.pc.system.dict.domain.DictData;
import com.huaheng.pc.system.dict.service.IDictDataService;
import com.huaheng.pc.task.taskDetail.domain.TaskDetail;
import com.huaheng.pc.task.taskDetail.service.TaskDetailService;
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderService;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderTvService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
@RestController
@RequestMapping("/API/WMS/v2")
public class TvController extends BaseController {
@Resource
private TaskHeaderService taskHeaderService;
@Resource
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;
@Resource
private TaskHeaderTvService taskHeaderTvService;
@Resource
private TaskDetailService taskDetailService;
@Resource
private IDictDataService dictDataService;
@Resource
private ConfigService configService;
@Autowired
private AddressService addressService;
@PostMapping("/getTvView")
@ApiOperation("获取电视信息")
@ResponseBody
public AjaxResult getTvView(@RequestBody WcsTask wcsTask) {
String area = wcsTask.getArea();
LambdaQueryWrapper<TaskHeader> taskHeaderLambdaQueryWrapper = Wrappers.lambdaQuery();
taskHeaderLambdaQueryWrapper.eq(TaskHeader::getArea, area)
.lt(TaskHeader::getStatus, QuantityConstant.TASK_STATUS_COMPLETED)
.orderByDesc(TaskHeader::getId);
List<TaskHeader> taskHeaderList = taskHeaderService.list(taskHeaderLambdaQueryWrapper);
if (taskHeaderList != null && taskHeaderList.size() > 0) {
for (TaskHeader taskHeader : taskHeaderList) {
String materialCode = taskHeader.getMaterialCode();
String warehouseCode = taskHeader.getWarehouseCode();
Material material = materialService.getMaterialByCode(materialCode, warehouseCode);
if (material != null) {
taskHeader.setMaterialCode(material.getName());
}
}
}
LambdaQueryWrapper<Container> containerEmptyLambdaQueryWrapper = Wrappers.lambdaQuery();
containerEmptyLambdaQueryWrapper.eq(Container::getArea, area)
.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_EMPTY)
.ne(Container::getLocationCode, "");
List<Container> containerEmptyList = containerService.list(containerEmptyLambdaQueryWrapper);
int containerEmptySize = containerEmptyList.size();
LambdaQueryWrapper<Container> containerManyLambdaQueryWrapper = Wrappers.lambdaQuery();
containerManyLambdaQueryWrapper.eq(Container::getArea, area)
.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_MANY)
.ne(Container::getLocationCode, "");
List<Container> manyEmptyList = containerService.list(containerManyLambdaQueryWrapper);
int manyEmptyListSize = manyEmptyList.size();
containerEmptySize = containerEmptySize + manyEmptyListSize * 6;
LambdaQueryWrapper<Container> containerSomeLambdaQueryWrapper = Wrappers.lambdaQuery();
containerSomeLambdaQueryWrapper.eq(Container::getArea, area)
.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_SOME)
.ne(Container::getLocationCode, "");
List<Container> containerSomeList = containerService.list(containerSomeLambdaQueryWrapper);
int containerSomeSize = containerSomeList.size();
LambdaQueryWrapper<Location> locationLambdaQueryWrapper = Wrappers.lambdaQuery();
locationLambdaQueryWrapper.eq(Location::getArea, area);
List<Location> locationList = locationService.list(locationLambdaQueryWrapper);
int totalLocationSize = locationList.size();
LambdaQueryWrapper<Zone> zoneLambdaQueryWrapper = Wrappers.lambdaQuery();
zoneLambdaQueryWrapper.eq(Zone::getArea, area);
Zone zone = zoneService.getOne(zoneLambdaQueryWrapper);
LambdaQueryWrapper<InventoryDetail> inventoryDetailLambdaQueryWrapper = Wrappers.lambdaQuery();
inventoryDetailLambdaQueryWrapper.eq(InventoryDetail::getZoneCode, zone.getCode());
List<InventoryDetail> inventoryDetailList = inventoryDetailService.list(inventoryDetailLambdaQueryWrapper);
int inventorySize = inventoryDetailList.size();
LambdaQueryWrapper<InventoryMaterialSummary> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(InventoryMaterialSummary::getZoneCode, zone.getCode());
List<InventoryMaterialSummary> list = inventoryMaterialSummaryService.list(lambdaQueryWrapper);
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);
}
@GetMapping("/gettvView")
@CrossOrigin
public AjaxResult<List<TaskDomain>> getTvView(String port) {
List<TaskDomain> taskDomainList = new ArrayList<>();
//port多个站台用,分隔,查出所有头表
List<DictData> dictlist = dictDataService.selectDictDataByType("taskType");
List<TaskHeader> taskList = new ArrayList<>();
for (String p : port.split(",")) {
List<TaskHeader> tmpTaskList = taskHeaderTvService.getTaskByTvPort(p);
taskList.addAll(tmpTaskList);
}
lable1:
for (TaskHeader task : taskList) {
if (task.getInternalTaskType().intValue() == 100) {
task.setFromLocation(task.getToLocation());
}
lable2:
for (DictData dictData : dictlist) {
if (task.getTaskType().toString().equals(dictData.getDictValue())) {
task.setUserDef1(dictData.getDictLabel());
break lable2;
}
}
TaskDomain taskDomain = new TaskDomain();
List<TaskDetail> taskDetails = taskDetailService.findByTaskId(task.getId());
taskDomain.setTaskHeader(task);
// checkSpec(taskDetails);
taskDomain.setTaskDetails(taskDetails);
taskDomainList.add(taskDomain);
}
taskDomainList.sort(new Comparator<TaskDomain>() {
@Override
public int compare(TaskDomain o1, TaskDomain o2) {
TaskHeader task1 = o1.getTaskHeader();
TaskHeader task2 = o2.getTaskHeader();
int ret = task2.getStatus() - task1.getStatus();
if (ret == 0) {
ret = (int) (task2.getLastUpdated().getTime() - task1.getLastUpdated().getTime());
}
return ret;
}
});
return AjaxResult.success(taskDomainList);
}
@GetMapping("/gettvViewUp")
@ResponseBody
@CrossOrigin
public AjaxResult<List<TaskBillList>> getTvViewUp(String port) {
List<TaskBillList> taskBillLists=new ArrayList<>();
String area = "1";
String warehouseCode = "CS0001";
TvPortSelect tvPortSelect = new TvPortSelect();
tvPortSelect.setArea("1");
tvPortSelect.setStationCode(port);
tvPortSelect.setWarehouseCode(warehouseCode);
//调用wcs接口
String url = addressService.selectAddress(QuantityConstant.ADDRESS_WCS_Station_Container,warehouseCode, area);
String jsonParam = JSON.toJSONString(tvPortSelect);
ResponseEntity<JSONObject> result = RestUtil.request_post(url, warehouseCode, jsonParam);
if (result != null && result.getBody() != null) {
String code = result.getBody().getString("code");
String msg = result.getBody().getString("msg");
if (!HttpConstant.isSuccess(Integer.parseInt(code))) {
return AjaxResult.success(taskBillLists);
// return AjaxResult.error(msg);
}
} else {
return AjaxResult.success(taskBillLists);
// Date date = new Date();
// SimpleDateFormat formatter = new SimpleDateFormat("yyyy-dd-MM HH:mm:ss");
// throw new ServiceException(formatter.format(date)+"调取WCS接口未成功");
}
List<TaskBill> taskBillList = new ArrayList<>();
TaskBill taskBill=new TaskBill();
String data = result.getBody().getString("data");
String containerCode = data.substring(15,22);
// String data = "data:{containerCode:CG00117, stationCode: P1001}";
// String containerCode = data.substring(20,27);
if (containerCode.trim().equals("")){
return AjaxResult.success(taskBillLists);
}
LambdaQueryWrapper<Container> containerLambdaQueryWrapper=Wrappers.lambdaQuery();
containerLambdaQueryWrapper.eq(Container::getCode,containerCode)
.eq(Container::getWarehouseCode,warehouseCode);
Container one = containerService.getOne(containerLambdaQueryWrapper);
if (one==null){
return AjaxResult.success(taskBillLists);
}
LambdaQueryWrapper<TaskHeader> taskHeader=Wrappers.lambdaQuery();
taskHeader.eq(TaskHeader::getContainerCode,containerCode)
.eq(TaskHeader::getWarehouseCode,warehouseCode)
.eq(TaskHeader::getPort,port)
.last("ORDER BY id desc limit 1");
List<DictData> dictlist = dictDataService.selectDictDataByType("taskType");
TaskHeader task = taskHeaderService.getOne(taskHeader);
if (task==null){
return AjaxResult.success(taskBillLists);
}
for (DictData dictData : dictlist) {
if (task.getTaskType().toString().equals(dictData.getDictValue())) {
task.setUserDef1(dictData.getDictLabel());
break;
}
}
LambdaQueryWrapper<TaskDetail> taskDetail=Wrappers.lambdaQuery();
taskDetail.eq(TaskDetail::getWarehouseCode,warehouseCode)
.eq(TaskDetail::getTaskId,task.getId())
.eq(TaskDetail::getContainerCode,task.getContainerCode());
List<TaskDetail> list1 = taskDetailService.list(taskDetail);
// List<String> batch=new ArrayList<>();
// List<BigDecimal> qty=new ArrayList<>();
// BatchAndQty batchAndQty = new BatchAndQty();
TaskBillList taskBillList1=new TaskBillList();
List<BatchAndQty> batchAndQtyList = new ArrayList<>();
taskBill.setTaskType(task.getUserDef1());
taskBill.setContainerCode(task.getContainerCode());
taskBill.setPort(task.getPort());
taskBill.setFromLocation(task.getFromLocation());
for (TaskDetail ta:list1) {
// batch.add(ta.getBatch());
// qty.add(ta.getQty());
BatchAndQty batchAndQty = new BatchAndQty();
batchAndQty.setQty(ta.getQty());
batchAndQty.setBatchAndqty(ta.getBatch());
batchAndQtyList.add(batchAndQty);
}
taskBillList.add(taskBill);
taskBillList1.setTaskBillList(taskBillList);
taskBillList1.setBatchAndQtyList(batchAndQtyList);
taskBillLists.add(taskBillList1);
return AjaxResult.success(taskBillLists);
}
}