ShipmentHeaderServiceImpl.java
12.5 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
package com.huaheng.pc.shipment.shipmentHeader.service;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.huaheng.common.constant.QuantityConstant;
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.support.Convert;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.company.service.CompanyService;
import com.huaheng.pc.config.customer.domain.Customer;
import com.huaheng.pc.config.customer.service.CustomerServiceImpl;
import com.huaheng.pc.config.material.service.MaterialService;
import com.huaheng.pc.config.shipmentType.service.ShipmentTypeService;
import com.huaheng.pc.receipt.receiptHeader.domain.ReceiptHeader;
import com.huaheng.pc.shipment.shipmentContainerHeader.service.ShipmentContainerHeaderService;
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetail;
import com.huaheng.pc.shipment.shipmentDetail.service.ShipmentDetailService;
import com.huaheng.pc.shipment.shipmentDetailHistory.domain.ShipmentDetailHistory;
import com.huaheng.pc.shipment.shipmentDetailHistory.service.ShipmentDetailHistoryService;
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;
import com.huaheng.pc.shipment.shipmentHeader.mapper.ShipmentHeaderMapper;
import com.huaheng.pc.shipment.shipmentHeaderHistory.domain.ShipmentHeaderHistory;
import com.huaheng.pc.shipment.shipmentHeaderHistory.service.ShipmentHeaderHistoryService;
import com.huaheng.pc.system.dict.service.IDictDataService;
import org.apache.commons.beanutils.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.lang.reflect.InvocationTargetException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
@Service
public class ShipmentHeaderServiceImpl extends ServiceImpl<ShipmentHeaderMapper, ShipmentHeader> implements ShipmentHeaderService{
@Autowired
private IDictDataService dictDataService;
@Resource
private ShipmentHeaderMapper shipmentHeaderMapper;
@Autowired
private ShipmentDetailService shipmentDetailService;
@Autowired
private ShipmentContainerHeaderService shipmentContainerHeaderService;
@Autowired
private ShipmentHeaderHistoryService shipmentHeaderHistoryService;
@Autowired
private ShipmentDetailHistoryService shipmentDetailHistoryService;
@Resource
private CompanyService companyService;
@Resource
private CustomerServiceImpl customerService;
@Resource
private MaterialService materialService;
@Resource
private ShipmentTypeService shipmentTypeService;
//新增出库主单
@Override
public AjaxResult<Boolean> saveHeader(ShipmentHeader shipmentHeader) {
if(shipmentTypeService.checkCode(shipmentHeader.getShipmentType()) == false)
{
return AjaxResult.error("没有对应的出库单类型");
}
String code = createCode(shipmentHeader.getShipmentType());
shipmentHeader.setId(null);
shipmentHeader.setFirstStatus(QuantityConstant.RECEIPT_HEADER_BUILD);
shipmentHeader.setLastStatus(QuantityConstant.RECEIPT_HEADER_BUILD);
shipmentHeader.setLastUpdated(null);
shipmentHeader.setLastUpdatedBy(ShiroUtils.getLoginName());
shipmentHeader.setCreated(null);
shipmentHeader.setCreatedBy(ShiroUtils.getLoginName());
shipmentHeader.setWarehouseCode(ShiroUtils.getWarehouseCode());
shipmentHeader.setCode(code);
if(StringUtils.isNotEmpty(shipmentHeader.getCustomerCode())){
LambdaQueryWrapper<Customer> customerLambd = Wrappers.lambdaQuery();
customerLambd.eq(Customer::getCode,shipmentHeader.getCustomerCode());
Customer customer =customerService.getOne(customerLambd);
if(customer == null){
return AjaxResult.error("客户编码错误,wms系统没有此客户");
}
}
boolean result = this.save(shipmentHeader);
return AjaxResult.toAjax(result);
}
//根据单据类型建单据号
@Override
public String createCode(String shipmentType)
{
String code = null;
Date now = new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
String maxCode = shipmentHeaderMapper.createCode(shipmentType);
if (maxCode != null && maxCode.length() > 13 && maxCode.substring(maxCode.length() - 13, maxCode.length() - 5).equals(df.format(now)))
{
Integer Count = Integer.valueOf(maxCode.substring(maxCode.length() - 5, maxCode.length()));
code = shipmentType + df.format(now) + String.format("%05d", Count + 1);
}
else
{
code = shipmentType + df.format(now) + "00001";
}
return code;
}
/**
* 根据Id更新这个单据的首尾状态
* @param shipmentId
* @return
*/
@Override
public AjaxResult updateShipmentStatus(int shipmentId) {
//获取这个单
ShipmentHeader shipmentHeader = this.getById(shipmentId);
if(shipmentHeader==null){
return AjaxResult.error("单据未找到,Id:"+shipmentId);
}
//查询是否有生成出库货箱,如果有,则返回出库货箱的最高与最低状态
Map<String,Integer> map = shipmentContainerHeaderService.getShipmentContainerMaxAndMinStatusByShipmentID(shipmentId);
if(map==null){
//说明没有货箱,则直接首位均为新建
shipmentHeader.setFirstStatus(QuantityConstant.RECEIPT_HEADER_POOL);
shipmentHeader.setLastStatus(QuantityConstant.RECEIPT_HEADER_POOL);
this.saveOrUpdate(shipmentHeader);
}else {
int firstStatus = map.get("maxStatus");
int lastStatus = map.get("minStatus");
if(firstStatus<=QuantityConstant.SHIPMENT_CONTAINER_FINISHED){
shipmentHeader.setFirstStatus(QuantityConstant.SHIPMENT_HEADER_GROUPDISK);
}
if(firstStatus==QuantityConstant.SHIPMENT_CONTAINER_REVIEWSUCCESS){
shipmentHeader.setFirstStatus(QuantityConstant.SHIPMENT_HEADER_COMPLETED);
}
if(lastStatus <=QuantityConstant.SHIPMENT_CONTAINER_FINISHED){
shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_GROUPDISK);
}
if(lastStatus==QuantityConstant.SHIPMENT_CONTAINER_REVIEWSUCCESS){
shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_COMPLETED);
}
//是否存在未配盘的数量,如果是,则尾状态为新建
Integer UnCompleted = shipmentDetailService.countUnCompleted(shipmentId);
if(UnCompleted != null && UnCompleted.intValue() > 0){
shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_POOL);
}
this.saveOrUpdate(shipmentHeader);
}
return AjaxResult.success("");
}
//出库单字段变为历史出库单
@Override
@Transactional
public AjaxResult addHistory(ShipmentHeader shipmentHeader) throws InvocationTargetException, IllegalAccessException {
//单据主单重复
LambdaQueryWrapper<ShipmentHeaderHistory> headerHistoryLamb = Wrappers.lambdaQuery();
headerHistoryLamb.eq(ShipmentHeaderHistory::getCode,shipmentHeader.getCode())
.eq(ShipmentHeaderHistory::getWarehouseCode,shipmentHeader.getWarehouseCode());
ShipmentHeaderHistory headerHistory =shipmentHeaderHistoryService.getOne(headerHistoryLamb);
if(headerHistory == null) {
//历史出库主单
ShipmentHeaderHistory shipmentHeaderHistory = new ShipmentHeaderHistory();
BeanUtils.copyProperties(shipmentHeaderHistory, shipmentHeader);
if (shipmentHeaderHistoryService.save(shipmentHeaderHistory) == false) {
throw new ServiceException("存入历史出库主单失败");
}
}
LambdaQueryWrapper<ShipmentDetail> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(ShipmentDetail::getWarehouseCode, shipmentHeader.getWarehouseCode())
.eq(ShipmentDetail::getShipmentCode, shipmentHeader.getCode());
List<ShipmentDetail> shipmentDetails = shipmentDetailService.list(lambdaQueryWrapper);
//历史出库子单
List<ShipmentDetailHistory> shipmentDetailHistories = new ArrayList<>();
for (ShipmentDetail item : shipmentDetails) {
ShipmentDetailHistory shipmentDetailHistory = new ShipmentDetailHistory();
BeanUtils.copyProperties(shipmentDetailHistory, item);
shipmentDetailHistories.add(shipmentDetailHistory);
}
Boolean flag = shipmentDetailHistoryService.saveBatch(shipmentDetailHistories);
if (flag == false) {
throw new ServiceException("存入历史出库子单失败");
}
return null;
}
/**审核出库单,加入订单池
* 1、找到主单,确定主单的状态是否小于100
* 2.小于100时,把主单和相应的子单加入到list中,大于等于100时,直接跳过
* 3.将修改后的主单列表和子单列表进行修改,加入订单池
*
* @param ids
* @return
*/
@Override
@Transactional
public AjaxResult review(String ids) {
List<ShipmentHeader> shipmentHeaders = new ArrayList<>();
List<ShipmentDetail> shipmentDetails = new ArrayList<>();
//1、找到主单,确定主单的状态是否小于100
for (Integer id : Convert.toIntArray(ids)){
ShipmentHeader shipmentHeader = this.getById(id);
if(shipmentHeader == null){
return AjaxResult.error("id为"+id+"的主单在系统不存在");
}
//2.小于100时,把主单和相应的子单加入到list中,大于等于100时,直接跳过
if(shipmentHeader.getFirstStatus() < QuantityConstant.SHIPMENT_HEADER_POOL && shipmentHeader.getLastStatus() <QuantityConstant.SHIPMENT_HEADER_POOL){
shipmentHeader.setFirstStatus(QuantityConstant.SHIPMENT_HEADER_POOL);
shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_POOL);
shipmentHeaders.add(shipmentHeader);
LambdaQueryWrapper<ShipmentDetail> lam = Wrappers.lambdaQuery();
lam.eq(ShipmentDetail::getShipmentId,id)
.eq(ShipmentDetail::getWarehouseCode,ShiroUtils.getWarehouseCode());
List<ShipmentDetail> shipmentDetailList = shipmentDetailService.list(lam);
if(!shipmentDetailList.isEmpty()){
for(ShipmentDetail shipmentDetail : shipmentDetailList){
shipmentDetail.setStatus(QuantityConstant.SHIPMENT_HEADER_POOL);
}
shipmentDetails.addAll(shipmentDetailList);
}else {
return AjaxResult.error("id为"+id+"的出库明细在系统不存在");
}
}
}
if(shipmentHeaders.isEmpty()){
return AjaxResult.error("选中的单据不需要订单审核");
}
if(shipmentDetails.isEmpty()){
return AjaxResult.error("选中的单据不需要订单审核或没有子单");
}
// 3.将修改后的主单列表和子单列表进行修改,加入订单池
Boolean flag = this.updateBatchById(shipmentHeaders);
if (flag == false){
throw new ServiceException("修改主单状态失败");
}
flag = shipmentDetailService.updateBatchById(shipmentDetails);
if (flag == false){
throw new ServiceException("修改明细状态失败");
}
return AjaxResult.success("订单审核成功,成功加入订单池");
}
@Override
public List<ShipmentHeader> selectListByCreated() {
return shipmentHeaderMapper.selectListByCreated();
}
@Override
@Transactional(rollbackFor = Exception.class)
public List<ShipmentHeader> getLatestShipment() {
return shipmentHeaderMapper.getLatestShipment();
}
}