|
|
|
@ -32,6 +32,7 @@ import com.logpm.basicdata.entity.BasicdataPriceCategoryWarehouseEntity;
|
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceFullVehicleEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceGeneralEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceRouteEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceTemplateEntity; |
|
|
|
|
import com.logpm.basicdata.enums.CostTypeEnums; |
|
|
|
|
import com.logpm.basicdata.enums.DispatchPricingTypeEnums; |
|
|
|
@ -48,17 +49,20 @@ import com.logpm.basicdata.service.IBasicdataPriceCategoryDispatchService;
|
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceCategoryWarehouseService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceFullVehicleService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceGeneralService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceRouteService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataPriceTemplateService; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdatPriceApiVO; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataPriceBasicUpdateVO; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataPriceFullVehicleVO; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataPricePageVO; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataPriceVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceBasicVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceClientVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchAdditionalVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchBasicVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchVO; |
|
|
|
|
import com.logpm.basicdata.vo.PricePickupVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceRouteVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceTrunkLineVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceWarehouseAdditionalVO; |
|
|
|
@ -74,6 +78,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
@ -98,16 +103,17 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
private final IBasicdataPriceCategoryWarehouseService categoryWarehouseService; |
|
|
|
|
private final IBasicdataPriceGeneralService generalService; |
|
|
|
|
|
|
|
|
|
private final IBasicdataPriceRouteService basicdataPriceRouteService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<BasicdataPricePageVO> selectBasicdataPricePage(IPage<BasicdataPricePageVO> page, BasicdataPriceVO basicdataPrice) { |
|
|
|
|
public IPage<BasicdataPricePageVO> selectBasicdataPricePage(IPage<BasicdataPricePageVO> page, BasicdataPricePageVO basicdataPrice) { |
|
|
|
|
List<BasicdataPricePageVO> basicdataPriceVOS = baseMapper.selectBasicdataPricePage(page, basicdataPrice); |
|
|
|
|
if (CollUtil.isNotEmpty(basicdataPriceVOS)) { |
|
|
|
|
for (BasicdataPricePageVO basicdataPriceVO : basicdataPriceVOS) { |
|
|
|
|
// 维护状态
|
|
|
|
|
if (StrUtil.isNotEmpty(basicdataPriceVO.getExpiryTime())) { |
|
|
|
|
if (ObjectUtil.isNotEmpty(basicdataPriceVO.getExpiryTime())) { |
|
|
|
|
DateTime now = DateUtil.date(); |
|
|
|
|
DateTime dateTime = DateUtil.parseDate(basicdataPriceVO.getExpiryTime()); |
|
|
|
|
if (now.isAfter(dateTime)) { |
|
|
|
|
if (now.isAfter(basicdataPriceVO.getExpiryTime())) { |
|
|
|
|
// 已到期
|
|
|
|
|
basicdataPriceVO.setMaintenanceStatus("已过期"); |
|
|
|
|
} |
|
|
|
@ -165,6 +171,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
categoryBasicService.removeByPriceId(id); |
|
|
|
|
categoryWarehouseService.removeByPriceId(id); |
|
|
|
|
generalService.removeByPriceId(id); |
|
|
|
|
basicdataPriceRouteService.removeByPriceId(id); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -193,19 +200,24 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
BasicdataPriceEntity priceEntity1 = new BasicdataPriceEntity(); |
|
|
|
|
priceEntity1.setId(priceEntity.getId()); |
|
|
|
|
priceEntity1.setMaintenanceStatus(2); |
|
|
|
|
// 删除老数据,构建新数据
|
|
|
|
|
switch (serviceTypeEnum) { |
|
|
|
|
case PICK_UP: |
|
|
|
|
deleteByPriceIdAndServiceType(priceId, ServiceTypeEnums.PICK_UP.getCode()); |
|
|
|
|
buildPickup(vo.getPickup(), priceId, templateEntity); |
|
|
|
|
break; |
|
|
|
|
case TRUNK_LINE: |
|
|
|
|
deleteByPriceIdAndServiceType(priceId, ServiceTypeEnums.TRUNK_LINE.getCode()); |
|
|
|
|
buildTrunkLine(vo.getTrunkLine(), priceId, templateEntity); |
|
|
|
|
break; |
|
|
|
|
case INSTALL: |
|
|
|
|
break; |
|
|
|
|
case WAREHOUSE: |
|
|
|
|
deleteByPriceIdAndServiceType(priceId, ServiceTypeEnums.WAREHOUSE.getCode()); |
|
|
|
|
buildWarehouse(vo.getWarehouse(), priceId, templateEntity); |
|
|
|
|
break; |
|
|
|
|
case DISPATCH: |
|
|
|
|
deleteByPriceIdAndServiceType(priceId, ServiceTypeEnums.DISPATCH.getCode()); |
|
|
|
|
buildDispatchCategory(vo.getDispatch(), priceEntity1, templateEntity); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
@ -234,8 +246,133 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
|
|
|
|
|
String serviceType = templateEntity.getServiceType(); |
|
|
|
|
|
|
|
|
|
// 获取整车数据
|
|
|
|
|
Map<Integer, List<BasicdataPriceFullVehicleEntity>> fullMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryBasicEntity>> basicMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryWarehouseEntity>> warehouseMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceGeneralEntity>> generalMap = new HashMap<>(); |
|
|
|
|
// 初始化数据
|
|
|
|
|
buildDetailMap(priceEntity, fullMap, basicMap, warehouseMap, dispatchMap, generalMap); |
|
|
|
|
|
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.PICK_UP.getCode().toString())) { |
|
|
|
|
vo.setPickup(initPickUp(priceEntity, templateEntity, fullMap.get(ServiceTypeEnums.PICK_UP.getCode()), basicMap.get(ServiceTypeEnums.PICK_UP.getCode()), generalMap.get(ServiceTypeEnums.PICK_UP.getCode()))); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.TRUNK_LINE.getCode().toString())) { |
|
|
|
|
vo.setTrunkLine(initTrunkLine(priceEntity, templateEntity, fullMap.get(ServiceTypeEnums.TRUNK_LINE.getCode()), basicMap.get(ServiceTypeEnums.TRUNK_LINE.getCode()), generalMap.get(ServiceTypeEnums.TRUNK_LINE.getCode()))); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.WAREHOUSE.getCode().toString())) { |
|
|
|
|
vo.setWarehouse(initWarehouse(priceEntity, templateEntity, warehouseMap)); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.DISPATCH.getCode().toString())) { |
|
|
|
|
vo.setDispatch(initDispatch(priceEntity, templateEntity, fullMap.get(ServiceTypeEnums.DISPATCH.getCode()), dispatchMap, generalMap.get(ServiceTypeEnums.DISPATCH.getCode()), generalMap.get(GeneralServiceTypeEnums.DISPATCH_LEAVE_BEHIND.getCode()))); |
|
|
|
|
} |
|
|
|
|
return vo; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public PriceClientVO price(BasicdatPriceApiVO param) { |
|
|
|
|
PriceClientVO priceClientVO = new PriceClientVO(); |
|
|
|
|
// 根据客户信息查找价格
|
|
|
|
|
String clientId = param.getClientId(); |
|
|
|
|
String brandId = param.getBrandId(); |
|
|
|
|
BasicdataPriceEntity priceEntity = null; |
|
|
|
|
List<BasicdataPriceEntity> priceEntities = this.list(Wrappers.<BasicdataPriceEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceEntity::getClientId, clientId) |
|
|
|
|
.eq(BasicdataPriceEntity::getBrandId, brandId) |
|
|
|
|
.ge(BasicdataPriceEntity::getExpiryTime, new Date()) |
|
|
|
|
); |
|
|
|
|
if (CollUtil.isNotEmpty(priceEntities)) { |
|
|
|
|
priceEntity = priceEntities.get(0); |
|
|
|
|
} |
|
|
|
|
if (ObjectUtil.isEmpty(priceEntity)) { |
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
|
// 根据价格获取模板
|
|
|
|
|
Long templateId = priceEntity.getTemplateId(); |
|
|
|
|
BasicdataPriceTemplateEntity templateEntity = null; |
|
|
|
|
if (ObjectUtil.isNotEmpty(templateId)) { |
|
|
|
|
templateEntity = templateService.getById(templateId); |
|
|
|
|
} |
|
|
|
|
if (ObjectUtil.isEmpty(templateEntity)) { |
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
|
Map<Integer, List<BasicdataPriceFullVehicleEntity>> fullMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryBasicEntity>> basicMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryWarehouseEntity>> warehouseMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap = new HashMap<>(); |
|
|
|
|
Map<Integer, List<BasicdataPriceGeneralEntity>> generalMap = new HashMap<>(); |
|
|
|
|
buildDetailMap(priceEntity, fullMap, basicMap, warehouseMap, dispatchMap, generalMap); |
|
|
|
|
String serviceType = templateEntity.getServiceType(); |
|
|
|
|
// 提货费
|
|
|
|
|
if (StrUtil.contains(serviceType, ServiceTypeEnums.PICK_UP.getCode().toString())) { |
|
|
|
|
// 提货不按区域计费
|
|
|
|
|
Integer pickupIsUnifyAreaBill = templateEntity.getPickupIsUnifyAreaBill(); |
|
|
|
|
if (ObjectUtil.equal(pickupIsUnifyAreaBill, BooleanZeroOneEnums.NO.getCode())) { |
|
|
|
|
priceClientVO.setPickup(initPickUp(priceEntity, templateEntity, fullMap.get(1), basicMap.get(1), generalMap.get(1))); |
|
|
|
|
} else { |
|
|
|
|
// 按区域计费,查询路径,返回价格
|
|
|
|
|
List<BasicdataPriceRouteEntity> routeEntities = basicdataPriceRouteService.list(Wrappers.<BasicdataPriceRouteEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getPriceId, priceEntity.getId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getSendOrgId, param.getSendOrgId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getStartCountyId, param.getStartAreaId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getEndCountyId, param.getEndAreaId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getServiceType, ServiceTypeEnums.PICK_UP.getCode()) |
|
|
|
|
); |
|
|
|
|
if (CollUtil.isNotEmpty(routeEntities)) { |
|
|
|
|
PriceRouteVO detail = basicdataPriceRouteService.detail(routeEntities.get(0).getId()); |
|
|
|
|
PricePickupVO pickup = new PricePickupVO(); |
|
|
|
|
pickup.setFullVehicle(detail.getFullVehicle()); |
|
|
|
|
pickup.setPieceCategory(detail.getPieceCategory()); |
|
|
|
|
pickup.setCubeCategory(detail.getCubeCategory()); |
|
|
|
|
pickup.setWeightCategory(detail.getWeightCategory()); |
|
|
|
|
pickup.setMinCost(detail.getMinCost()); |
|
|
|
|
pickup.setAdditionalCost(detail.getAdditionalCost()); |
|
|
|
|
priceClientVO.setPickup(pickup); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 干线费
|
|
|
|
|
if (StrUtil.contains(serviceType, ServiceTypeEnums.TRUNK_LINE.getCode().toString())) { |
|
|
|
|
Integer trunklineIsUnifyAreaBill = templateEntity.getTrunklineIsUnifyAreaBill(); |
|
|
|
|
// 干线不按区域计费
|
|
|
|
|
if (ObjectUtil.equal(trunklineIsUnifyAreaBill, BooleanZeroOneEnums.NO.getCode())) { |
|
|
|
|
priceClientVO.setTrunkLine(initTrunkLine(priceEntity, templateEntity, fullMap.get(2), basicMap.get(3), generalMap.get(3))); |
|
|
|
|
} else { |
|
|
|
|
// 按区域计费,查询路径,返回价格
|
|
|
|
|
List<BasicdataPriceRouteEntity> routeEntities = basicdataPriceRouteService.list(Wrappers.<BasicdataPriceRouteEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getPriceId, priceEntity.getId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getSendOrgId, param.getSendOrgId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getStartCountyId, param.getStartAreaId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getEndCountyId, param.getEndAreaId()) |
|
|
|
|
.eq(BasicdataPriceRouteEntity::getServiceType, ServiceTypeEnums.TRUNK_LINE.getCode()) |
|
|
|
|
); |
|
|
|
|
if (CollUtil.isNotEmpty(routeEntities)) { |
|
|
|
|
PriceRouteVO detail = basicdataPriceRouteService.detail(routeEntities.get(0).getId()); |
|
|
|
|
PriceTrunkLineVO trunkLineVO = new PriceTrunkLineVO(); |
|
|
|
|
trunkLineVO.setFullVehicle(detail.getFullVehicle()); |
|
|
|
|
trunkLineVO.setPieceCategory(detail.getPieceCategory()); |
|
|
|
|
trunkLineVO.setCubeCategory(detail.getCubeCategory()); |
|
|
|
|
trunkLineVO.setWeightCategory(detail.getWeightCategory()); |
|
|
|
|
trunkLineVO.setMinCost(detail.getMinCost()); |
|
|
|
|
trunkLineVO.setAdditionalCost(detail.getAdditionalCost()); |
|
|
|
|
priceClientVO.setTrunkLine(trunkLineVO); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 仓储价格
|
|
|
|
|
if (StrUtil.contains(serviceType, ServiceTypeEnums.WAREHOUSE.getCode().toString())) { |
|
|
|
|
priceClientVO.setWarehouse(initWarehouse(priceEntity, templateEntity, warehouseMap)); |
|
|
|
|
} |
|
|
|
|
// 配送费
|
|
|
|
|
if (StrUtil.contains(serviceType, ServiceTypeEnums.DISPATCH.getCode().toString())) { |
|
|
|
|
priceClientVO.setDispatch(initDispatch(priceEntity, templateEntity, fullMap.get(3), dispatchMap, generalMap.get(5), generalMap.get(6))); |
|
|
|
|
} |
|
|
|
|
priceClientVO.setTemplate(templateEntity); |
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void buildDetailMap(BasicdataPriceEntity priceEntity, Map<Integer, List<BasicdataPriceFullVehicleEntity>> fullMap, Map<Integer, List<BasicdataPriceCategoryBasicEntity>> basicMap, Map<Integer, List<BasicdataPriceCategoryWarehouseEntity>> warehouseMap, Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap, Map<Integer, List<BasicdataPriceGeneralEntity>> generalMap) { |
|
|
|
|
// 获取整车数据
|
|
|
|
|
List<BasicdataPriceFullVehicleEntity> list = fullVehicleService.list(Wrappers.<BasicdataPriceFullVehicleEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceFullVehicleEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
@ -251,7 +388,6 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 获取品类数据
|
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryBasicEntity>> basicMap = new HashMap<>(); |
|
|
|
|
List<BasicdataPriceCategoryBasicEntity> basicList = categoryBasicService.list(Wrappers.<BasicdataPriceCategoryBasicEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceCategoryBasicEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(basicList)) { |
|
|
|
@ -266,7 +402,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
basicMap.put(type, collect); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryWarehouseEntity>> warehouseMap = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
List<BasicdataPriceCategoryWarehouseEntity> warehouseList = categoryWarehouseService.list(Wrappers.<BasicdataPriceCategoryWarehouseEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceCategoryWarehouseEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(warehouseList)) { |
|
|
|
@ -281,7 +417,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
warehouseMap.put(type, collect); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> dispatchList = categoryDispatchService.list(Wrappers.<BasicdataPriceCategoryDispatchEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceCategoryDispatchEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(dispatchList)) { |
|
|
|
@ -297,7 +433,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 获取一般费用
|
|
|
|
|
Map<Integer, List<BasicdataPriceGeneralEntity>> generalMap = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
List<BasicdataPriceGeneralEntity> generalList = generalService.list(Wrappers.<BasicdataPriceGeneralEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceGeneralEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(generalList)) { |
|
|
|
@ -312,19 +448,6 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
generalMap.put(type, collect); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.PICK_UP.getCode().toString())) { |
|
|
|
|
vo.setPickup(initPickUp(priceEntity, templateEntity, fullMap.get(1), basicMap.get(1), generalMap.get(1))); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.TRUNK_LINE.getCode().toString())) { |
|
|
|
|
vo.setTrunkLine(initTrunkLine(priceEntity, templateEntity, fullMap.get(2), basicMap.get(3), generalMap.get(3))); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.WAREHOUSE.getCode().toString())) { |
|
|
|
|
vo.setWarehouse(initWarehouse(priceEntity, templateEntity, warehouseMap)); |
|
|
|
|
} |
|
|
|
|
if (serviceType.contains(ServiceTypeEnums.DISPATCH.getCode().toString())) { |
|
|
|
|
vo.setDispatch(initDispatch(priceEntity, templateEntity, fullMap.get(3), dispatchMap, generalMap.get(5), generalMap.get(6))); |
|
|
|
|
} |
|
|
|
|
return vo; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private PriceDispatchVO initDispatch(BasicdataPriceEntity priceEntity, BasicdataPriceTemplateEntity templateEntity, List<BasicdataPriceFullVehicleEntity> fullVehicleEntities, Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap, List<BasicdataPriceGeneralEntity> generalEntities, List<BasicdataPriceGeneralEntity> generalEntities1) { |
|
|
|
@ -472,7 +595,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
List<BasicdataPriceCategoryWarehouseEntity> warehouseEntities = warehouseMap.get(1); |
|
|
|
|
if (CollUtil.isNotEmpty(warehouseEntities)) { |
|
|
|
|
warehouseEntities.forEach(item -> { |
|
|
|
|
Integer type = item.getCostType(); |
|
|
|
|
Integer type = item.getType(); |
|
|
|
|
List<BasicdataPriceCategoryWarehouseEntity> collect = categoryBasicMap.get(type); |
|
|
|
|
if (ObjectUtil.isEmpty(collect)) { |
|
|
|
|
collect = new ArrayList<>(); |
|
|
|
@ -612,12 +735,14 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
// fullVehicleEntities转为BasicdataPriceFullVehicleVO
|
|
|
|
|
String pickupPricingType = templateEntity.getPickupPricingType(); |
|
|
|
|
if (pickupPricingType.contains(PickupPricingTypeEnums.COMPLETE_VEHICLE.getCode().toString())) { |
|
|
|
|
List<BasicdataPriceFullVehicleVO> fullVehicleVOS = fullVehicleEntities.stream().map(item -> { |
|
|
|
|
BasicdataPriceFullVehicleVO basicdataPriceFullVehicleVO = new BasicdataPriceFullVehicleVO(); |
|
|
|
|
BeanUtil.copyProperties(item, basicdataPriceFullVehicleVO); |
|
|
|
|
return basicdataPriceFullVehicleVO; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
pricePickupVO.setFullVehicle(fullVehicleVOS); |
|
|
|
|
if(CollUtil.isNotEmpty(fullVehicleEntities)){ |
|
|
|
|
List<BasicdataPriceFullVehicleVO> fullVehicleVOS = fullVehicleEntities.stream().map(item -> { |
|
|
|
|
BasicdataPriceFullVehicleVO basicdataPriceFullVehicleVO = new BasicdataPriceFullVehicleVO(); |
|
|
|
|
BeanUtil.copyProperties(item, basicdataPriceFullVehicleVO); |
|
|
|
|
return basicdataPriceFullVehicleVO; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
pricePickupVO.setFullVehicle(fullVehicleVOS); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 按件
|
|
|
|
|
if (pickupPricingType.contains(PickupPricingTypeEnums.PIECE.getCode().toString())) { |
|
|
|
@ -697,7 +822,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
buildFullVehicle(priceEntity.getId(), fullVehicleEntities, fullVehicle, FullVehicleTypeEnums.DISPATCH.getCode()); |
|
|
|
|
}); |
|
|
|
|
if (CollUtil.isNotEmpty(fullVehicleEntities)) { |
|
|
|
|
fullVehicleService.saveOrUpdateBatch(fullVehicleEntities); |
|
|
|
|
fullVehicleService.saveBatch(fullVehicleEntities); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 按件
|
|
|
|
@ -768,14 +893,11 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
categoryBasicEntity.setHandlingPrice(category.getHandlingPrice()); |
|
|
|
|
categoryBasicEntity.setRelocationPrice(category.getRelocationPrice()); |
|
|
|
|
categoryBasicEntity.setUpstairsDeliveryPrice(category.getUpstairsDeliveryPrice()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(category.getId())) { |
|
|
|
|
categoryBasicEntity.setId(category.getId()); |
|
|
|
|
} |
|
|
|
|
categoryList.add(categoryBasicEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isNotEmpty(categoryList)) { |
|
|
|
|
categoryDispatchService.saveOrUpdateBatch(categoryList); |
|
|
|
|
categoryDispatchService.saveBatch(categoryList); |
|
|
|
|
} |
|
|
|
|
// 一般费用
|
|
|
|
|
if (ObjectUtil.equal(templateEntity.getDispatchIsMinCost(), BooleanZeroOneEnums.YES.getCode()) && ObjectUtil.isNotEmpty(dispatch.getMinCost())) { |
|
|
|
@ -808,9 +930,6 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
categoryBasicEntity.setServiceType(1); |
|
|
|
|
categoryBasicEntity.setPrice(category.getPrice()); |
|
|
|
|
categoryBasicEntity.setLeaveBehindPrice(category.getLeaveBehindPrice()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(category.getId())) { |
|
|
|
|
categoryBasicEntity.setId(category.getId()); |
|
|
|
|
} |
|
|
|
|
categoryList.add(categoryBasicEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -834,9 +953,6 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
categoryBasicEntity.setBetweenThirtySixtyPrice(category.getBetweenThirtySixtyPrice()); |
|
|
|
|
categoryBasicEntity.setBeyondSixtyPrice(category.getBeyondSixtyPrice()); |
|
|
|
|
categoryBasicEntity.setMaximumPrice(category.getMaximumPrice()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(category.getId())) { |
|
|
|
|
categoryBasicEntity.setId(category.getId()); |
|
|
|
|
} |
|
|
|
|
categoryList.add(categoryBasicEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -853,14 +969,11 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
categoryBasicEntity.setWarehouseSortPrice(category.getWarehouseSortPrice()); |
|
|
|
|
categoryBasicEntity.setWarehouseManagementPrice(category.getWarehouseManagementPrice()); |
|
|
|
|
categoryBasicEntity.setOperatePrice(category.getOperatePrice()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(category.getId())) { |
|
|
|
|
categoryBasicEntity.setId(category.getId()); |
|
|
|
|
} |
|
|
|
|
categoryList.add(categoryBasicEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isNotEmpty(categoryList)) { |
|
|
|
|
categoryWarehouseService.saveOrUpdateBatch(categoryList); |
|
|
|
|
categoryWarehouseService.saveBatch(categoryList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -875,7 +988,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
buildFullVehicle(priceId, fullVehicleEntities, fullVehicle, FullVehicleTypeEnums.TRUNK_LINE.getCode()); |
|
|
|
|
}); |
|
|
|
|
if (CollUtil.isNotEmpty(fullVehicleEntities)) { |
|
|
|
|
fullVehicleService.saveOrUpdateBatch(fullVehicleEntities); |
|
|
|
|
fullVehicleService.saveBatch(fullVehicleEntities); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
List<BasicdataPriceCategoryBasicEntity> categoryEntities = new ArrayList<>(); |
|
|
|
@ -883,7 +996,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
if (trunkLinePricingType.contains(TrunkLinePricingTypeEnums.PIECE.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(trunkLine.getPieceCategory())) { |
|
|
|
|
trunkLine.getPieceCategory().forEach(pieceCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, pieceCategory, TrunkLinePricingTypeEnums.PIECE.getCode(), 3); |
|
|
|
|
buildCategory(priceId, categoryEntities, pieceCategory, TrunkLinePricingTypeEnums.PIECE.getCode(), ServiceTypeEnums.TRUNK_LINE.getCode()); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -891,18 +1004,18 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
if (trunkLinePricingType.contains(TrunkLinePricingTypeEnums.CUBE.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(trunkLine.getCubeCategory())) { |
|
|
|
|
trunkLine.getCubeCategory().forEach(cubeCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, TrunkLinePricingTypeEnums.CUBE.getCode(), 3); |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, TrunkLinePricingTypeEnums.CUBE.getCode(), ServiceTypeEnums.TRUNK_LINE.getCode()); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 按重量品类计费
|
|
|
|
|
if (trunkLinePricingType.contains(TrunkLinePricingTypeEnums.WEIGHT.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(trunkLine.getWeightCategory())) { |
|
|
|
|
trunkLine.getWeightCategory().forEach(cubeCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, TrunkLinePricingTypeEnums.WEIGHT.getCode(), 3); |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, TrunkLinePricingTypeEnums.WEIGHT.getCode(), ServiceTypeEnums.TRUNK_LINE.getCode()); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isNotEmpty(categoryEntities)) { |
|
|
|
|
categoryBasicService.saveOrUpdateBatch(categoryEntities); |
|
|
|
|
categoryBasicService.saveBatch(categoryEntities); |
|
|
|
|
} |
|
|
|
|
if (ObjectUtil.equal(templateEntity.getTrunklineIsMinCost(), BooleanZeroOneEnums.YES.getCode()) && ObjectUtil.isNotEmpty(trunkLine.getMinCost())) { |
|
|
|
|
List<BasicdataPriceGeneralEntity> priceGeneralEntities = new ArrayList<>(); |
|
|
|
@ -947,7 +1060,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
buildFullVehicle(priceId, fullVehicleEntities, fullVehicle, FullVehicleTypeEnums.PICK_UP.getCode()); |
|
|
|
|
}); |
|
|
|
|
if (CollUtil.isNotEmpty(fullVehicleEntities)) { |
|
|
|
|
fullVehicleService.saveOrUpdateBatch(fullVehicleEntities); |
|
|
|
|
fullVehicleService.saveBatch(fullVehicleEntities); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
List<BasicdataPriceCategoryBasicEntity> categoryEntities = new ArrayList<>(); |
|
|
|
@ -955,7 +1068,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
if (pickupPricingType.contains(PickupPricingTypeEnums.PIECE.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(pickup.getPieceCategory())) { |
|
|
|
|
pickup.getPieceCategory().forEach(pieceCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, pieceCategory, PickupPricingTypeEnums.PIECE.getCode(), 1); |
|
|
|
|
buildCategory(priceId, categoryEntities, pieceCategory, PickupPricingTypeEnums.PIECE.getCode(), ServiceTypeEnums.PICK_UP.getCode()); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -963,25 +1076,47 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
if (pickupPricingType.contains(PickupPricingTypeEnums.CUBE.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(pickup.getCubeCategory())) { |
|
|
|
|
pickup.getCubeCategory().forEach(cubeCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, PickupPricingTypeEnums.CUBE.getCode(), 1); |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, PickupPricingTypeEnums.CUBE.getCode(), ServiceTypeEnums.PICK_UP.getCode()); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 按重量品类计费
|
|
|
|
|
if (pickupPricingType.contains(PickupPricingTypeEnums.WEIGHT.getCode().toString()) |
|
|
|
|
&& CollUtil.isNotEmpty(pickup.getWeightCategory())) { |
|
|
|
|
pickup.getWeightCategory().forEach(cubeCategory -> { |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, PickupPricingTypeEnums.WEIGHT.getCode(), 1); |
|
|
|
|
buildCategory(priceId, categoryEntities, cubeCategory, PickupPricingTypeEnums.WEIGHT.getCode(), ServiceTypeEnums.PICK_UP.getCode()); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isNotEmpty(categoryEntities)) { |
|
|
|
|
categoryBasicService.saveOrUpdateBatch(categoryEntities); |
|
|
|
|
categoryBasicService.saveBatch(categoryEntities); |
|
|
|
|
} |
|
|
|
|
// 最低计费
|
|
|
|
|
if (ObjectUtil.equal(templateEntity.getPickupIsMinCost(), BooleanZeroOneEnums.YES.getCode()) |
|
|
|
|
&& ObjectUtil.isNotEmpty(pickup.getMinCost())) { |
|
|
|
|
List<BasicdataPriceGeneralEntity> priceGeneralEntities = new ArrayList<>(); |
|
|
|
|
biuldGeneral(priceId, GeneralServiceTypeEnums.PICK_UP.getCode(), pickup.getMinCost(), pickup.getAdditionalCost(), priceGeneralEntities); |
|
|
|
|
generalService.saveOrUpdateBatch(priceGeneralEntities); |
|
|
|
|
generalService.saveBatch(priceGeneralEntities); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void deleteByPriceIdAndServiceType(Long boId, Integer serviceType) { |
|
|
|
|
// 删除整车数据
|
|
|
|
|
if (!ObjectUtil.equal(serviceType, ServiceTypeEnums.WAREHOUSE.getCode())) { |
|
|
|
|
fullVehicleService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} |
|
|
|
|
// 删除品类数据
|
|
|
|
|
if (ObjectUtil.equal(serviceType, ServiceTypeEnums.PICK_UP.getCode())) { |
|
|
|
|
categoryBasicService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} else if (ObjectUtil.equal(serviceType, ServiceTypeEnums.TRUNK_LINE.getCode())) { |
|
|
|
|
categoryBasicService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} else if (ObjectUtil.equal(serviceType, ServiceTypeEnums.WAREHOUSE.getCode())) { |
|
|
|
|
categoryWarehouseService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} else if (ObjectUtil.equal(serviceType, ServiceTypeEnums.DISPATCH.getCode())) { |
|
|
|
|
categoryDispatchService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} |
|
|
|
|
// 删除一般数据
|
|
|
|
|
if (!ObjectUtil.equal(serviceType, ServiceTypeEnums.WAREHOUSE.getCode())) { |
|
|
|
|
generalService.removeByPriceIdAndServiceType(boId, serviceType); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -990,25 +1125,16 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
basicdataPriceFullVehicleEntity.setPrice(fullVehicle.getPrice()); |
|
|
|
|
basicdataPriceFullVehicleEntity.setVehicleType(fullVehicle.getVehicleType()); |
|
|
|
|
basicdataPriceFullVehicleEntity.setPriceId(priceId); |
|
|
|
|
if (ObjectUtil.isEmpty(fullVehicle.getId())) { |
|
|
|
|
basicdataPriceFullVehicleEntity.setBoId(priceId); |
|
|
|
|
basicdataPriceFullVehicleEntity.setType(type); |
|
|
|
|
} else { |
|
|
|
|
basicdataPriceFullVehicleEntity.setId(fullVehicle.getId()); |
|
|
|
|
} |
|
|
|
|
basicdataPriceFullVehicleEntity.setBoId(priceId); |
|
|
|
|
basicdataPriceFullVehicleEntity.setType(type); |
|
|
|
|
fullVehicleEntities.add(basicdataPriceFullVehicleEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void buildCategory(Long priceId, List<BasicdataPriceCategoryBasicEntity> cubeCategoryEntities, PriceBasicVO cubeCategory, Integer type, Integer serviceType) { |
|
|
|
|
BasicdataPriceCategoryBasicEntity categoryEntity = new BasicdataPriceCategoryBasicEntity(); |
|
|
|
|
Long id = cubeCategory.getId(); |
|
|
|
|
if (ObjectUtil.isEmpty(id)) { |
|
|
|
|
categoryEntity.setBoId(priceId); |
|
|
|
|
categoryEntity.setType(type); |
|
|
|
|
categoryEntity.setServiceType(serviceType); |
|
|
|
|
} else { |
|
|
|
|
categoryEntity.setId(id); |
|
|
|
|
} |
|
|
|
|
categoryEntity.setBoId(priceId); |
|
|
|
|
categoryEntity.setType(type); |
|
|
|
|
categoryEntity.setServiceType(serviceType); |
|
|
|
|
categoryEntity.setPriceId(priceId); |
|
|
|
|
categoryEntity.setPrice(cubeCategory.getPrice()); |
|
|
|
|
categoryEntity.setCategoryId(cubeCategory.getCategoryId()); |
|
|
|
|