|
|
|
@ -80,6 +80,7 @@ import com.logpm.basicdata.vo.BasicdataPriceImportVO;
|
|
|
|
|
import com.logpm.basicdata.vo.BasicdataPricePageVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceBasicVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceClientVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchAddClientVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchAdditionalVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchBasicVO; |
|
|
|
|
import com.logpm.basicdata.vo.PriceDispatchVO; |
|
|
|
@ -92,6 +93,7 @@ import com.logpm.basicdata.vo.PriceWarehouseBasicVO;
|
|
|
|
|
import com.logpm.basicdata.vo.PriceWarehouseVO; |
|
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jetbrains.annotations.Nullable; |
|
|
|
|
import org.springblade.common.enums.BooleanZeroOneEnums; |
|
|
|
|
import org.springblade.common.model.IDict; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
@ -228,6 +230,40 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<PriceDispatchAddClientVO> dispatchAddPrice(BasicdatPriceApiVO param) { |
|
|
|
|
BasicdataPriceEntity priceEntity = getBasicdataPriceEntityByParam(param); |
|
|
|
|
if (ObjectUtil.isEmpty(priceEntity)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
BasicdataPriceTemplateEntity templateEntity = getBasicdataPriceTemplateEntityByPrice(priceEntity); |
|
|
|
|
if (ObjectUtil.isEmpty(templateEntity)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap = new HashMap<>(); |
|
|
|
|
initDispatchMap(priceEntity, dispatchMap); |
|
|
|
|
String serviceType = templateEntity.getServiceType(); |
|
|
|
|
// 配送费
|
|
|
|
|
if (StrUtil.contains(serviceType, ServiceTypeEnums.DISPATCH.getCode().toString())) { |
|
|
|
|
Integer dispatchIsAddFee = templateEntity.getDispatchIsAddFee(); |
|
|
|
|
if (ObjectUtil.equals(dispatchIsAddFee, BooleanZeroOneEnums.YES.getCode())) { |
|
|
|
|
List<PriceDispatchAdditionalVO> priceDispatchAdditionalVOS = buildDispatchAddFee(dispatchMap); |
|
|
|
|
List<PriceDispatchAddClientVO> res = new ArrayList<>(); |
|
|
|
|
for (PriceDispatchAdditionalVO priceDispatchAdditionalVO : priceDispatchAdditionalVOS) { |
|
|
|
|
res.add(PriceDispatchAddClientVO.builder() |
|
|
|
|
.categoryId(priceDispatchAdditionalVO.getCategoryId()) |
|
|
|
|
.sortPrice(priceDispatchAdditionalVO.getSortPrice()) |
|
|
|
|
.handlingPrice(priceDispatchAdditionalVO.getHandlingPrice()) |
|
|
|
|
.relocationPrice(priceDispatchAdditionalVO.getRelocationPrice()) |
|
|
|
|
.upstairsDeliveryPrice(priceDispatchAdditionalVO.getUpstairsDeliveryPrice()) |
|
|
|
|
.dispatchStairsCarryingCharge(priceEntity.getDispatchStairsCarryingCharge()).build()); |
|
|
|
|
} |
|
|
|
|
return res; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public Boolean basicUpdate(BasicdataPriceBasicUpdateVO vo) { |
|
|
|
@ -411,38 +447,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
@Override |
|
|
|
|
public PriceClientVO price(BasicdatPriceApiVO param) { |
|
|
|
|
PriceClientVO priceClientVO = new PriceClientVO(); |
|
|
|
|
// 根据客户信息查找价格
|
|
|
|
|
String clientId = param.getClientId(); |
|
|
|
|
String brandId = param.getBrandId(); |
|
|
|
|
if (!ObjectUtil.isAllNotEmpty(clientId, brandId)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
BasicdataPriceEntity priceEntity = null; |
|
|
|
|
LambdaQueryWrapper<BasicdataPriceEntity> wrapper = Wrappers.<BasicdataPriceEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceEntity::getClientId, clientId) |
|
|
|
|
.eq(BasicdataPriceEntity::getBrandId, brandId); |
|
|
|
|
if (StrUtil.isNotEmpty(param.getTime())) { |
|
|
|
|
wrapper.ge(BasicdataPriceEntity::getExpiryTime, DateUtil.parse(param.getTime(), "yyyy-MM-dd")) |
|
|
|
|
.le(BasicdataPriceEntity::getEffectiveTime, DateUtil.parse(param.getTime(), "yyyy-MM-dd")) |
|
|
|
|
; |
|
|
|
|
} else { |
|
|
|
|
wrapper.ge(BasicdataPriceEntity::getExpiryTime, DateUtil.beginOfDay(new Date())) |
|
|
|
|
.le(BasicdataPriceEntity::getEffectiveTime, DateUtil.beginOfDay(new Date())) |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
List<BasicdataPriceEntity> priceEntities = this.list(wrapper); |
|
|
|
|
if (CollUtil.isNotEmpty(priceEntities)) { |
|
|
|
|
priceEntity = priceEntities.get(0); |
|
|
|
|
} |
|
|
|
|
BasicdataPriceEntity priceEntity = getBasicdataPriceEntityByParam(param); |
|
|
|
|
if (ObjectUtil.isEmpty(priceEntity)) { |
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
|
// 根据价格获取模板
|
|
|
|
|
Long templateId = priceEntity.getTemplateId(); |
|
|
|
|
BasicdataPriceTemplateEntity templateEntity = null; |
|
|
|
|
if (ObjectUtil.isNotEmpty(templateId)) { |
|
|
|
|
templateEntity = templateService.getById(templateId); |
|
|
|
|
} |
|
|
|
|
BasicdataPriceTemplateEntity templateEntity = getBasicdataPriceTemplateEntityByPrice(priceEntity); |
|
|
|
|
if (ObjectUtil.isEmpty(templateEntity)) { |
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
@ -523,6 +533,42 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
return priceClientVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private @Nullable BasicdataPriceTemplateEntity getBasicdataPriceTemplateEntityByPrice(BasicdataPriceEntity priceEntity) { |
|
|
|
|
Long templateId = priceEntity.getTemplateId(); |
|
|
|
|
BasicdataPriceTemplateEntity templateEntity = null; |
|
|
|
|
if (ObjectUtil.isNotEmpty(templateId)) { |
|
|
|
|
templateEntity = templateService.getById(templateId); |
|
|
|
|
} |
|
|
|
|
return templateEntity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private @Nullable BasicdataPriceEntity getBasicdataPriceEntityByParam(BasicdatPriceApiVO param) { |
|
|
|
|
// 根据客户信息查找价格
|
|
|
|
|
String clientId = param.getClientId(); |
|
|
|
|
String brandId = param.getBrandId(); |
|
|
|
|
if (!ObjectUtil.isAllNotEmpty(clientId, brandId)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
BasicdataPriceEntity priceEntity = null; |
|
|
|
|
LambdaQueryWrapper<BasicdataPriceEntity> wrapper = Wrappers.<BasicdataPriceEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceEntity::getClientId, clientId) |
|
|
|
|
.eq(BasicdataPriceEntity::getBrandId, brandId); |
|
|
|
|
if (StrUtil.isNotEmpty(param.getTime())) { |
|
|
|
|
wrapper.ge(BasicdataPriceEntity::getExpiryTime, DateUtil.parse(param.getTime(), "yyyy-MM-dd")) |
|
|
|
|
.le(BasicdataPriceEntity::getEffectiveTime, DateUtil.parse(param.getTime(), "yyyy-MM-dd")) |
|
|
|
|
; |
|
|
|
|
} else { |
|
|
|
|
wrapper.ge(BasicdataPriceEntity::getExpiryTime, DateUtil.beginOfDay(new Date())) |
|
|
|
|
.le(BasicdataPriceEntity::getEffectiveTime, DateUtil.beginOfDay(new Date())) |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
List<BasicdataPriceEntity> priceEntities = this.list(wrapper); |
|
|
|
|
if (CollUtil.isNotEmpty(priceEntities)) { |
|
|
|
|
priceEntity = priceEntities.get(0); |
|
|
|
|
} |
|
|
|
|
return priceEntity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public String upload(MultipartFile file) { |
|
|
|
@ -3534,20 +3580,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> dispatchList = categoryDispatchService.list(Wrappers.<BasicdataPriceCategoryDispatchEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceCategoryDispatchEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(dispatchList)) { |
|
|
|
|
// 按类型分组放到dispatchMap中
|
|
|
|
|
dispatchList.forEach(item -> { |
|
|
|
|
Integer type = item.getCostType(); |
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> collect = dispatchMap.get(type); |
|
|
|
|
if (ObjectUtil.isEmpty(collect)) { |
|
|
|
|
collect = new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
collect.add(item); |
|
|
|
|
dispatchMap.put(type, collect); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
initDispatchMap(priceEntity, dispatchMap); |
|
|
|
|
// 获取一般费用
|
|
|
|
|
|
|
|
|
|
List<BasicdataPriceGeneralEntity> generalList = generalService.list(Wrappers.<BasicdataPriceGeneralEntity>lambdaQuery() |
|
|
|
@ -3566,6 +3599,23 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initDispatchMap(BasicdataPriceEntity priceEntity, Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap) { |
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> dispatchList = categoryDispatchService.list(Wrappers.<BasicdataPriceCategoryDispatchEntity>lambdaQuery() |
|
|
|
|
.eq(BasicdataPriceCategoryDispatchEntity::getBoId, priceEntity.getId())); |
|
|
|
|
if (CollUtil.isNotEmpty(dispatchList)) { |
|
|
|
|
// 按类型分组放到dispatchMap中
|
|
|
|
|
dispatchList.forEach(item -> { |
|
|
|
|
Integer type = item.getCostType(); |
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> collect = dispatchMap.get(type); |
|
|
|
|
if (ObjectUtil.isEmpty(collect)) { |
|
|
|
|
collect = new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
collect.add(item); |
|
|
|
|
dispatchMap.put(type, collect); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private PriceDispatchVO initDispatch(BasicdataPriceEntity priceEntity, BasicdataPriceTemplateEntity templateEntity, List<BasicdataPriceFullVehicleEntity> fullVehicleEntities, Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap, List<BasicdataPriceGeneralEntity> generalEntities, List<BasicdataPriceGeneralEntity> generalEntities1) { |
|
|
|
|
PriceDispatchVO priceDispatchVO = new PriceDispatchVO(); |
|
|
|
|
String dispatchPricingType = templateEntity.getDispatchPricingType(); |
|
|
|
@ -3678,16 +3728,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 附加费
|
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> dispatchEntities1 = dispatchMap.get(CostTypeEnums.ADD.getCode()); |
|
|
|
|
if (CollUtil.isNotEmpty(dispatchEntities1)) { |
|
|
|
|
List<PriceDispatchAdditionalVO> basicVOList = new ArrayList<>(); |
|
|
|
|
dispatchEntities1.forEach(item -> { |
|
|
|
|
PriceDispatchAdditionalVO basicVO = new PriceDispatchAdditionalVO(); |
|
|
|
|
BeanUtil.copyProperties(item, basicVO); |
|
|
|
|
basicVOList.add(basicVO); |
|
|
|
|
}); |
|
|
|
|
priceDispatchVO.setAdditionalCategory(basicVOList); |
|
|
|
|
} |
|
|
|
|
priceDispatchVO.setAdditionalCategory(buildDispatchAddFee(dispatchMap)); |
|
|
|
|
// 一般费用 generalEntities
|
|
|
|
|
if (CollUtil.isNotEmpty(generalEntities)) { |
|
|
|
|
BasicdataPriceGeneralEntity generalEntity = generalEntities.get(0); |
|
|
|
@ -3712,6 +3753,20 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
|
|
|
|
|
return priceDispatchVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static List<PriceDispatchAdditionalVO> buildDispatchAddFee(Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap) { |
|
|
|
|
List<BasicdataPriceCategoryDispatchEntity> dispatchEntities1 = dispatchMap.get(CostTypeEnums.ADD.getCode()); |
|
|
|
|
if (CollUtil.isNotEmpty(dispatchEntities1)) { |
|
|
|
|
List<PriceDispatchAdditionalVO> basicVOList = new ArrayList<>(); |
|
|
|
|
dispatchEntities1.forEach(item -> { |
|
|
|
|
PriceDispatchAdditionalVO basicVO = new PriceDispatchAdditionalVO(); |
|
|
|
|
BeanUtil.copyProperties(item, basicVO); |
|
|
|
|
basicVOList.add(basicVO); |
|
|
|
|
}); |
|
|
|
|
return basicVOList; |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private PriceWarehouseVO initWarehouse(BasicdataPriceEntity priceEntity, BasicdataPriceTemplateEntity templateEntity, Map<Integer, List<BasicdataPriceCategoryWarehouseEntity>> warehouseMap) { |
|
|
|
|
PriceWarehouseVO priceWarehouseVO = new PriceWarehouseVO(); |
|
|
|
|
Integer warehousePricingType = templateEntity.getWarehousePricingType(); |
|
|
|
|