|
|
@ -35,6 +35,7 @@ import org.springblade.common.constant.RabbitConstant; |
|
|
|
import org.springblade.common.constant.carsload.CarsLoadLogTypeConstant; |
|
|
|
import org.springblade.common.constant.carsload.CarsLoadLogTypeConstant; |
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
|
|
|
import org.springblade.common.utils.QRCodeUtil; |
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
import org.springblade.core.tool.api.R; |
|
|
@ -79,6 +80,9 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
private final ITrunklineCarsLoadContractService carsLoadContractService; |
|
|
|
private final ITrunklineCarsLoadContractService carsLoadContractService; |
|
|
|
private final ITrunklineCarsLoadFinanceService carsLoadFinanceService; |
|
|
|
private final ITrunklineCarsLoadFinanceService carsLoadFinanceService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final ICarsLoadAsyncService carsLoadAsyncService; |
|
|
|
|
|
|
|
private final IOpenOrderAsyncService openOrderAsyncService; |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public IPage<TrunklineCarsLoadVO> loadCarsPageList(LoadCarsDTO loadCarsDTO) { |
|
|
|
public IPage<TrunklineCarsLoadVO> loadCarsPageList(LoadCarsDTO loadCarsDTO) { |
|
|
|
IPage<Object> page = new Page<>(); |
|
|
|
IPage<Object> page = new Page<>(); |
|
|
@ -189,11 +193,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
updateById(carsLoadEntity); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.FIRST_START_CARS_LOAD.getValue()); |
|
|
|
//异步存入日志
|
|
|
|
|
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.FIRST_START_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openOrderAsyncService.saveStartCarLog(carsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############startCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("############startCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}else if(startCarType == 2){ |
|
|
|
}else if(startCarType == 2){ |
|
|
|
//到车管理的发车
|
|
|
|
//到车管理的发车
|
|
|
|
//最终节点
|
|
|
|
//最终节点
|
|
|
@ -260,9 +268,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
updateById(carsLoadEntity); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_START_CARS_LOAD.getValue()); |
|
|
|
//异步存入日志
|
|
|
|
|
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_START_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openOrderAsyncService.saveStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############startCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("############startCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
@ -381,10 +392,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(loadId, warehouseId); |
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(loadId, warehouseId); |
|
|
|
if(!nodeId.equals(endNodeId)){ |
|
|
|
if(!nodeId.equals(endNodeId)){ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.NET_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.NET_ARRIVE_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.END_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.END_ARRIVE_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
openOrderAsyncService.saveArriveCarLog(carsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############arriveCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############arriveCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
@ -457,7 +469,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
carsLoadEntity.setStartTime(null); |
|
|
|
carsLoadEntity.setStartTime(null); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_FIRST_START_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_FIRST_START_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
openOrderAsyncService.saveCancelStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############cancelStartCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############cancelStartCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
@ -475,7 +488,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
updateById(carsLoadEntity); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_NET_START_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_NET_START_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
openOrderAsyncService.saveCancelStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############cancelStartCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############cancelStartCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
@ -642,14 +656,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
try{ |
|
|
|
if(nowWarehouseId.equals(endNodeId)) { |
|
|
|
if(nowWarehouseId.equals(endNodeId)) { |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_END_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_END_ARRIVE_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_NET_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_NET_ARRIVE_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
openOrderAsyncService.saveCancelArriveCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############cancelArriveCarByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############cancelArriveCarByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
@ -736,7 +750,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_UNLOAD_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_UNLOAD_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
openOrderAsyncService.saveUnloadStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
@ -754,7 +769,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
currentCarsLoadLineEntity.setUnloadDate(new Date()); |
|
|
|
currentCarsLoadLineEntity.setUnloadDate(new Date()); |
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
try{ |
|
|
|
try{ |
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.END_UNLOAD_CARS_LOAD.getValue()); |
|
|
|
carsLoadAsyncService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.END_UNLOAD_CARS_LOAD.getValue(),AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
|
|
|
|
openOrderAsyncService.saveUnloadStartCarLog(currentCarsLoadLineEntity,AuthUtil.getNickName(),AuthUtil.getUserId()); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
} |
|
|
|
} |
|
|
@ -2150,7 +2166,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public R updateLoadFeeByNodeId(TrunklineCarsLoadDTO carsLoadDTO,Long warehouseId,String warehouseName) { |
|
|
|
public R updateLoadFeeByNodeId(TrunklineCarsLoadDTO carsLoadDTO,Long warehouseId,String warehouseName) { |
|
|
|
Long loadId = carsLoadDTO.getId(); |
|
|
|
Long loadId = carsLoadDTO.getId(); |
|
|
|
String str = ""; |
|
|
|
StringBuilder str = new StringBuilder(); |
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
log.warn("##########updateLoadFeeByNodeId: 配载计划信息不存在 loadId={}",loadId); |
|
|
|
log.warn("##########updateLoadFeeByNodeId: 配载计划信息不存在 loadId={}",loadId); |
|
|
@ -2184,13 +2200,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
updateById(carsLoadEntity); |
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
|
|
if(oldCountTransportCost.compareTo(countTransportCost) != 0){ |
|
|
|
if(oldCountTransportCost.compareTo(countTransportCost) != 0){ |
|
|
|
str = "运输费用: 由【"+oldCountTransportCost+"】改为"+countTransportCost+"。&"; |
|
|
|
str = new StringBuilder("运输费用: 由【" + oldCountTransportCost + "】改为" + countTransportCost + "。"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadLineDTO> carsLoadLineList = carsLoadDTO.getCarsLoadLineList(); |
|
|
|
List<TrunklineCarsLoadLineDTO> carsLoadLineList = carsLoadDTO.getCarsLoadLineList(); |
|
|
|
for (TrunklineCarsLoadLineDTO carsLoadLineDTO : carsLoadLineList) { |
|
|
|
for (TrunklineCarsLoadLineDTO carsLoadLineDTO : carsLoadLineList) { |
|
|
|
Long loadCarsLineId = carsLoadLineDTO.getId(); |
|
|
|
Long loadCarsLineId = carsLoadLineDTO.getId(); |
|
|
|
TrunklineCarsLoadLineEntity loadLineEntity = trunklineCarsLoadLineService.getById(loadCarsLineId); |
|
|
|
TrunklineCarsLoadLineEntity loadLineEntity = trunklineCarsLoadLineService.getById(loadCarsLineId); |
|
|
|
|
|
|
|
String s = compareLineFee(carsLoadLineDTO, loadLineEntity); |
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(s)){ |
|
|
|
|
|
|
|
str.append("&").append(loadLineEntity.getNodeName()).append(":").append(s); |
|
|
|
|
|
|
|
} |
|
|
|
loadLineEntity.setNowTransportCost(carsLoadLineDTO.getNowTransportCost()); |
|
|
|
loadLineEntity.setNowTransportCost(carsLoadLineDTO.getNowTransportCost()); |
|
|
|
loadLineEntity.setOilCost(carsLoadLineDTO.getOilCost()); |
|
|
|
loadLineEntity.setOilCost(carsLoadLineDTO.getOilCost()); |
|
|
|
loadLineEntity.setBackTransportCost(carsLoadLineDTO.getBackTransportCost()); |
|
|
|
loadLineEntity.setBackTransportCost(carsLoadLineDTO.getBackTransportCost()); |
|
|
@ -2204,21 +2224,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
loadLineEntity.setUnloadOtherCost(carsLoadLineDTO.getUnloadOtherCost()); |
|
|
|
loadLineEntity.setUnloadOtherCost(carsLoadLineDTO.getUnloadOtherCost()); |
|
|
|
loadLineEntity.setFuel(carsLoadLineDTO.getFuel()); |
|
|
|
loadLineEntity.setFuel(carsLoadLineDTO.getFuel()); |
|
|
|
loadLineEntity.setTollFee(carsLoadLineDTO.getTollFee()); |
|
|
|
loadLineEntity.setTollFee(carsLoadLineDTO.getTollFee()); |
|
|
|
String s = compareLineFee(carsLoadLineDTO, loadLineEntity); |
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(s)){ |
|
|
|
|
|
|
|
str = str + loadLineEntity.getNodeName()+":"+s; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
trunklineCarsLoadLineService.updateById(loadLineEntity); |
|
|
|
trunklineCarsLoadLineService.updateById(loadLineEntity); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(str)){ |
|
|
|
if(StringUtil.isNotBlank(str.toString())){ |
|
|
|
TrunklineCarsLoadFinanceEntity carsLoadFinanceEntity = new TrunklineCarsLoadFinanceEntity(); |
|
|
|
TrunklineCarsLoadFinanceEntity carsLoadFinanceEntity = new TrunklineCarsLoadFinanceEntity(); |
|
|
|
carsLoadFinanceEntity.setLoadId(loadId); |
|
|
|
carsLoadFinanceEntity.setLoadId(loadId); |
|
|
|
carsLoadFinanceEntity.setWarehouseId(warehouseId); |
|
|
|
carsLoadFinanceEntity.setWarehouseId(warehouseId); |
|
|
|
carsLoadFinanceEntity.setWarehouseName(warehouseName); |
|
|
|
carsLoadFinanceEntity.setWarehouseName(warehouseName); |
|
|
|
carsLoadFinanceEntity.setCreateUserName(AuthUtil.getNickName()); |
|
|
|
carsLoadFinanceEntity.setCreateUserName(AuthUtil.getNickName()); |
|
|
|
carsLoadFinanceEntity.setContent(str); |
|
|
|
carsLoadFinanceEntity.setContent(str.toString()); |
|
|
|
try{ |
|
|
|
try{ |
|
|
|
carsLoadFinanceService.save(carsLoadFinanceEntity); |
|
|
|
carsLoadFinanceService.save(carsLoadFinanceEntity); |
|
|
|
}catch (Exception e){ |
|
|
|
}catch (Exception e){ |
|
|
@ -2341,15 +2357,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
BigDecimal oldFuel = loadLineEntity.getFuel(); |
|
|
|
// BigDecimal oldFuel = loadLineEntity.getFuel();
|
|
|
|
BigDecimal fuel = carsLoadLineDTO.getFuel(); |
|
|
|
// BigDecimal fuel = carsLoadLineDTO.getFuel();
|
|
|
|
if(oldFuel.compareTo(fuel) != 0){ |
|
|
|
// if(oldFuel.compareTo(fuel) != 0){
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
// if(StringUtil.isBlank(result)){
|
|
|
|
result = "【油费】"+fuel; |
|
|
|
// result = "【油费】"+fuel;
|
|
|
|
}else{ |
|
|
|
// }else{
|
|
|
|
result = result+",【油费】"+fuel; |
|
|
|
// result = result+",【油费】"+fuel;
|
|
|
|
} |
|
|
|
// }
|
|
|
|
} |
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
BigDecimal oldTollFee = loadLineEntity.getTollFee(); |
|
|
|
BigDecimal oldTollFee = loadLineEntity.getTollFee(); |
|
|
|
BigDecimal tollFee = carsLoadLineDTO.getTollFee(); |
|
|
|
BigDecimal tollFee = carsLoadLineDTO.getTollFee(); |
|
|
@ -3556,6 +3572,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
log.warn("############findLoadingListData: 配载计划信息不存在 loadId={}",loadId); |
|
|
|
log.warn("############findLoadingListData: 配载计划信息不存在 loadId={}",loadId); |
|
|
|
return R.fail(405,"配载计划信息不存在"); |
|
|
|
return R.fail(405,"配载计划信息不存在"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
String carsNo = carsLoadEntity.getCarsNo(); |
|
|
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadLoadingListVO trunklineCarsLoadLoadingListVO = new TrunklineCarsLoadLoadingListVO(); |
|
|
|
TrunklineCarsLoadLoadingListVO trunklineCarsLoadLoadingListVO = new TrunklineCarsLoadLoadingListVO(); |
|
|
|
BeanUtil.copy(carsLoadEntity,trunklineCarsLoadLoadingListVO); |
|
|
|
BeanUtil.copy(carsLoadEntity,trunklineCarsLoadLoadingListVO); |
|
|
@ -3617,6 +3634,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
} |
|
|
|
} |
|
|
|
loadingMainList.addAll(unloadMainList); |
|
|
|
loadingMainList.addAll(unloadMainList); |
|
|
|
trunklineCarsLoadLoadingListVO.setMainList(loadingMainList); |
|
|
|
trunklineCarsLoadLoadingListVO.setMainList(loadingMainList); |
|
|
|
|
|
|
|
trunklineCarsLoadLoadingListVO.setCarsNoBase64(QRCodeUtil.getEmpAutograph(QRCodeUtil.createCodeToFileType(carsNo))); |
|
|
|
return R.data(trunklineCarsLoadLoadingListVO); |
|
|
|
return R.data(trunklineCarsLoadLoadingListVO); |
|
|
|
}else{ |
|
|
|
}else{ |
|
|
|
log.warn("#############findLoadingListData: 仓库信息不正确"); |
|
|
|
log.warn("#############findLoadingListData: 仓库信息不正确"); |
|
|
@ -4013,12 +4031,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL |
|
|
|
InComingDTO inComingDTO = new InComingDTO(); |
|
|
|
InComingDTO inComingDTO = new InComingDTO(); |
|
|
|
inComingDTO.setOrderPackageCode(orderPackageCode); |
|
|
|
inComingDTO.setOrderPackageCode(orderPackageCode); |
|
|
|
inComingDTO.setWarehouseId(warehouseId); |
|
|
|
inComingDTO.setWarehouseId(warehouseId); |
|
|
|
R r = inComingService.incomingPackage(inComingDTO); |
|
|
|
inComingService.incomingPackage(inComingDTO); |
|
|
|
int code = r.getCode(); |
|
|
|
// int code = r.getCode();
|
|
|
|
if(code != 200){ |
|
|
|
// if(code != 200){
|
|
|
|
log.warn("##############unloadPackage: 包件入库失败"); |
|
|
|
// log.warn("##############unloadPackage: 包件入库失败");
|
|
|
|
return R.fail(405,"包件入库失败"); |
|
|
|
// }
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//需要补装车扫记录
|
|
|
|
//需要补装车扫记录
|
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity(); |
|
|
|
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = new TrunklineCarsLoadScanEntity(); |
|
|
|