|
1
|
package com.huaheng.pc.config.container.service;
|
|
2
3
4
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
huhai
authored
|
5
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
6
|
import com.huaheng.common.exception.BusinessException;
|
|
7
|
import com.huaheng.common.exception.service.ServiceException;
|
|
8
|
import com.huaheng.common.utils.StringUtils;
|
|
9
10
|
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
|
huhai
authored
|
11
|
import com.huaheng.pc.config.container.domain.Container;
|
|
12
|
import com.huaheng.pc.config.container.domain.ContainerStatus;
|
huhai
authored
|
13
14
|
import com.huaheng.pc.config.container.mapper.ContainerMapper;
import com.huaheng.pc.config.containerType.service.ContainerTypeService;
|
|
15
|
import com.huaheng.pc.config.location.domain.Location;
|
|
16
|
import org.springframework.stereotype.Service;
|
huhai
authored
|
17
18
|
import org.springframework.transaction.annotation.Transactional;
|
|
19
20
21
22
|
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
|
|
23
|
|
|
24
25
26
27
28
29
30
31
32
33
34
|
@Service
public class ContainerServiceImpl extends ServiceImpl<ContainerMapper, Container> implements ContainerService{
@Resource
private ContainerTypeService containerTypeService;
@Resource
private ContainerMapper containerMapper;
@Override
public AjaxResult<List<Container>> insertContainer(String type, Integer quantity) {
List<Container> containerList = new ArrayList<>();
|
|
35
|
List<Container> containers =new ArrayList<>();
|
|
36
37
38
39
40
41
42
43
44
45
46
|
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);
|
|
47
|
container.setEnable(true);
|
huhai
authored
|
48
|
//container.setCompanyCode(ShiroUtils.getCompanyCodeList().get(0));
|
|
49
|
container.setWarehouseCode(ShiroUtils.getWarehouseCode());
|
|
50
51
52
53
54
|
containers.add(container);
if( i>0 && (i%1000==0 || i == quantity-1)){
containerMapper.addList(containers);
containers = new ArrayList<>();
}
|
|
55
|
}
|
|
56
|
return AjaxResult.success(containers);
|
|
57
58
59
|
}
private Integer getNumber(String type) {
|
|
60
|
if (!containerTypeService.checkConfig(type)) {
|
|
61
|
throw new ServiceException("容器类型编码不存在");
|
|
62
|
}
|
|
63
64
65
|
LambdaQueryWrapper<Container> lambda = Wrappers.lambdaQuery();
lambda.select(Container::getCode).eq(Container::getContainerType, type)
.orderByDesc(Container::getId).last("Limit 1");
|
|
66
|
Container container = containerMapper.selectOne(lambda);
|
|
67
68
|
//如果指定类型的最后的code存在,那么 code = 容器类型 + (排序号 + 1)
|
|
69
|
if (container!=null && container.getCode() != null) {
|
|
70
|
Integer number = Integer.valueOf(container.getCode().substring(container.getCode().length() - 5, container.getCode().length()));
|
|
71
72
73
74
75
|
return number;
} else {
return 0;
}
}
|
|
76
|
|
|
77
|
@Override
|
huhai
authored
|
78
|
public String importContainer(List<Container> containerList, Boolean updateSupport, String operName){
|
|
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
|
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)) {
System.out.println(ShiroUtils.getLoginName());
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();
}
|
|
120
121
122
123
124
125
126
127
128
|
/**
* 已入空容器展示
* */
@Override
public List<Location> getEmptyContainerInLocation(String containerCode, String locationCode, String warehouseCode) {
return containerMapper.getEmptyContainerInLocation(containerCode,locationCode,warehouseCode);
}
|
|
129
130
131
132
133
|
/**
* 修改容器库位和状态
* */
@Override
public void updateLocationCodeAndStatus(String containerCode, String locationCode, String status) {
|
|
134
|
if (StringUtils.isNotEmpty(containerCode) || StringUtils.isNotEmpty(locationCode)) {
|
|
135
|
containerMapper.updateLocationCodeAndStatus(ShiroUtils.getWarehouseCode(), containerCode, locationCode, status);
|
|
136
|
}
|
|
137
138
|
}
|
|
139
140
141
142
143
144
|
/**
* 如果为临时容器,在取消组盘和出库任务完成时删除容器
* @param containerType 容器类型
* @param containerCode 容器编码
* @return
*/
|
|
145
|
@Override
|
|
146
147
148
149
150
151
152
153
154
155
156
|
@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("删除临时容器失败");
}
}
}
|
|
157
158
159
160
161
|
@Override
public Container findAllByCode(String code) {
return containerMapper.findAllByCode(code);
}
|
|
162
163
164
165
166
167
|
@Override
public List<Container> selectListShelf() {
return containerMapper.selectListShelf();
}
|
|
168
169
170
171
172
|
@Override
public Container emptyContainer() {
return containerMapper.emptyContainer();
}
|
|
173
|
}
|