|
|
|
@ -2316,6 +2316,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
public R findLinePhoto(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
Long loadId = loadCarsDTO.getLoadId(); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
|
log.warn("#############findLinePhoto: 配载信息不存在 loadId={}",loadId); |
|
|
|
|
return R.fail(405,"配载信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadLinePhotoEntity> linePhotoEntityList = carsLoadLinePhotoService.findListByLoadIdAndWarehouseId(loadId, null, null, null); |
|
|
|
|
|
|
|
|
|
Map<Long, List<TrunklineCarsLoadLinePhotoEntity>> linePhotoMap = linePhotoEntityList.stream().collect(Collectors.groupingBy(TrunklineCarsLoadLinePhotoEntity::getLoadLineId)); |
|
|
|
@ -2333,6 +2339,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Map<String,Object> map = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
map.put("carsLoadLineEntity",loadLineEntity); |
|
|
|
|
map.put("nowWarehouseId",carsLoadEntity.getNowWarehouseId()); |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadLinePhotoEntity> trunklineCarsLoadLinePhotoEntities = linePhotoMap.get(loadLineId); |
|
|
|
|
|
|
|
|
@ -9208,11 +9215,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer i = loadingZeroFlag.get(); |
|
|
|
|
if(i == 1){ |
|
|
|
|
return R.data(ls,"装车完成,但存在零担未装车,请去确认装车数量"); |
|
|
|
|
}else{ |
|
|
|
|
return R.data(ls,"装车完成"); |
|
|
|
|
} |
|
|
|
|
// if(i == 1){
|
|
|
|
|
// return R.data(ls,"装车完成,但存在零担未装车,请去确认装车数量");
|
|
|
|
|
// }else{
|
|
|
|
|
// return R.data(ls,"装车完成");
|
|
|
|
|
// }
|
|
|
|
|
return R.data(ls,"装车完成"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -9707,7 +9715,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R costShareByLoadId(Long loadId) { |
|
|
|
|
public R costShareByLoadId(Long loadId,LoadCarsDTO loadCarsDTO) { |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
|
if (Objects.isNull(carsLoadEntity)) { |
|
|
|
@ -9720,6 +9728,13 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.fail(405, "配载计划已做过成本分摊"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String carsNo = carsLoadEntity.getCarsNo(); |
|
|
|
|
List<AftersalesAbnormalRecordEntity> abnormalList = abnormalRecordClient.findAbnormalList(carsNo); |
|
|
|
|
if(CollUtil.isNotEmpty(abnormalList)){ |
|
|
|
|
log.warn("#################costShareByLoadId: 该车次还有异常列表未处理 loadId={}", loadId); |
|
|
|
|
return R.fail(405, "该车次还有异常列表未处理"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadScanEntity> noDataList = trunklineCarsLoadScanService.findListNoDataByLoadId(loadId); |
|
|
|
|
int size = noDataList.size(); |
|
|
|
|
if (size != 0) { |
|
|
|
@ -9738,7 +9753,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.fail(405, "配载计划最终节点还未卸车确认"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
carsLoadAsyncService.costShareByLoadId(loadId, carsLoadEntity); |
|
|
|
|
carsLoadAsyncService.costShareByLoadId(loadId, carsLoadEntity,loadCarsDTO.getWarehouseId(),loadCarsDTO.getWarehouseName()); |
|
|
|
|
|
|
|
|
|
carsLoadEntity.setCostAllocationType("1"); |
|
|
|
|
carsLoadEntity.setCostAllocationAdminId(AuthUtil.getUserId()); |
|
|
|
|