|
|
|
@ -76,6 +76,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
private final ITrunklineCarsSignLogService trunklineCarsSignLogService; |
|
|
|
|
private final RabbitTemplate rabbitTemplate; |
|
|
|
|
private final IInComingService inComingService; |
|
|
|
|
private final ITrunklineCarsLoadContractService carsLoadContractService; |
|
|
|
|
private final ITrunklineCarsLoadFinanceService carsLoadFinanceService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<TrunklineCarsLoadVO> loadCarsPageList(LoadCarsDTO loadCarsDTO) { |
|
|
|
@ -89,7 +91,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Long loadId = trunklineCarsLoadVO.getId(); |
|
|
|
|
QueryWrapper<TrunklineCarsLoadLineEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("is_deleted",0) |
|
|
|
|
.eq("load_id",loadId); |
|
|
|
|
.eq("load_id",loadId) |
|
|
|
|
.orderByAsc("sort"); |
|
|
|
|
List<TrunklineCarsLoadLineEntity> list = trunklineCarsLoadLineService.list(queryWrapper); |
|
|
|
|
trunklineCarsLoadVO.setCarsLoadLineList(list); |
|
|
|
|
} |
|
|
|
@ -109,7 +112,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
Long loadId = trunklineCarsLoadVO.getId(); |
|
|
|
|
QueryWrapper<TrunklineCarsLoadLineEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("is_deleted",0) |
|
|
|
|
.eq("load_id",loadId); |
|
|
|
|
.eq("load_id",loadId) |
|
|
|
|
.orderByAsc("sort"); |
|
|
|
|
List<TrunklineCarsLoadLineEntity> list = trunklineCarsLoadLineService.list(queryWrapper); |
|
|
|
|
trunklineCarsLoadVO.setCarsLoadLineList(list); |
|
|
|
|
} |
|
|
|
@ -374,10 +378,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(loadId, warehouseId); |
|
|
|
|
if(!nodeId.equals(endNodeId)){ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.NET_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.NET_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
|
}else{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.END_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.END_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
|
} |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############arriveCarByLoadId: 存入日志失败"); |
|
|
|
@ -861,7 +867,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,null, CarsLoadLogTypeConstant.CREATE_CARS_LOAD.getValue()); |
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(carsLoadEntity.getId(), warehouseId); |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.CREATE_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
@ -1152,6 +1159,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
loadLineTitleName = ""; |
|
|
|
|
List<TrunklineCarsLoadLineEntity> loadLineEntityList = trunklineCarsLoadLineService.findListByLoadId(loadId); |
|
|
|
|
for (TrunklineCarsLoadLineEntity carsLoadLineEntity : loadLineEntityList) { |
|
|
|
|
String nodeName = carsLoadLineEntity.getNodeName(); |
|
|
|
|
if(StringUtil.isBlank(loadLineTitleName)){ |
|
|
|
|
loadLineTitleName = nodeName; |
|
|
|
|
}else{ |
|
|
|
|
loadLineTitleName = loadLineTitleName + "->" + nodeName; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
carsLoadEntity.setCarsLineName(loadLineTitleName); |
|
|
|
|
carsLoadEntity.setEndWarehouseIds(endWarehouseIds); |
|
|
|
|
carsLoadEntity.setEndWarehouseNames(endWarehouseNames); |
|
|
|
@ -1160,7 +1178,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
updateNumByLoadId(loadId); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,null, CarsLoadLogTypeConstant.UPDATE_CARS_LOAD.getValue()); |
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(loadId, warehouseId); |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.UPDATE_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############updateCarsLoadBasicData: 存入日志失败"); |
|
|
|
|
} |
|
|
|
@ -1455,7 +1474,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,null, CarsLoadLogTypeConstant.CREATE_CARS_LOAD.getValue()); |
|
|
|
|
TrunklineCarsLoadLineEntity loadLineEntity = trunklineCarsLoadLineService.findEntityByLoadIdAndNodeId(carsLoadEntity.getId(), warehouseId); |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,loadLineEntity, CarsLoadLogTypeConstant.CREATE_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############unloadByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
@ -1505,6 +1525,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadEntity.setLoadStatus("10"); |
|
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.FIRST_START_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############startCarByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("发车成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1553,6 +1579,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadEntity.setStartTime(null); |
|
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,currentCarsLoadLineEntity, CarsLoadLogTypeConstant.CANCEL_FIRST_START_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############startCarByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("取消成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1597,6 +1629,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadEntity.setArriveTime(date); |
|
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
trunklineCarsLoadLogService.saveLog(carsLoadEntity,carsLoadLineEntity, CarsLoadLogTypeConstant.END_ARRIVE_CARS_LOAD.getValue()); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############startCarByLoadId: 存入日志失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("到达成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2110,15 +2148,17 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R updateLoadFeeByNodeId(TrunklineCarsLoadDTO carsLoadDTO,Long warehouseId) { |
|
|
|
|
public R updateLoadFeeByNodeId(TrunklineCarsLoadDTO carsLoadDTO,Long warehouseId,String warehouseName) { |
|
|
|
|
Long loadId = carsLoadDTO.getId(); |
|
|
|
|
|
|
|
|
|
String str = ""; |
|
|
|
|
TrunklineCarsLoadEntity carsLoadEntity = baseMapper.selectById(loadId); |
|
|
|
|
if(Objects.isNull(carsLoadEntity)){ |
|
|
|
|
log.warn("##########updateLoadFeeByNodeId: 配载计划信息不存在 loadId={}",loadId); |
|
|
|
|
return R.fail(405,"配载计划信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldCountTransportCost = carsLoadEntity.getCountTransportCost(); |
|
|
|
|
|
|
|
|
|
Long carId = carsLoadDTO.getCarId(); |
|
|
|
|
String carNumber = carsLoadDTO.getCarNumber(); |
|
|
|
|
Long driverId = carsLoadDTO.getDriverId(); |
|
|
|
@ -2143,6 +2183,10 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
carsLoadEntity.setCountTransportCost(countTransportCost); |
|
|
|
|
updateById(carsLoadEntity); |
|
|
|
|
|
|
|
|
|
if(oldCountTransportCost.compareTo(countTransportCost) != 0){ |
|
|
|
|
str = "运输费用: 由【"+oldCountTransportCost+"】改为"+countTransportCost+"。&"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsLoadLineDTO> carsLoadLineList = carsLoadDTO.getCarsLoadLineList(); |
|
|
|
|
for (TrunklineCarsLoadLineDTO carsLoadLineDTO : carsLoadLineList) { |
|
|
|
|
Long loadCarsLineId = carsLoadLineDTO.getId(); |
|
|
|
@ -2160,12 +2204,166 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
loadLineEntity.setUnloadOtherCost(carsLoadLineDTO.getUnloadOtherCost()); |
|
|
|
|
loadLineEntity.setFuel(carsLoadLineDTO.getFuel()); |
|
|
|
|
loadLineEntity.setTollFee(carsLoadLineDTO.getTollFee()); |
|
|
|
|
String s = compareLineFee(carsLoadLineDTO, loadLineEntity); |
|
|
|
|
if(StringUtil.isNotBlank(s)){ |
|
|
|
|
str = str + loadLineEntity.getNodeName()+":"+s; |
|
|
|
|
} |
|
|
|
|
trunklineCarsLoadLineService.updateById(loadLineEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(str)){ |
|
|
|
|
TrunklineCarsLoadFinanceEntity carsLoadFinanceEntity = new TrunklineCarsLoadFinanceEntity(); |
|
|
|
|
carsLoadFinanceEntity.setLoadId(loadId); |
|
|
|
|
carsLoadFinanceEntity.setWarehouseId(warehouseId); |
|
|
|
|
carsLoadFinanceEntity.setWarehouseName(warehouseName); |
|
|
|
|
carsLoadFinanceEntity.setCreateUserName(AuthUtil.getNickName()); |
|
|
|
|
carsLoadFinanceEntity.setContent(str); |
|
|
|
|
try{ |
|
|
|
|
carsLoadFinanceService.save(carsLoadFinanceEntity); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("#############updateLoadFeeByNodeId: 保存财务记录失败"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success("修改成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String compareLineFee(TrunklineCarsLoadLineDTO carsLoadLineDTO, TrunklineCarsLoadLineEntity loadLineEntity) { |
|
|
|
|
String result = ""; |
|
|
|
|
BigDecimal oldNowTransportCost = loadLineEntity.getNowTransportCost(); |
|
|
|
|
BigDecimal nowTransportCost = carsLoadLineDTO.getNowTransportCost(); |
|
|
|
|
if(oldNowTransportCost.compareTo(nowTransportCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【现付运输费】"+nowTransportCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【现付运输费】"+nowTransportCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldOilCost = loadLineEntity.getOilCost(); |
|
|
|
|
BigDecimal oilCost = carsLoadLineDTO.getOilCost(); |
|
|
|
|
if(oldOilCost.compareTo(oilCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【现付油卡费】"+oilCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【现付油卡费】"+oilCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldBackTransportCost = loadLineEntity.getBackTransportCost(); |
|
|
|
|
BigDecimal backTransportCost = carsLoadLineDTO.getBackTransportCost(); |
|
|
|
|
if(oldBackTransportCost.compareTo(backTransportCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【回付运输费】"+backTransportCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【回付运输费】"+backTransportCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldReachTransportCost = loadLineEntity.getReachTransportCost(); |
|
|
|
|
BigDecimal reachTransportCost = carsLoadLineDTO.getReachTransportCost(); |
|
|
|
|
if(oldReachTransportCost.compareTo(reachTransportCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【到付运输费】"+reachTransportCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【到付运输费】"+reachTransportCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldWholeCarInfoCost = loadLineEntity.getWholeCarInfoCost(); |
|
|
|
|
BigDecimal wholeCarInfoCost = carsLoadLineDTO.getWholeCarInfoCost(); |
|
|
|
|
if(oldWholeCarInfoCost.compareTo(wholeCarInfoCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【整车信息费】"+wholeCarInfoCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【整车信息费】"+wholeCarInfoCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldWholeCarInsuranceCost = loadLineEntity.getWholeCarInsuranceCost(); |
|
|
|
|
BigDecimal wholeCarInsuranceCost = carsLoadLineDTO.getWholeCarInsuranceCost(); |
|
|
|
|
if(oldWholeCarInsuranceCost.compareTo(wholeCarInsuranceCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【整车保险费】"+wholeCarInsuranceCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【整车保险费】"+wholeCarInsuranceCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldWholeCarGroundCost = loadLineEntity.getWholeCarGroundCost(); |
|
|
|
|
BigDecimal wholeCarGroundCost = carsLoadLineDTO.getWholeCarGroundCost(); |
|
|
|
|
if(oldWholeCarGroundCost.compareTo(wholeCarGroundCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【整车落地费】"+wholeCarGroundCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【整车落地费】"+wholeCarGroundCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldHairWholeCost = loadLineEntity.getHairWholeCost(); |
|
|
|
|
BigDecimal hairWholeCost = carsLoadLineDTO.getHairWholeCost(); |
|
|
|
|
if(oldHairWholeCost.compareTo(hairWholeCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【发站装车费】"+hairWholeCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【发站装车费】"+hairWholeCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldHairWholeOtherCost = loadLineEntity.getHairWholeOtherCost(); |
|
|
|
|
BigDecimal hairWholeOtherCost = carsLoadLineDTO.getHairWholeOtherCost(); |
|
|
|
|
if(oldHairWholeOtherCost.compareTo(hairWholeOtherCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【发站其他费】"+hairWholeOtherCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【发站其他费】"+hairWholeOtherCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldUnloadCost = loadLineEntity.getUnloadCost(); |
|
|
|
|
BigDecimal unloadCost = carsLoadLineDTO.getUnloadCost(); |
|
|
|
|
if(oldUnloadCost.compareTo(unloadCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【到站卸车费】"+unloadCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【到站卸车费】"+unloadCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldUnloadOtherCost = loadLineEntity.getUnloadOtherCost(); |
|
|
|
|
BigDecimal unloadOtherCost = carsLoadLineDTO.getUnloadOtherCost(); |
|
|
|
|
if(oldUnloadOtherCost.compareTo(unloadOtherCost) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【到站其他费】"+unloadOtherCost; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【到站其他费】"+unloadOtherCost; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldFuel = loadLineEntity.getFuel(); |
|
|
|
|
BigDecimal fuel = carsLoadLineDTO.getFuel(); |
|
|
|
|
if(oldFuel.compareTo(fuel) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【油费】"+fuel; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【油费】"+fuel; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal oldTollFee = loadLineEntity.getTollFee(); |
|
|
|
|
BigDecimal tollFee = carsLoadLineDTO.getTollFee(); |
|
|
|
|
if(oldTollFee.compareTo(tollFee) != 0){ |
|
|
|
|
if(StringUtil.isBlank(result)){ |
|
|
|
|
result = "【路桥费】"+tollFee; |
|
|
|
|
}else{ |
|
|
|
|
result = result+",【路桥费】"+tollFee; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findCarsLoadingOrderDetail(Long loadId, String orderCode, Long warehouseId) { |
|
|
|
|
|
|
|
|
@ -3426,6 +3624,56 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R signLoadScanByIds(List<Long> loadScanIds) { |
|
|
|
|
trunklineCarsLoadScanService.updateScanStatus(loadScanIds,"3"); |
|
|
|
|
return R.success("签收成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findCarsLoadLogs(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
|
|
|
|
|
Long loadId = loadCarsDTO.getLoadId(); |
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineCarsLoadLogEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("load_id",loadId) |
|
|
|
|
.orderByAsc("create_time"); |
|
|
|
|
List<TrunklineCarsLoadLogEntity> list = trunklineCarsLoadLogService.list(queryWrapper); |
|
|
|
|
return R.data(list); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R addContractByLoadId(Long loadId, String url) { |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadContractEntity carsLoadContractEntity = new TrunklineCarsLoadContractEntity(); |
|
|
|
|
carsLoadContractEntity.setLoadId(loadId); |
|
|
|
|
carsLoadContractEntity.setUrl(url); |
|
|
|
|
carsLoadContractEntity.setCreateUserName(AuthUtil.getNickName()); |
|
|
|
|
carsLoadContractService.save(carsLoadContractEntity); |
|
|
|
|
|
|
|
|
|
return R.success("添加合同成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findContractList(Long loadId) { |
|
|
|
|
QueryWrapper<TrunklineCarsLoadContractEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("load_id",loadId) |
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
List<TrunklineCarsLoadContractEntity> list = carsLoadContractService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
return R.data(list); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findFinanceList(Long loadId) { |
|
|
|
|
QueryWrapper<TrunklineCarsLoadFinanceEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("load_id",loadId) |
|
|
|
|
.eq("is_deleted",0); |
|
|
|
|
List<TrunklineCarsLoadFinanceEntity> list = carsLoadFinanceService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
return R.data(list); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R loadingTrayInfo(LoadCarsDTO loadCarsDTO) { |
|
|
|
|
log.info("##############loadingTrayInfo: 查询托盘的货物信息"); |
|
|
|
|