ShipmentHeaderServiceImpl.java
31.9 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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package com.huaheng.pc.shipment.shipmentHeader.service;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.huaheng.common.utils.DateUtils;
import com.huaheng.common.utils.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.http.HttpUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.aspectj.ApiLogAspect;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.config.address.service.AddressService;
import com.huaheng.pc.config.company.domain.CompanyU8;
import com.huaheng.pc.config.company.service.CompanyService;
import com.huaheng.pc.config.company.service.CompanyU8Service;
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.shipment.lockingWorkOrder.domain.LockingWorkOrder;
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 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.u8.domain.*;
import com.huaheng.pc.u8.service.ICSShipmentDetailService;
import com.huaheng.pc.u8.service.ICSShipmentHeaderService;
import org.apache.commons.beanutils.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.lang.reflect.InvocationTargetException;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.stream.Collectors;
@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;
@Resource
private TaskDetailService taskDetailService;
@Resource
private ShipmentHeaderService shipmentHeaderService;
@Resource
private AddressService addressService;
@Resource
private ICSShipmentHeaderService icsShipmentHeaderService;
@Resource
private ICSShipmentDetailService icsShipmentDetailService;
@Resource
private CompanyU8Service companyWuService;
//新增出库主单
@Override
public AjaxResult<Boolean> saveHeader(ShipmentHeader shipmentHeader) {
if(shipmentTypeService.checkCode(shipmentHeader.getShipmentType()) == false)
{
return AjaxResult.error("没有对应的出库单类型");
}
AjaxResult ajaxResult = checkHeaderInfo(shipmentHeader);
if(ajaxResult.hasErr()){
return ajaxResult;
}
String code = createCode(shipmentHeader.getShipmentType(),ShiroUtils.getWarehouseCode());
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);
shipmentHeader.setUWarehouseCode(shipmentHeader.getUWarehouseCode());
boolean result = this.save(shipmentHeader);
return AjaxResult.toAjax(result);
}
//根据单据类型建单据号
@Override
public String createCode(String shipmentType,String warehouseCode)
{
String code = null;
Date now = new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
String maxCode = shipmentHeaderMapper.createCode(shipmentType,warehouseCode);
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);
shipmentHeaderHistory.setId(shipmentHeader.getId());
shipmentHeaderHistory.setWarehouseCode(shipmentHeader.getWarehouseCode());
shipmentHeaderHistory.setCarrierCode(shipmentHeader.getCarrierCode());
shipmentHeaderHistory.setCode(shipmentHeader.getCode());
shipmentHeaderHistory.setReferCode(shipmentHeader.getReferCode());
shipmentHeaderHistory.setReferPlatform(shipmentHeader.getFirstStatus());
shipmentHeaderHistory.setFirstStatus(shipmentHeader.getId());
shipmentHeaderHistory.setLastStatus(shipmentHeader.getId());
shipmentHeaderHistory.setShipmentType(shipmentHeader.getShipmentType());
shipmentHeaderHistory.setTotalQty(shipmentHeader.getTotalQty());
shipmentHeaderHistory.setTotalLines(shipmentHeader.getTotalLines());
shipmentHeaderHistory.setLastWaveId(shipmentHeader.getLastWaveId());
shipmentHeaderHistory.setCreated(shipmentHeader.getCreated());
shipmentHeaderHistory.setCreatedBy(shipmentHeader.getCreatedBy());
shipmentHeaderHistory.setLastUpdated(shipmentHeader.getLastUpdated());
shipmentHeaderHistory.setLastUpdatedBy(shipmentHeader.getLastUpdatedBy());
shipmentHeaderHistory.setVersion(shipmentHeader.getVersion());
shipmentHeaderHistory.setDeleted(shipmentHeader.getDeleted());
shipmentHeaderHistory.setCompanyCode(shipmentHeader.getCompanyCode());
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();
}
@Override
public AjaxResult removeShipmentByHeaderId(Integer headerId) {
if(headerId!=null && headerId != 0){
return AjaxResult.error();
}
ShipmentHeader shipmentHeader = this.getById(headerId);
if (shipmentHeader == null) {
return AjaxResult.success("");
}
LambdaQueryWrapper<TaskDetail> queryWrapper = com.baomidou.mybatisplus.core.toolkit.Wrappers.lambdaQuery();
queryWrapper.eq(TaskDetail::getBillCode,shipmentHeader.getCode())
.gt(TaskDetail::getStatus,QuantityConstant.TASK_STATUS_RELEASE);
List<TaskDetail> taskDetails = taskDetailService.list(queryWrapper);
if (!taskDetails.isEmpty()) {
throw new ServiceException("此单据存在任务,无法删除");
}
ShipmentHeaderHistory shh = shipmentHeaderHistoryService.getOne(new LambdaQueryWrapper<ShipmentHeaderHistory>()
.eq(ShipmentHeaderHistory::getCode, shipmentHeader.getCode()));
List<ShipmentDetailHistory> shipmentDetailHistories = new ArrayList<>();
List<ShipmentDetail> list = shipmentDetailService.list(new LambdaQueryWrapper<ShipmentDetail>()
.eq(ShipmentDetail::getShipmentId, headerId));
ShipmentHeaderHistory shipmentHeaderHistory = new ShipmentHeaderHistory();
try {
//复制到出库历史实体
if (list != null && list.size() > 0) {
BeanUtils.copyProperties(shipmentHeaderHistory, shipmentHeader);
for (ShipmentDetail item : list) {
ShipmentDetailHistory shipmentDetailHistory = new ShipmentDetailHistory();
BeanUtils.copyProperties(shipmentDetailHistory, item);
shipmentDetailHistories.add(shipmentDetailHistory);
}
}
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
boolean b = shipmentHeaderService.removeById(shipmentHeader.getId());
if (!b) {
throw new ServiceException("删除头表失败");
}
if (list != null && list.size() > 0 && shh == null) {
boolean save = shipmentHeaderHistoryService.save(shipmentHeaderHistory);
if (!save) {
throw new ServiceException("新增历史出库单失败");
}
}
// 当存在明细时删除
if (list != null && list.size() > 0) {
//删除出库明细
if (shh == null) {
for (int i = 0; i < shipmentDetailHistories.size(); i++) {
shipmentDetailHistories.get(i).setShipmentId(shipmentHeaderHistory.getId());
}
} else {
for (int i = 0; i < shipmentDetailHistories.size(); i++) {
shipmentDetailHistories.get(i).setShipmentId(shh.getId());
}
}
List<Integer> collect = list.stream().map(ShipmentDetail::getId).collect(Collectors.toList());
if (!shipmentDetailService.removeByIds(collect)) {
throw new ServiceException("删除明细表失败");
}
if (!shipmentDetailHistoryService.saveBatch(shipmentDetailHistories)) {
throw new ServiceException("新增明细失败");
}
}
return AjaxResult.success("删除成功");
}
@Override
public ShipmentHeader createShipmentHeader(LockingWorkOrder lockingWorkOrder) {
ShipmentHeader shipmentHeader = new ShipmentHeader();
// 公司编码
shipmentHeader.setCompanyCode(ShiroUtils.getCompanyCode());
// 公司id
// shipmentHeader.setCompanyId(QuantityConstant.COMPANYID);
// 出库单类型
shipmentHeader.setShipmentType("PO");
// 发货站台
shipmentHeader.setStation("102");
// 是否启用
shipmentHeader.setEnable(1);
String code = createCode(shipmentHeader.getShipmentType(),ShiroUtils.getWarehouseCode());
shipmentHeader.setId(null);
shipmentHeader.setLastUpdated(null);
// 更新用户
shipmentHeader.setLastUpdatedBy("mms");
// 创建时间
shipmentHeader.setCreated(new Date());
// 创建人
shipmentHeader.setCreatedBy("mms");
// shipmentHeader.setWarehouseId(ShiroUtils.getWarehouseId());
shipmentHeader.setWarehouseCode(ShiroUtils.getWarehouseCode());
shipmentHeader.setCode(code);
shipmentHeader.setUploadStatus(0);
if (this.save(shipmentHeader)){
return shipmentHeader;
}
return null;
}
@Override
public List<ShipmentHeader> listByCodes(Collection<String> codes, String warehouseCode) {
LambdaQueryWrapper<ShipmentHeader> queryWrapper = Wrappers.lambdaQuery();
queryWrapper.in(ShipmentHeader::getCode,codes)
.eq(ShipmentHeader::getWarehouseCode,warehouseCode);
List<ShipmentHeader> list = this.list(queryWrapper);
return list;
}
@Override
public AjaxResult postBack(TaskHeader taskHeader,String id, Map<Integer, BigDecimal> detailsQtyMap){
AjaxResult ajaxResult = AjaxResult.error();
ShipmentHeader shipmentHeader = this.getById(id);
if(shipmentHeader==null){
return AjaxResult.error("回传:入库单"+id+" 不存在。");
}
String warehouseCode = shipmentHeader.getWarehouseCode();
//获取当前时间
String nowDateStr = DateUtils.getNowDateString(DateUtils.YYYY_MM_DD_HH_MM_SS);
String type = shipmentHeader.getShipmentType();
ICSShipmentModel model = new ICSShipmentModel();
CompanyU8 companyU8 = companyWuService.getCompanyU8ByCode(taskHeader.getCompanyCode(), taskHeader.getWarehouseCode());
switch (type){
case "MO" :
model = postBackByMO(shipmentHeader,type,detailsQtyMap);
break;
case "OO" :
model = postBackByOO(shipmentHeader,type,detailsQtyMap);
break;
case "PRO" :
model = postBackByPRO(shipmentHeader,type,detailsQtyMap);
break;
case "SO" :
model = postBackBySO(shipmentHeader,type,detailsQtyMap);
break;
case "TO":
ICSShipmentHeader icsShipmentHeaderTI = createICSShipmentHeader(shipmentHeader,companyU8);
// 根据需求设置不同字段的值
icsShipmentHeaderTI.setVoucherType("CreateICSRdRecord_09_Trans");
List<ICSShipmentDetail> icsShipmentDetailsTI = createICSShipmentDetails(detailsQtyMap, companyU8,type);
model.setIcsShipmentHeader(icsShipmentHeaderTI);
model.setIcsShipmentDetails(icsShipmentDetailsTI);
return AjaxResult.success("调拨单出库单等待调拨入库单执行,并一起回传。");
case "QO":
ICSShipmentHeader icsShipmentHeaderQO = createICSShipmentHeader(shipmentHeader,companyU8);
// 根据需求设置不同字段的值
icsShipmentHeaderQO.setVoucherType("UpdateICSRdRecord_09_Confirm");
List<ICSShipmentDetail> icsShipmentDetailsQO = createICSShipmentDetails(detailsQtyMap, companyU8,type);
model.setIcsShipmentHeader(icsShipmentHeaderQO);
model.setIcsShipmentDetails(icsShipmentDetailsQO);
break;
default:
}
String JsonParam = JSON.toJSONString(model);
String url = addressService.selectAddress(QuantityConstant.U8_SHIPMENT_BACK, warehouseCode);
String result = HttpUtils.bodypost(url, JsonParam,warehouseCode);
ajaxResult = JSON.parseObject(result, AjaxResult.class);
return ajaxResult;
}
// 创建 ICSShipmentHeader 对象并设置基本属性
private ICSShipmentHeader createICSShipmentHeader(ShipmentHeader shipmentHeader, CompanyU8 companyU8) {
ICSShipmentHeader icsShipmentHeader = new ICSShipmentHeader();
icsShipmentHeader.setID(shipmentHeader.getReferId());
icsShipmentHeader.setCCode(shipmentHeader.getReferCode());
icsShipmentHeader.setDDate(DateUtils.getTime());
icsShipmentHeader.setCWHCode(shipmentHeader.getUWarehouseCode());
icsShipmentHeader.setCMaker(shipmentHeader.getCreatedBy());
icsShipmentHeader.setCVerifier(shipmentHeader.getLastUpdatedBy());
icsShipmentHeader.setCompanyCode(companyU8.getUCompanyCode());
return icsShipmentHeader;
}
// 创建 ICSShipmentDetail 列表并设置属性
private List<ICSShipmentDetail> createICSShipmentDetails(Map<Integer, BigDecimal> detailsQtyMap, CompanyU8 companyU8,String type) {
List<ICSShipmentDetail> icsShipmentDetails = new ArrayList<>();
for (Integer shipmentDetailId : detailsQtyMap.keySet()) {
ShipmentDetail shipmentDetail = shipmentDetailService.getById(shipmentDetailId);
ICSShipmentDetail icsShipmentDetail = new ICSShipmentDetail();
icsShipmentDetail.setID(shipmentDetail.getReferId());
icsShipmentDetail.setAutoID(shipmentDetail.getAutoId());
icsShipmentDetail.setCItemName(shipmentDetail.getProjectNo());
icsShipmentDetail.setCInvCode(shipmentDetail.getMaterialCode());
icsShipmentDetail.setIQuantity(detailsQtyMap.get(shipmentDetailId));
icsShipmentDetail.setCompanyCode(companyU8.getUCompanyCode());
// 根据类型设置不同字段的值
switch (type) {
case "TO":
// 根据需求设置不同字段的值
icsShipmentDetail.setITrIds(shipmentDetail.getAutoId());
break;
case "QO":
// 根据需求设置不同字段的值
icsShipmentDetail.setIQuantity(shipmentDetail.getQty());
icsShipmentDetail.setCQuantity(detailsQtyMap.get(shipmentDetailId));
break;
default:
// 处理其他类型的情况
break;
}
icsShipmentDetails.add(icsShipmentDetail);
}
return icsShipmentDetails;
}
private ICSShipmentModel postBackByMO(ShipmentHeader shipmentHeader, String type, Map<Integer,BigDecimal> detailsQtyMap){
ICSShipmentModel model = new ICSShipmentModel();
if(!type.equals(QuantityConstant.U8_SHIPMENT_TYPE_MO)){
return model;
}
List<ShipmentDetail> shipmentDetails = shipmentDetailService.getListByShipmentHeaderId(shipmentHeader.getId(), shipmentHeader.getWarehouseCode());
ICSShipmentHeader icsShipmentHeader = icsShipmentHeaderService.getHeaderByMO(shipmentHeader);
List<ICSShipmentDetail> details = icsShipmentDetailService.getDetailsByMO(shipmentDetails, icsShipmentHeader, detailsQtyMap);
model.setIcsShipmentHeader(icsShipmentHeader);
model.setIcsShipmentDetails(details);
return model;
}
private ICSShipmentModel postBackByOO(ShipmentHeader shipmentHeader,String type,Map<Integer,BigDecimal> detailsQtyMap){
ICSShipmentModel model = new ICSShipmentModel();
if(!type.equals(QuantityConstant.U8_SHIPMENT_TYPE_OO)){
return model;
}
ICSShipmentHeader icsShipmentHeader = new ICSShipmentHeader();
return model;
}
private ICSShipmentModel postBackByPRO(ShipmentHeader shipmentHeader,String type,Map<Integer,BigDecimal> detailsQtyMap){
ICSShipmentModel model = new ICSShipmentModel();
if(!type.equals(QuantityConstant.U8_SHIPMENT_TYPE_PRO)){
return model;
}
List<ShipmentDetail> shipmentDetails = shipmentDetailService.getListByShipmentHeaderId(shipmentHeader.getId(), shipmentHeader.getWarehouseCode());
ICSShipmentHeader icsShipmentHeader = icsShipmentHeaderService.getHeaderByPRO(shipmentHeader);
List<ICSShipmentDetail> details = icsShipmentDetailService.getDetailsByPRO(shipmentDetails, icsShipmentHeader, detailsQtyMap);
model.setIcsShipmentHeader(icsShipmentHeader);
model.setIcsShipmentDetails(details);
return model;
}
private ICSShipmentModel postBackBySO(ShipmentHeader shipmentHeader,String type,Map<Integer,BigDecimal> detailsQtyMap){
ICSShipmentModel model = new ICSShipmentModel();
if(!type.equals(QuantityConstant.U8_SHIPMENT_TYPE_SO)){
return model;
}
List<ShipmentDetail> shipmentDetails = shipmentDetailService.getListByShipmentHeaderId(shipmentHeader.getId(), shipmentHeader.getWarehouseCode());
ICSShipmentHeader icsShipmentHeader = icsShipmentHeaderService.getHeaderBySO(shipmentHeader);
List<ICSShipmentDetail> details = icsShipmentDetailService.getDetailsBySO(shipmentDetails, icsShipmentHeader, detailsQtyMap);
model.setIcsShipmentHeader(icsShipmentHeader);
model.setIcsShipmentDetails(details);
return model;
}
private AjaxResult checkHeaderInfo(ShipmentHeader shipmentHeader){
if(shipmentHeader==null){
return AjaxResult.error("出库单为null");
}
if(StringUtils.isEmpty(shipmentHeader.getShipmentType())){
return AjaxResult.error("出库单类型不能为空");
}
// if(StringUtils.isEmpty(shipmentHeader.getUWarehouseCode())){
// return AjaxResult.error("出库单u8仓库不能为空");
// }
if(StringUtils.isEmpty(shipmentHeader.getCompanyCode())){
return AjaxResult.error("出库单货主编码不能为空");
}
if(!StringUtils.isEmpty(shipmentHeader.getCustomerCode())){
Customer customer = customerService.getCustomerByCode(shipmentHeader.getCustomerCode(), ShiroUtils.getWarehouseCode());
if(customer==null){
return AjaxResult.error("出库单客户编码不存在");
}
}
return AjaxResult.success();
}
public List<ShipmentHeader> getExpiredBill() {
List<ShipmentHeader> shipmentHeaderList =shipmentHeaderMapper.getExpiredBill();
return shipmentHeaderList;
}
//清理出库单
@Override
@Transactional(rollbackFor = Exception.class)
public int cleanDocuments() {
//查找过期的出库单据
List<ShipmentHeader> shipmentHeaderList = this.getExpiredBill();
if(shipmentHeaderList.isEmpty()){
return 1;
}
for(ShipmentHeader shipmentHeader :shipmentHeaderList){
this.deleteHeaderAndDetail(shipmentHeader.getId().toString());
}
return 1;
}
@Override
public AjaxResult deleteHeaderAndDetail(String ids){
List<Integer> idList = Arrays.asList(Convert.toIntArray(ids));
for (Integer id : idList) {
ShipmentHeader shipmentHeader = shipmentHeaderService.getById(id);
if (shipmentHeader == null) {
return AjaxResult.error("没有找到单据" + String.valueOf(id));
}
if(shipmentHeader.getFirstStatus() >= QuantityConstant.SHIPMENT_HEADER_COMPLETED) {
return AjaxResult.error("订单状态大于500拣货完成不能删除");
}
LambdaQueryWrapper<ShipmentDetail> lambdaQueryWrapper = Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(ShipmentDetail::getShipmentId, id);
List<ShipmentDetail> list = shipmentDetailService.list(lambdaQueryWrapper);
List<ShipmentDetailHistory> shipmentDetailHistories = new ArrayList<>();
List<Integer> shipmentDetailIds = new ArrayList<>();
if (!shipmentHeaderService.removeById(shipmentHeader)) {
throw new ServiceException("删除头表失败");
}
ShipmentHeaderHistory shipmentHeaderHistory = new ShipmentHeaderHistory();
org.springframework.beans.BeanUtils.copyProperties(shipmentHeader, shipmentHeaderHistory);
if (!shipmentHeaderHistoryService.save(shipmentHeaderHistory)) {
throw new ServiceException("新增历史头表失败");
}
for (ShipmentDetail shipmentDetail : list) {
shipmentDetailIds.add(shipmentDetail.getId());
ShipmentDetailHistory shipmentDetailHistory = new ShipmentDetailHistory();
org.springframework.beans.BeanUtils.copyProperties(shipmentDetail, shipmentDetailHistory);
shipmentDetailHistory.setShipmentId(shipmentHeaderHistory.getId());
shipmentDetailHistories.add(shipmentDetailHistory);
}
if(shipmentDetailIds.size() > 0) {
if (!shipmentDetailService.removeByIds(shipmentDetailIds)) {
throw new ServiceException("删除明细表失败");
}
}
if(shipmentDetailHistories.size() > 0) {
if (!shipmentDetailHistoryService.saveBatch(shipmentDetailHistories)) {
throw new ServiceException("新增历史入库明细失败");
}
}
}
return AjaxResult.success("删除成功");
}
}