|
1
2
3
4
5
6
|
package com.huaheng.api.wcs.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.huaheng.api.wcs.domain.ManyEmptyDomain;
|
|
7
|
import com.huaheng.api.wcs.domain.WarecellLocationDomain;
|
|
8
9
|
import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.api.wcs.service.taskAssignService.TaskAssignService;
|
|
10
11
12
13
|
import com.huaheng.api.wcs.service.warecellAllocation.LocationAllocationService;
import com.huaheng.common.constant.QuantityConstant;
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.utils.StringUtils;
|
|
14
|
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
|
|
15
16
17
18
19
|
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.domain.AjaxResult;
import com.huaheng.framework.web.service.ConfigService;
|
|
20
|
import com.huaheng.pc.config.address.service.AddressService;
|
|
21
22
|
import com.huaheng.pc.config.container.domain.Container;
import com.huaheng.pc.config.container.service.ContainerService;
|
|
23
|
import com.huaheng.pc.config.containerType.service.ContainerTypeService;
|
|
24
25
|
import com.huaheng.pc.config.location.domain.Location;
import com.huaheng.pc.config.location.service.LocationService;
|
|
26
27
28
29
|
import com.huaheng.pc.config.locationHigh.domain.LocationHigh;
import com.huaheng.pc.config.locationHigh.service.LocationHighService;
import com.huaheng.pc.config.locationType.domain.LocationType;
import com.huaheng.pc.config.locationType.service.LocationTypeService;
|
|
30
31
|
import com.huaheng.pc.config.station.domain.Station;
import com.huaheng.pc.config.station.service.StationService;
|
|
32
33
34
|
import com.huaheng.pc.config.zone.domain.Zone;
import com.huaheng.pc.config.zone.service.ZoneService;
import com.huaheng.pc.inventory.inventoryHeader.service.InventoryHeaderService;
|
|
35
|
import com.huaheng.pc.system.dict.service.IDictDataService;
|
|
36
37
|
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderService;
|
|
38
|
import com.huaheng.pc.task.taskHeader.service.WorkTaskService;
|
|
39
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
40
41
42
|
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
|
|
43
|
import java.util.ArrayList;
|
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
@RestController
@RequestMapping("/API/WMS/v2")
public class EmptyContainerController extends BaseController {
@Resource
private WorkTaskService workTaskService;
@Resource
private LocationAllocationService allocationService;
@Resource
private ConfigService configService;
@Resource
private ZoneService zoneService;
@Resource
|
|
61
62
|
private LocationService locationService;
@Resource
|
|
63
64
65
66
67
|
private LocationTypeService locationTypeService;
@Resource
private LocationHighService locationHighService;
@Resource
private ContainerService containerService;
|
|
68
69
|
@Resource
private ContainerTypeService containerTypeService;
|
|
70
71
72
73
|
@Autowired
private AddressService addressService;
@Resource
private TaskHeaderService taskHeaderService;
|
|
74
75
|
@Resource
private TaskAssignService taskAssignService;
|
|
76
77
|
@Resource
private InventoryHeaderService inventoryHeaderService;
|
|
78
79
|
@Resource
private IDictDataService iDictDataService;
|
|
80
81
|
@Resource
private StationService stationService;
|
|
82
|
|
|
83
|
/**
|
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
* 生成空托盘出库任务
* @return
*/
@PostMapping("/emptyOut")
@Log(title = "任务-任务管理", operating = "生成空托盘出库任务", action = BusinessType.INSERT)
@ResponseBody
@ApiLogger(apiName = "emptyOut", from="ROBOT")
public AjaxResult emptyOut(@RequestBody ManyEmptyDomain manyEmptyDomain) {
AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = inventoryHeaderService.createEmptyOut(manyEmptyDomain.getContainerCode(),null,manyEmptyDomain.getPort(),QuantityConstant.WAREHOUSECODE);
return ajaxResult;
}
});
return ajaxResult;
}
/**
|
|
103
104
105
106
107
108
109
110
|
* 生成空托盘入库任务
* @return
*/
@PostMapping("/emptyIn")
@Log(title = "任务-任务管理", operating = "生成空托盘入库任务", action = BusinessType.INSERT)
@ResponseBody
@ApiLogger(apiName = "WCS空托入库", from="WCS")
public AjaxResult emptyIn(@RequestBody ManyEmptyDomain manyEmptyDomain) {
|
|
111
112
113
114
115
116
117
118
|
AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = inventoryHeaderService.createEmptyIn(manyEmptyDomain.getContainerCode(), null, manyEmptyDomain.getArea(),manyEmptyDomain.getPort());
return ajaxResult;
}
});
return ajaxResult;
|
|
119
120
121
|
}
/**
|
|
122
|
* 生成空托盘组入库任务
|
|
123
124
125
126
127
|
* @return
*/
@PostMapping("/manyEmptyIn")
@Log(title = "任务-任务管理", operating = "生成空托盘组入库任务", action = BusinessType.INSERT)
@ResponseBody
|
|
128
|
@ApiLogger(apiName = "manyEmptyIn", from="ROBOT")
|
|
129
|
public AjaxResult manyEmptyIn(@RequestBody ManyEmptyDomain manyEmptyDomain) {
|
|
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
|
AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = innerManyEmptyIn(manyEmptyDomain);
return ajaxResult;
}
});
return ajaxResult;
}
/**
* 生成空托盘组出库任务
* @return
*/
@PostMapping("/manyEmptyOut")
@Log(title = "任务-任务管理", operating = "生成空托盘组出库任务", action = BusinessType.INSERT)
@ResponseBody
@ApiLogger(apiName = "manyEmptyOut", from="ROBOT")
public AjaxResult manyEmptyOut(@RequestBody ManyEmptyDomain manyEmptyDomain) {
AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = innerManyEmptyOut(manyEmptyDomain);
return ajaxResult;
}
});
return ajaxResult;
}
private AjaxResult innerManyEmptyIn(@RequestBody ManyEmptyDomain manyEmptyDomain) {
|
|
162
163
164
165
|
if(manyEmptyDomain == null){
throw new ServiceException("空托盘组参数不对!");
}
String containerCode = manyEmptyDomain.getContainerCode();
|
|
166
|
String warehouseCode = manyEmptyDomain.getWarehouseCode();
|
|
167
168
|
String area = manyEmptyDomain.getArea();
String roadWay = manyEmptyDomain.getRoadWay();
|
|
169
|
List<String> roadWays = new ArrayList<>();
|
|
170
171
|
String[] str= roadWay.split(",");
roadWays = Arrays.asList(str);
|
|
172
|
|
|
173
174
175
|
if(StringUtils.isEmpty(manyEmptyDomain.getArea())){
throw new ServiceException("参数area不能为空!");
}
|
|
176
177
178
179
|
LambdaQueryWrapper<Zone> zoneLambdaQueryWrapper = Wrappers.lambdaQuery();
zoneLambdaQueryWrapper.eq(Zone::getArea, area);
Zone zone = zoneService.getOne(zoneLambdaQueryWrapper);
if(zone == null) {
|
|
180
|
return AjaxResult.error("分配库位时,没有找到库区,area"+area);
|
|
181
|
}
|
|
182
183
184
185
|
//String value = configService.getKey(QuantityConstant.RULE_ALLOCATION);
String value=iDictDataService.getDictValueByLabel(QuantityConstant.RULE_ALLOCATION, zone.getCode());
String height = manyEmptyDomain.getHeight();
|
|
186
|
/*if (StringUtils.isEmpty(height)) {
|
|
187
|
return AjaxResult.error("高度参数为空,请输入高度");
|
|
188
|
}*/
|
|
189
|
if (StringUtils.isEmpty(value)) {
|
|
190
|
return AjaxResult.error(zone.getCode()+"库区未绑定定位规则,请到字典管理中绑定库区定位规则");
|
|
191
192
193
|
}
int allocationRule = Integer.parseInt(value);
|
|
194
195
196
197
198
199
200
201
|
LambdaQueryWrapper<TaskHeader> taskHeaderLambdaQueryWrapper = Wrappers.lambdaQuery();
taskHeaderLambdaQueryWrapper.eq(TaskHeader::getContainerCode, containerCode)
.eq(TaskHeader::getWarehouseCode, warehouseCode)
.lt(TaskHeader::getStatus, QuantityConstant.TASK_STATUS_COMPLETED);
TaskHeader taskHeader = taskHeaderService.getOne(taskHeaderLambdaQueryWrapper);
if(taskHeader != null) {
return AjaxResult.success("已经生成空托盘组任务");
}
|
|
202
203
204
205
206
207
|
//查询满足条件的库位类型
LambdaQueryWrapper<LocationType> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(LocationType::getZoneCode, zone.getCode())
.eq(LocationType::getWarehouseCode, warehouseCode);
List<LocationType> locationTypeList = locationTypeService.list(lambdaQueryWrapper);
if(locationTypeList == null) {
|
|
208
|
return AjaxResult.error(zone.getCode()+"库区分配库位时,没有找到库位类型,请到库位类型确认库区");
|
|
209
210
211
|
}
List<String> locationTypeCodeList = locationTypeList.stream().
map(t -> t.getCode()).collect(Collectors.toList());
|
|
212
|
int highHeight = Float.valueOf(height).intValue();
|
|
213
|
LambdaQueryWrapper<LocationHigh> locationHighLambdaQueryWrapper = Wrappers.lambdaQuery();
|
|
214
|
locationHighLambdaQueryWrapper.eq(LocationHigh::getHighLevel, highHeight)
|
|
215
216
217
|
.in(LocationHigh::getLocationTypeCode, locationTypeCodeList);
LocationHigh locationHigh = locationHighService.getOne(locationHighLambdaQueryWrapper);
int high = locationHigh.getHigh();
|
|
218
219
|
WarecellLocationDomain domain=allocationService.createWarecellLcaotionDoamin(allocationRule, locationTypeCodeList, high, area,
|
|
220
|
roadWays, warehouseCode, containerCode, null);
|
|
221
|
String locationCode = allocationService.allocation(domain);
|
|
222
223
224
225
226
227
|
if(locationCode == null) {
return AjaxResult.error("分配库位时,没有找到库位");
}
return workTaskService.createManyEmptyIn(containerCode, locationCode, warehouseCode);
}
|
|
228
229
|
private AjaxResult innerManyEmptyOut(ManyEmptyDomain manyEmptyDomain) {
|
|
230
231
232
|
if(manyEmptyDomain == null){
throw new ServiceException("空托盘组参数不对!");
}
|
|
233
234
235
|
if(StringUtils.isEmpty(manyEmptyDomain.getArea())){
throw new ServiceException("参数area不能为空!");
}
|
|
236
|
String warehouseCode = manyEmptyDomain.getWarehouseCode();
|
|
237
|
String area = manyEmptyDomain.getArea();
|
|
238
|
String port = manyEmptyDomain.getPort();
|
|
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
LambdaQueryWrapper<Container> containerLambdaQueryWrapper = Wrappers.lambdaQuery();
containerLambdaQueryWrapper.eq(Container::getStatus, QuantityConstant.STATUS_CONTAINER_MANY)
.eq(Container::getWarehouseCode, warehouseCode);
List<Container> containerList = containerService.list(containerLambdaQueryWrapper);
List<Container> removeContainerList = new ArrayList<>();
if(containerList != null && containerList.size() > 0) {
for(Container container : containerList) {
String locationCode = container.getLocationCode();
Location location = locationService.getLocationByCode(locationCode, warehouseCode);
if(!location.getArea().equals(area)) {
removeContainerList.add(container);
}
}
}
LambdaQueryWrapper<Zone> zoneLambdaQueryWrapper = Wrappers.lambdaQuery();
zoneLambdaQueryWrapper.eq(Zone::getArea, area);
Zone zone = zoneService.getOne(zoneLambdaQueryWrapper);
LambdaQueryWrapper<TaskHeader> taskHeaderLambdaQueryWrapper = Wrappers.lambdaQuery();
taskHeaderLambdaQueryWrapper.lt(TaskHeader::getStatus, QuantityConstant.TASK_STATUS_COMPLETED)
.eq(TaskHeader::getTaskType, QuantityConstant.TASK_TYPE_MANY_EMPTYSHIPMENT)
|
|
259
|
.eq(TaskHeader::getPort, port)
|
|
260
261
262
263
264
265
266
267
268
269
270
271
|
.eq(TaskHeader::getZoneCode, zone.getCode());
TaskHeader taskHeader = taskHeaderService.getOne(taskHeaderLambdaQueryWrapper);
if(taskHeader != null) {
WcsTask wcsTask = new WcsTask();
wcsTask.setTaskType(taskHeader.getTaskType());
wcsTask.setTaskNo(String.valueOf(taskHeader.getId()));
wcsTask.setContainerCode(taskHeader.getContainerCode());
wcsTask.setWarehouseCode(warehouseCode);
wcsTask.setFromLocationCode(taskHeader.getFromLocation());
wcsTask.setPlatform(QuantityConstant.PLATFORM_WMS);
wcsTask.setPriority(1000);
wcsTask.setTaskStatus(taskHeader.getStatus());
|
|
272
|
wcsTask.setToPort(port);
|
|
273
|
wcsTask = taskAssignService.switchTaskTypeToWcs(wcsTask,taskHeader);
|
|
274
275
276
277
|
return AjaxResult.success(wcsTask);
}
containerList.removeAll(removeContainerList);
if(!(containerList != null && containerList.size() > 0)) {
|
|
278
|
return AjaxResult.error("没有找到合适的空托盘组!");
|
|
279
|
}
|
|
280
|
String containerCode = containerList.get(0).getCode();
|
|
281
|
Container container = containerService.getContainerByCode(containerCode, warehouseCode);
|
|
282
283
284
|
if(container == null){
throw new ServiceException("没有找到托盘“");
}
|
|
285
|
return workTaskService.createManyEmptyOut(containerCode, warehouseCode, port);
|
|
286
|
}
|
|
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
/**
* 生成空托出库任务
* @return
*/
@PostMapping("/wcsCallEmptyOut")
@Log(title = "任务-任务管理", operating = "生成空托出库任务", action = BusinessType.INSERT)
@ResponseBody
@ApiLogger(apiName = "生成空托出库任务", from="WCS")
public AjaxResult wcsCallEmptyOut(@RequestBody ManyEmptyDomain manyEmptyDomain) {
AjaxResult ajaxResult = handleMultiProcess(new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = innerWcsCallEmptyOut(manyEmptyDomain);
return ajaxResult;
}
});
return ajaxResult;
}
private AjaxResult innerWcsCallEmptyOut(ManyEmptyDomain manyEmptyDomain) {
String warehouseCode = manyEmptyDomain.getWarehouseCode();
String area = manyEmptyDomain.getArea();
String port = manyEmptyDomain.getPort();
|
|
311
|
String areaByWcs = manyEmptyDomain.getAreaByWcs();
|
|
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
if(warehouseCode == null) {
return AjaxResult.error("warehouseCode 不能为空");
}
if(area == null) {
return AjaxResult.error("area 不能为空");
}
if(port == null) {
return AjaxResult.error("port 不能为空");
}
LambdaQueryWrapper<Zone> zoneLambdaQueryWrapper = Wrappers.lambdaQuery();
zoneLambdaQueryWrapper.eq(Zone::getWarehouseCode, warehouseCode)
.eq(Zone::getArea, area);
Zone zone = zoneService.getOne(zoneLambdaQueryWrapper);
if(zone == null) {
return AjaxResult.error("area不正确,没有找到对应区域");
}
String zoneCode = zone.getCode();
|
|
329
330
331
|
List<TaskHeader> taskHeaders = taskHeaderService.list(new LambdaQueryWrapper<TaskHeader>()
.eq(TaskHeader::getPort, port)
.eq(TaskHeader::getZoneCode, zoneCode)
|
|
332
333
|
.eq(TaskHeader::getWarehouseCode, QuantityConstant.WAREHOUSECODE)
.lt(TaskHeader::getStatus,QuantityConstant.TASK_STATUS_COMPLETED));
|
|
334
335
336
337
|
//有该站台任务 返回成功
if(!taskHeaders.isEmpty()){
return AjaxResult.success();
}
|
|
338
339
|
//对应巷道 站台出到 选择对应库内容器
Station station = stationService.getStaionByCode(port);
|
|
340
|
List<Location> list = containerService.getEmptyContainerInLocation(zoneCode,
|
|
341
|
"","", warehouseCode,areaByWcs,station.getRoadWay().toString());
|
|
342
|
if(list.isEmpty()) {
|
|
343
|
return AjaxResult.error(zoneCode+"库区没有找到空托盘");
|
|
344
345
346
347
348
349
|
}
Location location = list.get(0);
String containerCode = location.getContainerCode();
String locationCode = location.getCode();
return inventoryHeaderService.createEmptyOut(containerCode, locationCode, port, warehouseCode);
}
|
|
350
|
}
|