|
|
|
@ -2628,6 +2628,8 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
return R.fail(405, "运单信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String waybillNo = waybillEntity.getWaybillNo(); |
|
|
|
|
|
|
|
|
|
if (isEdit.equals(1)) { |
|
|
|
|
Integer abolishStatus = waybillEntity.getAbolishStatus(); |
|
|
|
|
if (abolishStatus.equals(1)) { |
|
|
|
@ -2645,7 +2647,37 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer zeroEditStatus = 1; |
|
|
|
|
|
|
|
|
|
Integer waybillType = waybillEntity.getWaybillType(); |
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
if (waybillType.equals(2)) { |
|
|
|
|
//零担改单限制
|
|
|
|
|
|
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
DistributionStockArticleEntity endStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, destinationWarehouseId); |
|
|
|
|
if (Objects.isNull(endStockArticleEntity)) { |
|
|
|
|
DistributionStockArticleEntity startStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, departureWarehouseId); |
|
|
|
|
if (Objects.isNull(startStockArticleEntity)) { |
|
|
|
|
zeroEditStatus = 1; |
|
|
|
|
} |
|
|
|
|
Integer handQuantity = startStockArticleEntity.getHandQuantity(); |
|
|
|
|
if (!NumberUtil.equals(handQuantity, totalCount)) { |
|
|
|
|
zeroEditStatus = 0; |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
Integer incomingQuantity = endStockArticleEntity.getIncomingNum(); |
|
|
|
|
if(!NumberUtil.equals(incomingQuantity,totalCount)){ |
|
|
|
|
zeroEditStatus = 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
warehouseWaybillVO.setZeroEditStatus(zeroEditStatus); |
|
|
|
|
|
|
|
|
|
map.put("warehouseWaybill", warehouseWaybillVO); |
|
|
|
|
map.put("zeroEditStatus", zeroEditStatus); |
|
|
|
|
map.put("payTypeList", DictBizCache.getList(DictBizConstant.OPEN_ORDER_PAY_TYPE)); |
|
|
|
|
map.put("payWayList", DictBizCache.getList(DictBizConstant.OPEN_ORDER_PAY_WAY)); |
|
|
|
|
map.put("deliveryWayList", DictBizCache.getList(DictBizConstant.OPEN_ORDER_DELIVERY_WAY)); |
|
|
|
@ -2687,10 +2719,12 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer waybillType = waybillEntity.getWaybillType(); |
|
|
|
|
if (waybillType.equals(2)) { |
|
|
|
|
//零担改单限制
|
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
if(warehouseId.equals(departureWarehouseId) || warehouseId.equals(destinationWarehouseId)){ |
|
|
|
|
if (waybillType.equals(2)) { |
|
|
|
|
//零担改单限制
|
|
|
|
|
|
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
DistributionStockArticleEntity endStockArticleEntity = distributionStockArticleClient.findZeroByOrderCodeAndWarehouseId(waybillNo, destinationWarehouseId); |
|
|
|
|
if (Objects.isNull(endStockArticleEntity)) { |
|
|
|
@ -2712,7 +2746,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// //验证运单是否有配送任务
|
|
|
|
|
// //查询运单下所有订单号
|
|
|
|
@ -2747,8 +2781,6 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
String consigneeName = waybillEntity.getConsigneeName(); |
|
|
|
|
String consigneeAddress = waybillEntity.getConsigneeAddress(); |
|
|
|
|
String consigneeMobile = waybillEntity.getConsigneeMobile(); |
|
|
|
|
Long departureWarehouseId = waybillEntity.getDepartureWarehouseId(); |
|
|
|
|
Long destinationWarehouseId = waybillEntity.getDestinationWarehouseId(); |
|
|
|
|
String departureWarehouseName = waybillEntity.getDepartureWarehouseName(); |
|
|
|
|
String destinationWarehouseName = waybillEntity.getDestinationWarehouseName(); |
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|