|
@@ -298,6 +298,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
return AjaxResult.error("出库明细为创建状态才可以分配!");
|
|
|
}
|
|
|
LotattDTO lotattDTO = new LotattDTO();
|
|
|
+ // 备货分配
|
|
|
if (!StringUtils.isEmpty(header.getUserdefine1())) {
|
|
|
//如果备货的只能查询属于该出库单的库存
|
|
|
lotattDTO.setLotatt14(header.getOrderNo());
|
|
@@ -406,6 +407,19 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
pickingListVO.setToBePickQty(de.getQty().subtract(de.getPickQty()).doubleValue());
|
|
|
pickingListVOS.add(pickingListVO);
|
|
|
}
|
|
|
+ // 二次组盘查询不到
|
|
|
+ if (pickingListVOS.size() == 0) {
|
|
|
+ InvLocIdSearchFrom invLocIdSearchFrom = new InvLocIdSearchFrom();
|
|
|
+ List<InvLotLocIdLotattVO> invLotLocIdLotattVOList = invLotLocIdService.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
+ for (InvLotLocIdLotattVO locIdLotattVO : invLotLocIdLotattVOList) {
|
|
|
+ PickingListVO pickingListVO = new PickingListVO();
|
|
|
+ pickingListVO.setOrderNo("");
|
|
|
+ pickingListVO.setSku(locIdLotattVO.getSku());
|
|
|
+ pickingListVO.setPickQty(locIdLotattVO.getQty());
|
|
|
+ pickingListVO.setToBePickQty(locIdLotattVO.getQty());
|
|
|
+ pickingListVOS.add(pickingListVO);
|
|
|
+ }
|
|
|
+ }
|
|
|
return pickingListVOS;
|
|
|
}
|
|
|
|
|
@@ -541,7 +555,17 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
wmsDocOrderDetails.setLineStatus(Constant.ORDER_STS.STS99.getValue());
|
|
|
wmsDocOrderDetailsMapper.updateWmsDocOrderDetails(wmsDocOrderDetails);
|
|
|
}
|
|
|
- // todo 备货
|
|
|
+ // 备货 修改出库单为备货状态
|
|
|
+// if (header != null && header.getOrderType().equals(Constant.ORDER_TYP.BH.getValue())) {
|
|
|
+// WmsDocOrderHeader docOrderHeader = new WmsDocOrderHeader();
|
|
|
+// docOrderHeader.setOrderNo(check.getOrderNo());
|
|
|
+// docOrderHeader.setOrderStatus(Constant.ORDER_STS.STS99.getValue());
|
|
|
+// wmsDocOrderHeaderMapper.updateWmsDocOrderHeader(docOrderHeader);
|
|
|
+// WmsDocOrderDetails wmsDocOrderDetails = new WmsDocOrderDetails();
|
|
|
+// wmsDocOrderDetails.setOrderNo(check.getOrderNo());
|
|
|
+// wmsDocOrderDetails.setLineStatus(Constant.ORDER_STS.STS99.getValue());
|
|
|
+// wmsDocOrderDetailsMapper.updateWmsDocOrderDetails(wmsDocOrderDetails);
|
|
|
+// }
|
|
|
|
|
|
}
|
|
|
|
|
@@ -593,6 +617,8 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
wmsDocOrderDetails.setOrderLineNo(BigDecimal.valueOf(lineNo + 1));
|
|
|
wmsDocOrderDetails.setQtyOrderedEach(wmsDocOrderDetails.getQtyOrdered());
|
|
|
wmsDocOrderDetails.setQtyAllocatedEach(wmsDocOrderDetails.getQtyAllocated());
|
|
|
+ wmsDocOrderDetails.setQtySoftAllocated(BigDecimal.ZERO);
|
|
|
+ wmsDocOrderDetails.setQtySoftallocatedEach(BigDecimal.ZERO);
|
|
|
}
|
|
|
return wmsDocOrderDetailsMapper.insertWmsDocOrderDetails(wmsDocOrderDetails);
|
|
|
}
|
|
@@ -620,7 +646,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
String orderNo = ""; // 出库单号(备货才会传入)
|
|
|
String sku = ""; // 物料编码
|
|
|
if (StringUtils.isNotEmpty(groupDiskFrom.getOrderNo())) {
|
|
|
- groupDiskFrom.getOrderNo();
|
|
|
+ orderNo = groupDiskFrom.getOrderNo();
|
|
|
}
|
|
|
/// 根据条码获取物料号
|
|
|
CodeSkuRelationshipVO codeSkuRelationshipVO = codeSkuRelationshipService.checkIsProduct(sn);
|
|
@@ -648,38 +674,40 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
lotnumAndInvLocIdMap.put(v.getLotnum(), locIdLotattVOList);
|
|
|
}
|
|
|
});
|
|
|
- if (palletNoFrom.equals(palletNoTo) && orderNo.equals("")) {
|
|
|
- // 起始托盘和目标托盘一样,并且出库单传入为空,不做操作
|
|
|
- return AjaxResult.success("起始和目标托盘一致,不用组盘!");
|
|
|
+// if (palletNoFrom.equals(palletNoTo) && orderNo.equals("")) {
|
|
|
+ // 起始托盘和目标托盘一样,并且出库单传入为空,不做操作
|
|
|
+// return AjaxResult.success("起始和目标托盘一致,不用组盘!");
|
|
|
|
|
|
- } else {
|
|
|
- // 根据老Lotnum创建新的Lotnum
|
|
|
- for (Map.Entry<String, List<InvLotLocIdLotattVO>> lotnumToInvLocId : lotnumAndInvLocIdMap.entrySet()) {
|
|
|
- String lotnum = lotnumToInvLocId.getKey();
|
|
|
- List<InvLotLocIdLotattVO> invLocIdList = lotnumToInvLocId.getValue();
|
|
|
- InvLotAtt invLotAtt = invLotAttMapper.selectInvLotAttByLotnum(lotnum);
|
|
|
- String newLotnum = idSequenceUtils.generateId("LOTNUMBER");
|
|
|
- invLotAtt.setLotnum(newLotnum);
|
|
|
- invLotAtt.setLotatt07(palletNoTo);
|
|
|
- if (!orderNo.equals("")) {
|
|
|
- invLotAtt.setLotatt14(orderNo); // 备货对应的出库单号
|
|
|
+// } else {
|
|
|
+ // 根据老Lotnum创建新的Lotnum
|
|
|
+ for (Map.Entry<String, List<InvLotLocIdLotattVO>> lotnumToInvLocId : lotnumAndInvLocIdMap.entrySet()) {
|
|
|
+ String lotnum = lotnumToInvLocId.getKey();
|
|
|
+ List<InvLotLocIdLotattVO> invLocIdList = lotnumToInvLocId.getValue();
|
|
|
+ InvLotAtt invLotAtt = invLotAttMapper.selectInvLotAttByLotnum(lotnum);
|
|
|
+ String newLotnum = idSequenceUtils.generateId("LOTNUMBER");
|
|
|
+ invLotAtt.setLotnum(newLotnum);
|
|
|
+ invLotAtt.setLotatt07(palletNoTo);
|
|
|
+ if (!orderNo.equals("")) {
|
|
|
+ invLotAtt.setLotatt14(orderNo); // 备货对应的出库单号
|
|
|
+ } else {
|
|
|
+ invLotAtt.setLotatt14(""); // 备货对应的出库单号
|
|
|
+ }
|
|
|
+ invLotAtt.setLotatt15(lotnum); // 老批次
|
|
|
+ invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
|
+ if (invLotAttMapper.insertInvLotAtt(invLotAtt) > 0) {
|
|
|
+ for (InvLotLocIdLotattVO v : invLocIdList) {
|
|
|
+ InvLotLocIdForm invLotLocIdUpdate = new InvLotLocIdForm();
|
|
|
+ invLotLocIdUpdate.setLotnum(lotnum);
|
|
|
+ invLotLocIdUpdate.setLocationId(v.getLocationId().toString());
|
|
|
+ invLotLocIdUpdate.setCustomerId(v.getCustomerId());
|
|
|
+ invLotLocIdUpdate.setSku(v.getSku());
|
|
|
+ invLotLocIdUpdate.setLotnumTo(newLotnum);
|
|
|
+ invLotLocIdService.updateInvLotLocId(invLotLocIdUpdate);
|
|
|
}
|
|
|
- invLotAtt.setLotatt15(lotnum); // 老批次
|
|
|
- invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
|
- if (invLotAttMapper.insertInvLotAtt(invLotAtt) > 0) {
|
|
|
- for (InvLotLocIdLotattVO v : invLocIdList) {
|
|
|
- InvLotLocIdForm invLotLocIdUpdate = new InvLotLocIdForm();
|
|
|
- invLotLocIdUpdate.setLotnum(lotnum);
|
|
|
- invLotLocIdUpdate.setLocationId(v.getLocationId().toString());
|
|
|
- invLotLocIdUpdate.setCustomerId(v.getCustomerId());
|
|
|
- invLotLocIdUpdate.setSku(v.getSku());
|
|
|
- invLotLocIdUpdate.setLotnumTo(newLotnum);
|
|
|
- invLotLocIdService.updateInvLotLocId(invLotLocIdUpdate);
|
|
|
- }
|
|
|
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
+// }
|
|
|
return AjaxResult.success("组盘成功!");
|
|
|
}
|
|
|
|
|
@@ -919,7 +947,7 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
ActAllocationDetailsFrom query = new ActAllocationDetailsFrom();
|
|
|
query.setOrderNo(snCheckSoForm.getOrderNo());
|
|
|
query.setLotatt02(snCheckSoForm.getSn());
|
|
|
- query.setStatus(Constant.ORDER_STS.STS20.getValue());
|
|
|
+ query.setStatus(Constant.ORDER_STS.STS21.getValue());
|
|
|
ActAllocationDetailsFrom actAllocationDetailsFrom = actAllocationDetailsService.selectActAllocationDetailsInvLotAttByModel(query);
|
|
|
if (actAllocationDetailsFrom == null) {
|
|
|
query.setStatus(Constant.ORDER_STS.STS30.getValue());
|
|
@@ -952,6 +980,8 @@ public class WmsDocOrderHeaderServiceImpl implements IWmsDocOrderHeaderService {
|
|
|
details.setQtyOrderedEach(erpOrder.getQty());
|
|
|
details.setQtyAllocatedEach(BigDecimal.ZERO);
|
|
|
details.setQtyAllocated(BigDecimal.ZERO);
|
|
|
+ details.setQtySoftAllocated(BigDecimal.ZERO);
|
|
|
+ details.setQtySoftallocatedEach(BigDecimal.ZERO);
|
|
|
details.setCustomerId(Constant.CUSTOMER_ID);
|
|
|
details.setQtyShippedEach(BigDecimal.ZERO);
|
|
|
details.setQtyShipped(BigDecimal.ZERO);
|