|
|
|
@ -24,10 +24,7 @@ import com.logpm.trunkline.service.*;
|
|
|
|
|
import com.logpm.trunkline.vo.*; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWayBillDetail; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseTrayTypeClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillClient; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillDetailClient; |
|
|
|
|
import com.logpm.warehouse.feign.*; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.commons.lang.StringEscapeUtils; |
|
|
|
@ -86,6 +83,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
private final IOpenOrderAsyncService openOrderAsyncService; |
|
|
|
|
private final IDistributionParcelNumberClient distributionParcelNumberClient; |
|
|
|
|
private final ITrunklineCostShareRecordService trunklineCostShareRecordService; |
|
|
|
|
private final ITrunklineAdvanceService advanceService; |
|
|
|
|
private final IWarehouseAbnormalRecordClient abnormalRecordClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<TrunklineCarsLoadVO> loadCarsPageList(LoadCarsDTO loadCarsDTO) { |
|
|
|
@ -756,6 +755,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
try{ |
|
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_UNLOAD_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
openOrderAsyncService.saveUnloadStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
@ -1803,11 +1806,48 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
isAbnormal = 1; |
|
|
|
|
DistributionParcelListEntity otherParcelListEntity = distributionParcelListClient.findByOrderPackageCodeAndStatus(orderPackageCode); |
|
|
|
|
if(Objects.isNull(otherParcelListEntity)){ |
|
|
|
|
carsLoadScanEntity.setOrderCode("--"); |
|
|
|
|
carsLoadScanEntity.setIsData(0); |
|
|
|
|
isData = 0; |
|
|
|
|
remark = "无数据,异常装车"; |
|
|
|
|
TrunklineAdvanceDetailEntity trunklineAdvanceDetailEntity = trunklineAdvanceDetailService.findEntityByOrderPackageCode(orderPackageCode); |
|
|
|
|
if(Objects.isNull(trunklineAdvanceDetailEntity)){ |
|
|
|
|
carsLoadScanEntity.setOrderCode("--"); |
|
|
|
|
carsLoadScanEntity.setIsData(0); |
|
|
|
|
isData = 0; |
|
|
|
|
remark = "无系统数据,异常装车"; |
|
|
|
|
}else{ |
|
|
|
|
carsLoadScanEntity.setOrderCode(trunklineAdvanceDetailEntity.getOrderCode()); |
|
|
|
|
carsLoadScanEntity.setWaybillNo(trunklineAdvanceDetailEntity.getWaybillNo()); |
|
|
|
|
carsLoadScanEntity.setIsData(1); |
|
|
|
|
String packageStatus = trunklineAdvanceDetailEntity.getPackageStatus(); |
|
|
|
|
if("0".equals(packageStatus)){ |
|
|
|
|
//未入库
|
|
|
|
|
log.warn("##################loadingScan: 包件暂未入库 orderPackageCode={}",orderPackageCode); |
|
|
|
|
return R.fail(405,"包件暂未入库"); |
|
|
|
|
}else{ |
|
|
|
|
//已入库
|
|
|
|
|
String waybillNo1 = trunklineAdvanceDetailEntity.getWaybillNo(); |
|
|
|
|
if(StringUtil.isBlank(waybillNo1)){ |
|
|
|
|
log.warn("##################loadingScan: 暂存单未开单 orderPackageCode={}",orderPackageCode); |
|
|
|
|
return R.fail(405,"订单未开单"); |
|
|
|
|
}else{ |
|
|
|
|
log.warn("##################loadingScan: 包件暂未入到本仓 orderPackageCode={} warehouseId={}",orderPackageCode,warehouseId); |
|
|
|
|
return R.fail(405,"包件暂未入到本仓"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
//先把其他仓在库的包件出库并下架
|
|
|
|
|
// try{
|
|
|
|
|
// List<DistributionParcelListEntity> parcelListEntities = distributionParcelListClient.findAllStockListByOrderPackageCode(orderPackageCode);
|
|
|
|
|
// for (DistributionParcelListEntity listEntity : parcelListEntities) {
|
|
|
|
|
// listEntity.setOrderPackageStatus("60");
|
|
|
|
|
// distributionParcelListClient.update(listEntity);
|
|
|
|
|
// Long warehouseId1 = listEntity.getWarehouseId();
|
|
|
|
|
// updownTypeClient.downPackageOrDelTray(orderPackageCode,warehouseId1);
|
|
|
|
|
// }
|
|
|
|
|
// }catch (Exception e){
|
|
|
|
|
// log.warn("################loadingScan: 下架及解托包件失败");
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
carsLoadScanEntity.setIsData(1); |
|
|
|
|
isData = 1; |
|
|
|
|
Long otherPackageId = otherParcelListEntity.getId(); |
|
|
|
@ -3773,6 +3813,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.success("成本计算开始,几分钟后请刷新页面查看"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R abnormalList(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
|
page.setCurrent(loadCarsDTO.getPageNum()); |
|
|
|
|
page.setSize(loadCarsDTO.getPageSize()); |
|
|
|
|
|
|
|
|
|
IPage<TrunklineCarsLoadScanVO> ls = trunklineCarsLoadScanService.abnormalList(page,loadCarsDTO); |
|
|
|
|
|
|
|
|
|
return R.data(ls); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R loadingTrayInfo(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
log.info("##############loadingTrayInfo: 查询托盘的货物信息"); |
|
|
|
@ -4354,11 +4405,13 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
distributionParcelListEntity = new DistributionParcelListEntity(); |
|
|
|
|
BeanUtil.copy(parcelListEntity,distributionParcelListEntity); |
|
|
|
|
distributionParcelListEntity.setId(null); |
|
|
|
|
distributionParcelListEntity.setOrderPackageStatus("30"); |
|
|
|
|
distributionParcelListEntity.setOrderPackageStatus("20"); |
|
|
|
|
if(!Objects.isNull(warehouseWaybillEntity)){ |
|
|
|
|
Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId();//目的仓
|
|
|
|
|
if(destinationWarehouseId.equals(warehouseId)){ |
|
|
|
|
distributionParcelListEntity.setOrderPackageStatus("20"); |
|
|
|
|
distributionParcelListEntity.setIsTransfer(0); |
|
|
|
|
}else{ |
|
|
|
|
distributionParcelListEntity.setIsTransfer(1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
distributionParcelListEntity.setWarehouseId(warehouseId); |
|
|
|
@ -4376,15 +4429,61 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
distributionStockArticleClient.addIncomingNum(currentOrderId,1); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
Long packageId = distributionParcelListEntity.getId(); |
|
|
|
|
String packageStatus = "30"; |
|
|
|
|
if(!Objects.isNull(warehouseWaybillEntity)){ |
|
|
|
|
Long destinationWarehouseId = warehouseWaybillEntity.getDestinationWarehouseId();//目的仓
|
|
|
|
|
if(destinationWarehouseId.equals(warehouseId)){ |
|
|
|
|
packageStatus = "20"; |
|
|
|
|
distributionParcelListEntity.setIsTransfer(0); |
|
|
|
|
}else{ |
|
|
|
|
distributionParcelListEntity.setIsTransfer(1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
distributionParcelListClient.update(distributionParcelListEntity); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
//无数据
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = trunklineAdvanceDetailService.findEntityByOrderPackageCode(orderPackageCode); |
|
|
|
|
if(!Objects.isNull(advanceDetailEntity)){ |
|
|
|
|
String packageStatus = advanceDetailEntity.getPackageStatus(); |
|
|
|
|
String orderCode1 = advanceDetailEntity.getOrderCode(); |
|
|
|
|
String waybillNo1 = advanceDetailEntity.getWaybillNo(); |
|
|
|
|
if("0".equals(packageStatus)){ |
|
|
|
|
//未入库
|
|
|
|
|
InComingDTO inComingDTO = new InComingDTO(); |
|
|
|
|
inComingDTO.setOrderPackageCode(orderPackageCode); |
|
|
|
|
inComingDTO.setWarehouseId(warehouseId); |
|
|
|
|
inComingService.incomingPackage(inComingDTO); |
|
|
|
|
|
|
|
|
|
carsLoadScanEntity.setOrderCode(orderCode1); |
|
|
|
|
carsLoadScanEntity.setWaybillNo(waybillNo1); |
|
|
|
|
carsLoadScanEntity.setIsData(1); |
|
|
|
|
trunklineCarsLoadScanService.updateById(carsLoadScanEntity); |
|
|
|
|
}else{ |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByOrderPackageCodeAndStatus(orderPackageCode); |
|
|
|
|
if(!Objects.isNull(parcelListEntity)){ |
|
|
|
|
String orderCode2 = parcelListEntity.getOrderCode(); |
|
|
|
|
DistributionStockArticleEntity newStockArticle = distributionStockArticleClient.findStockArticleByOrderCodeAndWarehouseId(orderCode2, warehouseId); |
|
|
|
|
Long orderId = null; |
|
|
|
|
if(Objects.isNull(newStockArticle)){ |
|
|
|
|
newStockArticle = new DistributionStockArticleEntity(); |
|
|
|
|
Long stockArticleId = parcelListEntity.getStockArticleId(); |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient.findEntityByStockArticleId(stockArticleId); |
|
|
|
|
BeanUtil.copy(stockArticleEntity,newStockArticle); |
|
|
|
|
newStockArticle.setId(null); |
|
|
|
|
newStockArticle.setWarehouseId(warehouseId); |
|
|
|
|
newStockArticle.setWarehouse(basicdataWarehouseEntity.getName()); |
|
|
|
|
orderId = distributionStockArticleClient.addData(newStockArticle); |
|
|
|
|
}else{ |
|
|
|
|
orderId = newStockArticle.getId(); |
|
|
|
|
} |
|
|
|
|
DistributionParcelListEntity newParcelListEntity = new DistributionParcelListEntity(); |
|
|
|
|
BeanUtil.copy(parcelListEntity,newParcelListEntity); |
|
|
|
|
newParcelListEntity.setId(null); |
|
|
|
|
newParcelListEntity.setWarehouseId(warehouseId); |
|
|
|
|
newParcelListEntity.setWarehouse(basicdataWarehouseEntity.getName()); |
|
|
|
|
newParcelListEntity.setStockArticleId(orderId); |
|
|
|
|
distributionParcelListClient.add(newParcelListEntity); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
distributionParcelListClient.updateOrderPackageCodeById(packageId,packageStatus); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|