|
1
|
package com.huaheng.pc.config.container.service;
|
|
2
3
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
4
|
import com.huaheng.common.utils.Wrappers;
|
huhai
authored
|
5
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
6
|
import com.huaheng.common.constant.QuantityConstant;
|
|
7
|
import com.huaheng.common.exception.BusinessException;
|
|
8
|
import com.huaheng.common.exception.service.ServiceException;
|
|
9
|
import com.huaheng.common.utils.StringUtils;
|
|
10
11
|
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
|
huhai
authored
|
12
|
import com.huaheng.pc.config.container.domain.Container;
|
|
13
|
import com.huaheng.pc.config.container.domain.ContainerStatus;
|
huhai
authored
|
14
15
|
import com.huaheng.pc.config.container.mapper.ContainerMapper;
import com.huaheng.pc.config.containerType.service.ContainerTypeService;
|
|
16
|
import com.huaheng.pc.config.location.domain.Location;
|
|
17
|
import com.huaheng.pc.config.location.service.LocationService;
|
|
18
|
import com.huaheng.pc.receipt.receiptContainerHeader.domain.ReceiptContainerView;
|
|
19
20
|
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import com.huaheng.pc.task.taskHeader.service.TaskHeaderService;
|
|
21
|
import org.springframework.stereotype.Service;
|
huhai
authored
|
22
23
|
import org.springframework.transaction.annotation.Transactional;
|
|
24
25
26
27
|
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
|
|
28
|
|
|
29
30
31
32
33
34
35
|
@Service
public class ContainerServiceImpl extends ServiceImpl<ContainerMapper, Container> implements ContainerService{
@Resource
private ContainerTypeService containerTypeService;
@Resource
private ContainerMapper containerMapper;
|
|
36
37
38
39
|
@Resource
private LocationService locationService;
@Resource
private TaskHeaderService taskHeaderService;
|
|
40
41
42
43
|
@Override
public AjaxResult<List<Container>> insertContainer(String type, Integer quantity) {
List<Container> containerList = new ArrayList<>();
|
|
44
|
List<Container> containers =new ArrayList<>();
|
|
45
46
47
48
49
50
51
52
53
54
55
|
Integer number = getNumber(type);
for(int i=0; i<quantity; i++) {
number++;
Container container = new Container();
container.setContainerType(type);
container.setCode(String.format("%s%05d", type, number));
container.setStatus(ContainerStatus.empty.name());
container.setCreated(new Date());
container.setCreatedBy(ShiroUtils.getLoginName());
container.setLastUpdated(null);
container.setLastUpdatedBy(null);
|
|
56
|
container.setEnable(true);
|
huhai
authored
|
57
|
//container.setCompanyCode(ShiroUtils.getCompanyCodeList().get(0));
|
|
58
|
container.setWarehouseCode(ShiroUtils.getWarehouseCode());
|
|
59
60
61
62
63
|
containers.add(container);
if( i>0 && (i%1000==0 || i == quantity-1)){
containerMapper.addList(containers);
containers = new ArrayList<>();
}
|
|
64
|
}
|
|
65
|
return AjaxResult.success(containers);
|
|
66
67
68
|
}
private Integer getNumber(String type) {
|
|
69
|
if (!containerTypeService.checkConfig(type)) {
|
|
70
|
throw new ServiceException("容器类型编码不存在");
|
|
71
|
}
|
|
72
73
|
LambdaQueryWrapper<Container> lambda = Wrappers.lambdaQuery();
lambda.select(Container::getCode).eq(Container::getContainerType, type)
|
|
74
75
|
.eq(Container::getWarehouseCode, ShiroUtils.getWarehouseCode())
.orderByDesc(Container::getId).last("Limit 1");
|
|
76
|
Container container = containerMapper.selectOne(lambda);
|
|
77
78
|
//如果指定类型的最后的code存在,那么 code = 容器类型 + (排序号 + 1)
|
|
79
|
if (container != null && container.getCode() != null) {
|
|
80
|
Integer number = Integer.valueOf(container.getCode().substring(container.getCode().length() - 5, container.getCode().length()));
|
|
81
82
83
84
85
|
return number;
} else {
return 0;
}
}
|
|
86
|
|
|
87
|
@Override
|
huhai
authored
|
88
|
public String importContainer(List<Container> containerList, Boolean updateSupport, String operName){
|
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
if (StringUtils.isNull(containerList) || containerList.size() == 0) {
throw new BusinessException("导入数据不能为空!");
}
int successNum = 0;
int failureNum = 0;
StringBuilder successMsg = new StringBuilder();
StringBuilder failureMsg = new StringBuilder();
for (Container container : containerList) {
try {
LambdaQueryWrapper<Container> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(Container::getCode, container.getCode());
// 验证是否存在这个容器
Container m = this.getOne(lambdaQueryWrapper);
if (StringUtils.isNull(m)) {
|
|
104
|
// System.out.println(ShiroUtils.getLoginName());
|
|
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
|
container.setCreatedBy(ShiroUtils.getUser().getLoginName());
container.setLastUpdatedBy(ShiroUtils.getLoginName());
this.save(container);
successNum++;
successMsg.append("<br/>" + successNum + "、编码 " + container.getCode() + " 导入成功");
} else {
String msg = "<br/>" + failureNum + "、编码" + container.getCode() + " 已存在:";
failureMsg.append(msg);
log.error(msg);
}
} catch (Exception e) {
failureNum++;
String msg = "<br/>" + failureNum + "、编码" + container.getCode() + " 导入失败:";
failureMsg.append(msg + e.getMessage());
log.error(msg, e);
}
}
if (failureNum > 0) {
failureMsg.insert(0, "很抱歉,导入失败!共 " + failureNum + " 条数据格式不正确,错误如下:");
throw new BusinessException(failureMsg.toString());
} else {
successMsg.insert(0, "恭喜您,数据已全部导入成功!共 " + successNum + " 条,数据如下:");
}
return successMsg.toString();
}
|
|
130
131
132
133
134
|
/**
* 已入空容器展示
* */
@Override
|
|
135
136
|
public List<Location> getEmptyContainerInLocation(String zoneCode, String containerCode, String locationCode,String locationType, String warehouseCode) {
return containerMapper.getEmptyContainerInLocation(zoneCode, containerCode,locationCode,locationType,warehouseCode);
|
|
137
138
|
}
|
|
139
140
141
142
143
|
/**
* 修改容器库位和状态
* */
@Override
public void updateLocationCodeAndStatus(String containerCode, String locationCode, String status) {
|
|
144
|
if (StringUtils.isNotEmpty(containerCode) || StringUtils.isNotEmpty(locationCode)) {
|
|
145
|
containerMapper.updateLocationCodeAndStatus(ShiroUtils.getWarehouseCode(), containerCode, locationCode, status);
|
|
146
|
}
|
|
147
148
|
}
|
|
149
150
|
@Override
public void updateLocationCodeAndStatus(String containerCode, String locationCode, String status, String warehouseCode) {
|
|
151
152
153
|
if (StringUtils.isNotEmpty(containerCode) || StringUtils.isNotEmpty(locationCode)) {
containerMapper.updateLocationCodeAndStatus(warehouseCode, containerCode, locationCode, status);
}
|
|
154
155
156
157
|
}
@Override
public boolean updateStatus(String containerCode, String status, String warehouseCode) {
|
|
158
|
LambdaQueryWrapper<Container> containerLambdaQueryWrapper = Wrappers.lambdaQuery();
|
|
159
160
|
containerLambdaQueryWrapper.eq(Container::getCode, containerCode)
.eq(Container::getWarehouseCode, warehouseCode);
|
|
161
|
Container container = getOne(containerLambdaQueryWrapper);
|
|
162
|
container.setStatus(status);
|
|
163
164
165
166
|
boolean result = update(container, containerLambdaQueryWrapper);
return result;
}
|
|
167
168
169
170
171
172
|
/**
* 如果为临时容器,在取消组盘和出库任务完成时删除容器
* @param containerType 容器类型
* @param containerCode 容器编码
* @return
*/
|
|
173
|
@Override
|
|
174
175
176
177
178
179
180
181
182
183
184
|
@Transactional
public void removeContainer(String containerType, String containerCode) {
if ("LS".equals(containerType)) {
LambdaQueryWrapper<Container> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(Container::getCode,containerCode);
if (!this.remove(lambdaQueryWrapper)){
throw new ServiceException("删除临时容器失败");
}
}
}
|
|
185
|
@Override
|
|
186
|
public Container getContainerByCode(String code) {
|
|
187
|
return containerMapper.findAllByCode(code, ShiroUtils.getWarehouseCode());
|
|
188
|
}
|
|
189
|
|
|
190
191
192
193
194
|
@Override
public Container getContainerByCode(String containCode, String warehouseCode) {
return containerMapper.findAllByCode(containCode, warehouseCode);
}
|
|
195
|
@Override
|
|
196
|
public Container findContainerByCodeType(String containerCode, String containerType, String warehouseCode) {
|
|
197
198
|
Container one = this.getOne(new LambdaQueryWrapper<Container>()
.eq(Container::getCode, containerCode)
|
|
199
200
|
.eq(Container::getWarehouseCode, warehouseCode)
.eq(Container::getContainerType, containerType));
|
|
201
202
203
|
return one;
}
|
|
204
205
|
@Override
|
|
206
207
|
public List<Container> selectListShelf(String warehouseCode ) {
return containerMapper.selectListShelf(warehouseCode);
|
|
208
|
}
|
|
209
|
|
|
210
211
|
@Override
|
|
212
213
|
public Container emptyContainer(String warehouseCode ) {
return containerMapper.emptyContainer(warehouseCode);
|
|
214
|
}
|
|
215
216
217
218
219
220
|
@Override
public List<Container> selectEmptyList(Container container) {
return containerMapper.selectEmptyList(container);
}
@Override
|
|
221
222
223
224
225
226
227
228
229
230
|
public List<Container> selectListEntityByEqual(Container condition) {
LambdaQueryWrapper<Container> lambd = Wrappers.lambdaQuery();
lambd.eq(StringUtils.isNotEmpty(condition.getCode()),Container::getCode, condition.getCode())
.eq(StringUtils.isNotEmpty(condition.getWarehouseCode()),Container::getWarehouseCode, condition.getWarehouseCode())
.eq(StringUtils.isNotEmpty(condition.getGoodsShelfNo()),Container::getGoodsShelfNo, condition.getGoodsShelfNo())
.eq(StringUtils.isNotEmpty(condition.getContainerType()),Container::getContainerType, condition.getContainerType());
return this.list(lambd);
}
@Override
|
|
231
232
233
234
235
|
public Container selectFirstEntity(Container condition) {
LambdaQueryWrapper<Container> lambd = Wrappers.lambdaQuery();
lambd.eq(StringUtils.isNotEmpty(condition.getCode()),Container::getCode, condition.getCode())
.eq(StringUtils.isNotEmpty(condition.getWarehouseCode()),Container::getWarehouseCode, condition.getWarehouseCode())
.eq(StringUtils.isNotEmpty(condition.getContainerType()),Container::getContainerType, condition.getContainerType());
|
|
236
|
lambd.orderByDesc(Container::getCode);
|
|
237
238
239
240
|
lambd.last("limit 1");
return this.getOne(lambd);
}
|
|
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
|
@Override
public ReceiptContainerView check(ReceiptContainerView receiptContainerView, Container container) {
if(container.getContainerType().equals("M")) {
if(StringUtils.isEmpty(container.getLocationCode())) {
receiptContainerView.setTaskType((short) 100);
}else {
receiptContainerView.setTaskType((short) 200);
}
receiptContainerView.setZoneCode("LK");
}
if(container.getContainerType().equals("A")){
receiptContainerView.setZoneCode("AGV");
receiptContainerView.setTaskType((short) 200);
}
if(container.getContainerType().equals("D")){
receiptContainerView.setZoneCode("PK");
receiptContainerView.setTaskType((short) 200);
}
if(container.getContainerType().equals("Q")){
receiptContainerView.setZoneCode("QG");
receiptContainerView.setTaskType((short) 200);
}
if(container.getContainerType().equals("X")){
receiptContainerView.setZoneCode("XN");
receiptContainerView.setTaskType((short) 200);
}
return receiptContainerView;
}
|
|
270
|
}
|