|
|
|
@ -6,11 +6,14 @@ import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataPriceTemplateEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataClientClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataPriceClient; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdatPriceApiVO; |
|
|
|
@ -28,8 +31,11 @@ import com.logpm.statistics.entity.*;
|
|
|
|
|
import com.logpm.statistics.mapper.StatisticsOrderInfoMapper; |
|
|
|
|
import com.logpm.statistics.service.*; |
|
|
|
|
import com.logpm.statistics.vo.*; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseWaybillEntity; |
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseWaybillClient; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.springblade.common.enums.BooleanZeroOneEnums; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
@ -63,6 +69,8 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
private final IStatisticsAftersalesOrderRecordService aftersalesOrderRecordService; |
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
private final IStatisticsBalanceRecordService balanceRecordService; |
|
|
|
|
private final IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
private final IBasicdataClientClient basicdataClientClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<StatisticsOrderInfoEntity> findListByWaybillId(Long waybillId) { |
|
|
|
@ -92,6 +100,158 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
merchantStatisticsDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//区分 2B 和 2C 的订单
|
|
|
|
|
if (merchantStatisticsDTO.getListType() == 1) { |
|
|
|
|
//2B
|
|
|
|
|
return getStatisticsOrderInfoVOIPage2B(merchantStatisticsDTO, page); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
// 2C
|
|
|
|
|
return getStatisticsOrderInfoVOIPage2C(merchantStatisticsDTO, page); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private IPage<StatisticsOrderInfoVO> getStatisticsOrderInfoVOIPage2B(MerchantStatisticsDTO merchantStatisticsDTO, IPage<Object> page) { |
|
|
|
|
// IPage<StatisticsOrderInfoVO> statisticsOrderInfoVOIPage = baseMapper.pageList(page, merchantStatisticsDTO);
|
|
|
|
|
IPage<StatisticsOrderInfoVO> statisticsOrderInfoVOIPage = baseMapper.pageList2B(page, merchantStatisticsDTO); |
|
|
|
|
List<StatisticsOrderInfoVO> records = statisticsOrderInfoVOIPage.getRecords(); |
|
|
|
|
if (CollUtil.isEmpty(records)) { |
|
|
|
|
return statisticsOrderInfoVOIPage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把records中所有的orderInfoId放入一个集合
|
|
|
|
|
// List<Long> orderInfoIdList = records.stream().map(StatisticsOrderInfoVO::getOrderInfoId).collect(Collectors.toList());
|
|
|
|
|
// 得到运单ID集合
|
|
|
|
|
Set<Long> waybillIds = records.stream().map(StatisticsOrderInfoVO::getWaybillId).collect(Collectors.toSet()); |
|
|
|
|
|
|
|
|
|
// 查询运单明细集合
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillId = baseMapper.findWaybillDetailByWaybillId(waybillIds); |
|
|
|
|
|
|
|
|
|
//得到运单号
|
|
|
|
|
Set<String> orderCodeSet = records.stream().map(StatisticsOrderInfoVO::getOrderCode).collect(Collectors.toSet()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 通过运单号进行分组
|
|
|
|
|
Map<Long, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillId)); |
|
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
|
if (CollUtil.isNotEmpty(waybillIds)) { |
|
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupByWaybillId(waybillIds); |
|
|
|
|
//把orderPackageInfoList转化成以orderInfoId为key的Map
|
|
|
|
|
if (CollUtil.isNotEmpty(orderPackageInfoList)) { |
|
|
|
|
orderPackageInfoMap = orderPackageInfoList.stream() |
|
|
|
|
.collect(Collectors.toMap(StatisticsPackageFeeInfoVO::getWaybillId, statisticsPackageFeeInfoVO -> statisticsPackageFeeInfoVO)); |
|
|
|
|
} else { |
|
|
|
|
orderPackageInfoMap = null; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
orderPackageInfoMap = null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<AdvanceDetailDTO> advanceDetailDTOS = baseMapper.selectAdvinceDetail(waybillIds, orderCodeSet); |
|
|
|
|
|
|
|
|
|
records.forEach(statisticsOrderInfoVO -> { |
|
|
|
|
// Long waybillId = statisticsOrderInfoVO.getWaybillId();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long waybillId = statisticsOrderInfoVO.getWaybillId(); |
|
|
|
|
String orderCode = statisticsOrderInfoVO.getOrderCode(); |
|
|
|
|
// 查询站存单上的
|
|
|
|
|
|
|
|
|
|
List<AdvanceDetailDTO> advanceDetailDTOList = advanceDetailDTOS.stream(). |
|
|
|
|
filter(advanceDetailDTO -> advanceDetailDTO.getWaybillId().equals(waybillId) && advanceDetailDTO.getOrderCode().equals(orderCode)).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
// 对advanceDetailDTOList 按照 incomeCategoryName 进分组 并统计数量
|
|
|
|
|
Map<String, List<AdvanceDetailDTO>> collect = advanceDetailDTOList.stream().filter(advanceDetailDTO -> !Objects.isNull(advanceDetailDTO.getIncomeCategoryName())).collect(Collectors.groupingBy(AdvanceDetailDTO::getIncomeCategoryName)); |
|
|
|
|
|
|
|
|
|
Long waybillId1 = statisticsOrderInfoVO.getWaybillId(); |
|
|
|
|
if (orderPackageInfoMap != null) { |
|
|
|
|
StatisticsPackageFeeInfoVO statisticsPackageFeeInfoVO = orderPackageInfoMap.get(waybillId1); |
|
|
|
|
|
|
|
|
|
if (statisticsPackageFeeInfoVO != null) { |
|
|
|
|
// statisticsPackageFeeInfoVO.setGoodsName(statisticsOrderInfoVO.getGoodsName());
|
|
|
|
|
BeanUtil.copy(statisticsPackageFeeInfoVO, statisticsOrderInfoVO); |
|
|
|
|
|
|
|
|
|
if (StringUtil.isNotBlank(statisticsOrderInfoVO.getGoodsName())) { |
|
|
|
|
// String[] split = statisticsOrderInfoVO.getGoodsName().split(",");
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillId()); |
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
StringBuffer sb1 = new StringBuffer(); |
|
|
|
|
StringBuffer sb3 = new StringBuffer(); |
|
|
|
|
|
|
|
|
|
if (collect.isEmpty()) { |
|
|
|
|
|
|
|
|
|
if (!waybillDetailByWaybillNoVos.isEmpty()) { |
|
|
|
|
|
|
|
|
|
for (WaybillDetailByWaybillNoVo waybillDetailByWaybillNoVo : waybillDetailByWaybillNoVos) { |
|
|
|
|
|
|
|
|
|
if (!sb3.toString().isEmpty()) { |
|
|
|
|
sb3.append(","); |
|
|
|
|
} |
|
|
|
|
sb3.append(waybillDetailByWaybillNoVo.getProductName()); |
|
|
|
|
|
|
|
|
|
if (!sb.toString().isEmpty()) { |
|
|
|
|
sb.append(","); |
|
|
|
|
} |
|
|
|
|
sb.append(waybillDetailByWaybillNoVo.getNum()); |
|
|
|
|
|
|
|
|
|
if (!sb1.toString().isEmpty()) { |
|
|
|
|
sb1.append(","); |
|
|
|
|
} |
|
|
|
|
sb1.append(waybillDetailByWaybillNoVo.getPrice()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
collect.keySet().forEach(s -> { |
|
|
|
|
if (!sb3.toString().isEmpty()) { |
|
|
|
|
sb3.append(","); |
|
|
|
|
} |
|
|
|
|
sb3.append(s); |
|
|
|
|
List<AdvanceDetailDTO> advanceDetailDTOS1 = collect.get(s); |
|
|
|
|
Optional<WaybillDetailByWaybillNoVo> first = waybillDetailByWaybillNoVos.stream().filter(waybillDetailByWaybillNoVo -> waybillDetailByWaybillNoVo.getProductName().equals(s)).findFirst(); |
|
|
|
|
|
|
|
|
|
if (first.isPresent()) { |
|
|
|
|
WaybillDetailByWaybillNoVo waybillDetailByWaybillNoVo = first.get(); |
|
|
|
|
|
|
|
|
|
if (!sb.toString().isEmpty()) { |
|
|
|
|
sb.append(","); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//统计 advanceDetailDTOS1 这个集合种 quantity 的和值
|
|
|
|
|
int sum = advanceDetailDTOS1.stream().mapToInt(AdvanceDetailDTO::getQuantity).sum(); |
|
|
|
|
sb.append(sum); |
|
|
|
|
|
|
|
|
|
if (!sb1.toString().isEmpty()) { |
|
|
|
|
sb1.append(","); |
|
|
|
|
} |
|
|
|
|
sb1.append(waybillDetailByWaybillNoVo.getPrice()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVO.setGoodsName(sb3.toString()); |
|
|
|
|
statisticsOrderInfoVO.setGoodsNum(sb.toString()); |
|
|
|
|
statisticsOrderInfoVO.setGoodsPrice(sb1.toString()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
statisticsOrderInfoVOIPage.setRecords(records); |
|
|
|
|
return statisticsOrderInfoVOIPage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@NotNull |
|
|
|
|
private IPage<StatisticsOrderInfoVO> getStatisticsOrderInfoVOIPage2C(MerchantStatisticsDTO merchantStatisticsDTO, IPage<Object> page) { |
|
|
|
|
IPage<StatisticsOrderInfoVO> statisticsOrderInfoVOIPage = baseMapper.pageList(page, merchantStatisticsDTO); |
|
|
|
|
List<StatisticsOrderInfoVO> records = statisticsOrderInfoVOIPage.getRecords(); |
|
|
|
|
if (CollUtil.isEmpty(records)) { |
|
|
|
@ -161,7 +321,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
if (collect.isEmpty()) { |
|
|
|
|
|
|
|
|
|
if(!waybillDetailByWaybillNoVos.isEmpty()){ |
|
|
|
|
if (waybillDetailByWaybillNoVos != null && !waybillDetailByWaybillNoVos.isEmpty()) { |
|
|
|
|
|
|
|
|
|
for (WaybillDetailByWaybillNoVo waybillDetailByWaybillNoVo : waybillDetailByWaybillNoVos) { |
|
|
|
|
|
|
|
|
@ -191,6 +351,8 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
} |
|
|
|
|
sb3.append(s); |
|
|
|
|
List<AdvanceDetailDTO> advanceDetailDTOS1 = collect.get(s); |
|
|
|
|
|
|
|
|
|
if (waybillDetailByWaybillNoVos != null) { |
|
|
|
|
Optional<WaybillDetailByWaybillNoVo> first = waybillDetailByWaybillNoVos.stream().filter(waybillDetailByWaybillNoVo -> waybillDetailByWaybillNoVo.getProductName().equals(s)).findFirst(); |
|
|
|
|
|
|
|
|
|
if (first.isPresent()) { |
|
|
|
@ -209,6 +371,8 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
} |
|
|
|
|
sb1.append(waybillDetailByWaybillNoVo.getPrice()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -223,7 +387,6 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVOIPage.setRecords(records); |
|
|
|
|
return statisticsOrderInfoVOIPage; |
|
|
|
|
} |
|
|
|
@ -244,7 +407,6 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
List<StatisticsChangesRecordEntity> list = changesRecordService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) { |
|
|
|
|
|
|
|
|
|
// 获取list中所有元素的id
|
|
|
|
@ -553,6 +715,79 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
return Boolean.TRUE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public boolean calculateRealCostByWaybillId(Long id) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillId(id); |
|
|
|
|
if (ObjectUtil.isEmpty(waybillEntity)) { |
|
|
|
|
log.warn("#############calculateRealCostByWaybillId: 运单信息不存在"); |
|
|
|
|
throw new CustomerException(405, "运单信息不存在"); |
|
|
|
|
} |
|
|
|
|
Long brandId = waybillEntity.getBrandId(); |
|
|
|
|
Long consigneeId = waybillEntity.getConsigneeId(); |
|
|
|
|
if (!ObjectUtil.isAllNotEmpty(brandId, consigneeId)) { |
|
|
|
|
log.warn("#############calculateRealCost: 品牌{} 收货单位{}", brandId, consigneeId); |
|
|
|
|
throw new CustomerException(405, "结算单信息不完整,缺少品牌和收货单位,请联系系统管理员。"); |
|
|
|
|
} |
|
|
|
|
Date createTime = waybillEntity.getCreateTime(); |
|
|
|
|
// 根据 品牌 收货单位 开单时间 获取价格体系
|
|
|
|
|
PriceClientVO price = priceClient.price(BasicdatPriceApiVO.builder() |
|
|
|
|
.clientId(consigneeId.toString()) |
|
|
|
|
.brandId(brandId.toString()) |
|
|
|
|
.time(DateUtil.formatDate(createTime)) |
|
|
|
|
.build()); |
|
|
|
|
if (ObjectUtil.isEmpty(price)) { |
|
|
|
|
log.warn("#############calculateRealCost: 未维护价格,无法计算。"); |
|
|
|
|
throw new CustomerException(405, "未维护价格,无法计算。"); |
|
|
|
|
} |
|
|
|
|
log.info("获取的价格:{}", JSONUtil.toJsonStr(price)); |
|
|
|
|
// 查询包件数据
|
|
|
|
|
List<StatisticsDistributionPackageEntity> distributionPackageEntities = distributionPackageService.list(new QueryWrapper<StatisticsDistributionPackageEntity>().lambda().eq(StatisticsDistributionPackageEntity::getWaybillId, id)); |
|
|
|
|
// 校验是否全部配送完成
|
|
|
|
|
if (CollUtil.isEmpty(distributionPackageEntities) || distributionPackageEntities.stream().anyMatch(distributionPackageEntity -> distributionPackageEntity.getIsSign() == null || NumberUtil.equals(0, distributionPackageEntity.getIsSign()))) { |
|
|
|
|
log.warn("#############calculateRealCost: 订单未全部配送完成,无法计算。"); |
|
|
|
|
throw new CustomerException(405, "订单未全部配送完成,无法计算。"); |
|
|
|
|
} |
|
|
|
|
List<StatisticsWarehousePackageEntity> warehousePackageEntities = warehousePackageService.list(new QueryWrapper<StatisticsWarehousePackageEntity>().lambda().eq(StatisticsWarehousePackageEntity::getWaybillId, id)); |
|
|
|
|
PriceDispatchVO dispatch = price.getDispatch(); |
|
|
|
|
PriceWarehouseVO warehouse = price.getWarehouse(); |
|
|
|
|
|
|
|
|
|
BasicdataPriceTemplateEntity template = price.getTemplate(); |
|
|
|
|
if (ObjectUtil.isEmpty(template)) { |
|
|
|
|
log.warn("#############calculateRealCost: 未维护模版,无法计算。"); |
|
|
|
|
throw new CustomerException(405, "未维护模版,无法计算。"); |
|
|
|
|
} |
|
|
|
|
String serviceType = template.getServiceType(); |
|
|
|
|
Integer dispatchIsMinCost = template.getDispatchIsMinCost(); |
|
|
|
|
|
|
|
|
|
BasicdataClientEntity entityById = basicdataClientClient.findEntityById(consigneeId); |
|
|
|
|
|
|
|
|
|
// 模版的服务类型
|
|
|
|
|
String typeService = String.valueOf(entityById.getTypeService()); |
|
|
|
|
if (StrUtil.isNotEmpty(serviceType)) { |
|
|
|
|
// 模版是否有仓储
|
|
|
|
|
if (StrUtil.contains(serviceType, "3")) { |
|
|
|
|
if (CollUtil.isNotEmpty(warehousePackageEntities)) { |
|
|
|
|
calculateWarehouseCost(warehouse, warehousePackageEntities, template); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 模版是否有配送
|
|
|
|
|
if (StrUtil.contains(serviceType, "4")) { |
|
|
|
|
if (CollUtil.isNotEmpty(distributionPackageEntities)) { |
|
|
|
|
calculateDispatchCost(template, typeService, distributionPackageEntities, dispatch, dispatchIsMinCost, brandId, consigneeId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
lambdaUpdate().set(StatisticsOrderInfoEntity::getSyncFeeStatus, 1).set(StatisticsOrderInfoEntity::getSyncFeeDate, new Date()).eq(StatisticsOrderInfoEntity::getWaybillId, id).update(); |
|
|
|
|
|
|
|
|
|
// orderInfoEntity.setSyncFeeStatus(1);
|
|
|
|
|
// orderInfoEntity.setSyncFeeDate(new Date());
|
|
|
|
|
// updateById(orderInfoEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Boolean.TRUE; } |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public StatisticsPackageFeeInfoVO findPackageListByOrderIds(List<Long> orderInfoIdsList) { |
|
|
|
|
return baseMapper.findPackageListByOrderIds(orderInfoIdsList); |
|
|
|
@ -682,6 +917,272 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
return R.success("生成成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R createReconciliationWaybillId(List<Long> waybillIds) { |
|
|
|
|
// List<StatisticsOrderInfoEntity> orderInfoEntities = baseMapper.selectBatchIds(orderInfoIds);
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<StatisticsOrderInfoEntity> queryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
|
|
|
|
|
queryWrapper.in(StatisticsOrderInfoEntity::getWaybillId, waybillIds); |
|
|
|
|
queryWrapper.eq(StatisticsOrderInfoEntity::getConfirmBalanceOrderStatus, 0); |
|
|
|
|
|
|
|
|
|
List<StatisticsOrderInfoEntity> orderInfoEntities = baseMapper.selectList(queryWrapper); |
|
|
|
|
if (CollUtil.isEmpty(orderInfoEntities)) { |
|
|
|
|
log.warn("############createReconciliationOrder: 未找到对应订单信息"); |
|
|
|
|
return R.fail(405, "未找到对应订单信息"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> orderInfoIds = orderInfoEntities.stream().map(StatisticsOrderInfoEntity::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
for (StatisticsOrderInfoEntity orderInfoEntity : orderInfoEntities) { |
|
|
|
|
if (orderInfoEntity.getTypeService() != null && orderInfoEntity.getTypeService() != 2) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
Integer syncFeeStatus = orderInfoEntity.getSyncFeeStatus(); |
|
|
|
|
Long orderId = orderInfoEntity.getId(); |
|
|
|
|
String orderCode = orderInfoEntity.getOrderCode(); |
|
|
|
|
if (syncFeeStatus == 0) { |
|
|
|
|
log.warn("############createReconciliationOrder: 订单还未计算价格的数据 orderId={}", orderId); |
|
|
|
|
return R.fail(405, "订单[" + orderCode + "]未计算价格的数据"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//判断orderInfoEntities中所有元素通过consigneeId进行分组
|
|
|
|
|
Map<Long, List<StatisticsOrderInfoEntity>> groupByConsigneeId = orderInfoEntities.stream().collect(Collectors.groupingBy(StatisticsOrderInfoEntity::getConsigneeId)); |
|
|
|
|
int consigneeSize = groupByConsigneeId.keySet().size(); |
|
|
|
|
if (consigneeSize > 1) { |
|
|
|
|
log.warn("############createReconciliationOrder: 订单不属于同一个商家"); |
|
|
|
|
return R.fail(405, "订单不属于同一个商家"); |
|
|
|
|
} |
|
|
|
|
Map<Long, List<StatisticsOrderInfoEntity>> groupByDestinationWarehouseId = orderInfoEntities.stream().collect(Collectors.groupingBy(StatisticsOrderInfoEntity::getDestinationWarehouseId)); |
|
|
|
|
int destinationWarehouseIdSize = groupByDestinationWarehouseId.keySet().size(); |
|
|
|
|
if (destinationWarehouseIdSize > 1) { |
|
|
|
|
log.warn("############createReconciliationOrder: 订单不属于同一个目的仓"); |
|
|
|
|
return R.fail(405, "订单不属于同一个目的仓"); |
|
|
|
|
} |
|
|
|
|
StatisticsPackageFeeInfoVO orderPackageTotalVO = baseMapper.findPackageListByOrderIds(orderInfoIds); |
|
|
|
|
BigDecimal freightPrice = orderPackageTotalVO.getFreightPrice(); |
|
|
|
|
BigDecimal systemFreightPrice = orderPackageTotalVO.getSystemFreightPrice(); |
|
|
|
|
BigDecimal pickupPrice = orderPackageTotalVO.getPickupPrice(); |
|
|
|
|
BigDecimal systemPickupPrice = orderPackageTotalVO.getSystemPickupPrice(); |
|
|
|
|
BigDecimal warehouseServiceFee = orderPackageTotalVO.getWarehouseServiceFee(); |
|
|
|
|
BigDecimal deliveryServiceFee = orderPackageTotalVO.getDeliveryServiceFee(); |
|
|
|
|
BigDecimal totalFee = freightPrice.add(pickupPrice).add(warehouseServiceFee).add(deliveryServiceFee); |
|
|
|
|
BigDecimal sysTotalFee = systemFreightPrice.add(systemPickupPrice).add(warehouseServiceFee).add(deliveryServiceFee); |
|
|
|
|
|
|
|
|
|
StatisticsOrderInfoEntity statisticsOrderInfoEntity = orderInfoEntities.get(0); |
|
|
|
|
Long consigneeId = statisticsOrderInfoEntity.getConsigneeId(); |
|
|
|
|
String consignee = statisticsOrderInfoEntity.getConsignee(); |
|
|
|
|
Long destinationWarehouseId = statisticsOrderInfoEntity.getDestinationWarehouseId(); |
|
|
|
|
String destinationWarehouseName = statisticsOrderInfoEntity.getDestinationWarehouseName(); |
|
|
|
|
|
|
|
|
|
String reconciliationOrdeCode = "DZD" + System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
StatisticsReconciliationOrderInfoEntity reconciliationOrder = new StatisticsReconciliationOrderInfoEntity(); |
|
|
|
|
reconciliationOrder.setReconciliationOrderNo(reconciliationOrdeCode); |
|
|
|
|
//把orderInfoEntities中所有waybillNo去重拼接起来
|
|
|
|
|
reconciliationOrder.setWaybillNo(orderInfoEntities.stream().map(StatisticsOrderInfoEntity::getWaybillNo).distinct().collect(Collectors.joining(","))); |
|
|
|
|
// 增加运单的制单时间
|
|
|
|
|
// reconciliationOrder.setWaybillCreateTime(orderInfoEntities.get(0).getWaybillCreateTime());
|
|
|
|
|
|
|
|
|
|
reconciliationOrder.setOrderCode(orderInfoEntities.stream().map(StatisticsOrderInfoEntity::getOrderCode).distinct().collect(Collectors.joining(","))); |
|
|
|
|
reconciliationOrder.setBrand(orderInfoEntities.stream().map(StatisticsOrderInfoEntity::getBrand).distinct().collect(Collectors.joining(","))); |
|
|
|
|
reconciliationOrder.setConsigneeId(consigneeId); |
|
|
|
|
reconciliationOrder.setConsignee(consignee); |
|
|
|
|
reconciliationOrder.setDestinationWarehouseName(destinationWarehouseName); |
|
|
|
|
reconciliationOrder.setDestinationWarehouseId(destinationWarehouseId); |
|
|
|
|
reconciliationOrder.setTotalNum(orderPackageTotalVO.getTotalNum()); |
|
|
|
|
reconciliationOrder.setTotalWeight(orderPackageTotalVO.getTotalWeight()); |
|
|
|
|
reconciliationOrder.setTotalVolume(orderPackageTotalVO.getTotalVolume()); |
|
|
|
|
|
|
|
|
|
reconciliationOrder.setSystemTotalFee(sysTotalFee); |
|
|
|
|
reconciliationOrder.setRealTotalFee(totalFee); |
|
|
|
|
reconciliationOrder.setPickupFee(pickupPrice); |
|
|
|
|
reconciliationOrder.setFreightFee(freightPrice); |
|
|
|
|
reconciliationOrder.setWarehouseServiceFee(warehouseServiceFee); |
|
|
|
|
reconciliationOrder.setWarehouseFee(orderPackageTotalVO.getWarehouseFee()); |
|
|
|
|
reconciliationOrder.setWarehouseManageFee(orderPackageTotalVO.getWarehouseManageFee()); |
|
|
|
|
reconciliationOrder.setWarehouseSortingFee(orderPackageTotalVO.getWarehouseSortingFee()); |
|
|
|
|
reconciliationOrder.setWarehouseOperatingFee(orderPackageTotalVO.getWarehouseOperatingFee()); |
|
|
|
|
reconciliationOrder.setDeliveryFee(orderPackageTotalVO.getDeliveryFee()); |
|
|
|
|
reconciliationOrder.setDeliveryServiceFee(deliveryServiceFee); |
|
|
|
|
reconciliationOrder.setDeliveryLoadingFee(orderPackageTotalVO.getDeliveryLoadingFee()); |
|
|
|
|
reconciliationOrder.setDeliverySortingFee(orderPackageTotalVO.getDeliverySortingFee()); |
|
|
|
|
reconciliationOrder.setDeliveryUpfloorFee(orderPackageTotalVO.getDeliveryUpfloorFee()); |
|
|
|
|
reconciliationOrder.setDeliveryMoveFee(orderPackageTotalVO.getDeliveryMoveFee()); |
|
|
|
|
reconciliationOrder.setDeliveryOtherFee(orderPackageTotalVO.getDeliveryOtherFee()); |
|
|
|
|
reconciliationOrder.setDeliveryCrossingFee(orderPackageTotalVO.getDeliveryCrossingFee()); |
|
|
|
|
reconciliationOrder.setInstallFee(BigDecimal.ZERO); |
|
|
|
|
reconciliationOrder.setOtherFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
reconciliationOrder.setIsAftersale(0); |
|
|
|
|
// reconciliationOrder.setH(BigDecimal.ZERO);
|
|
|
|
|
|
|
|
|
|
reconciliationOrder.setCreateUserName(AuthUtil.getNickName()); |
|
|
|
|
|
|
|
|
|
reconciliationOrder.setIsChanges(0); |
|
|
|
|
reconciliationOrder.setChangesFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
reconciliationOrder.setCheckStatus(0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boolean saveFlag = reconciliationOrderInfoService.save(reconciliationOrder); |
|
|
|
|
if (saveFlag) { |
|
|
|
|
Long reconciliationOrderId = reconciliationOrder.getId(); |
|
|
|
|
List<StatisticsOrderInfoEntity> updateList = new ArrayList<>(); |
|
|
|
|
orderInfoEntities.forEach(orderInfoEntity -> { |
|
|
|
|
StatisticsOrderInfoEntity updateEntity = new StatisticsOrderInfoEntity(); |
|
|
|
|
updateEntity.setId(orderInfoEntity.getId()); |
|
|
|
|
updateEntity.setCreateReconciliationOrderStatus(1); |
|
|
|
|
updateEntity.setCreateReconciliationUserName(AuthUtil.getNickName()); |
|
|
|
|
updateEntity.setCreateReconciliationDate(new Date()); |
|
|
|
|
updateEntity.setReconciliationOrderId(reconciliationOrderId); |
|
|
|
|
updateEntity.setReconciliationOrderNo(reconciliationOrdeCode); |
|
|
|
|
updateList.add(updateEntity); |
|
|
|
|
}); |
|
|
|
|
updateBatchById(updateList); |
|
|
|
|
} |
|
|
|
|
return R.success("生成成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transactional |
|
|
|
|
@Override |
|
|
|
|
public R createFinishWaybillId(List<Long> waybillIds) { |
|
|
|
|
|
|
|
|
|
for (Long waybillId : waybillIds) { |
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillId(waybillId); |
|
|
|
|
if (Objects.isNull(waybillEntity)) { |
|
|
|
|
log.error("############createBalanceOrder: 运单不存在 waybillId={}", waybillId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// List<WarehouseWayBillDetail> wayBillDetailList = warehouseWaybillDetailClient.findByWaybillId(waybillId);
|
|
|
|
|
//把wayBillDetailList中所有productName用逗号拼起来
|
|
|
|
|
// String productTypeNum = wayBillDetailList.stream().map(t->t.getProductName()+"("+t.getNum()+")").collect(Collectors.joining(","));
|
|
|
|
|
// String productTypePrice = wayBillDetailList.stream().map(t->t.getProductName()+"("+t.getPrice()+")").collect(Collectors.joining(","));
|
|
|
|
|
|
|
|
|
|
List<StatisticsOrderInfoEntity> orderInfoEntityList = this.findListByWaybillId(waybillId); |
|
|
|
|
//把orderInfoEntityList中所有id放入一个list,以便查询所有包件信息
|
|
|
|
|
List<Long> orderInfoIdsList = orderInfoEntityList.stream().map(StatisticsOrderInfoEntity::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
StatisticsPackageFeeInfoVO trunklinePackageFeeVO = this.findPackageListByOrderIds(orderInfoIdsList); |
|
|
|
|
|
|
|
|
|
String balanceOrderCode = "JSD" + System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
BigDecimal freightPrice = trunklinePackageFeeVO.getFreightPrice(); |
|
|
|
|
BigDecimal pickupPrice = trunklinePackageFeeVO.getPickupPrice(); |
|
|
|
|
BigDecimal warehouseServiceFee = trunklinePackageFeeVO.getWarehouseServiceFee(); |
|
|
|
|
BigDecimal deliveryServiceFee = trunklinePackageFeeVO.getDeliveryServiceFee(); |
|
|
|
|
BigDecimal totalFee = freightPrice.add(pickupPrice).add(warehouseServiceFee).add(deliveryServiceFee); |
|
|
|
|
|
|
|
|
|
StatisticsBalanceOrderInfoEntity balanceOrderInfoEntity = new StatisticsBalanceOrderInfoEntity(); |
|
|
|
|
balanceOrderInfoEntity.setBalanceOrderNo(balanceOrderCode); |
|
|
|
|
balanceOrderInfoEntity.setBrand(waybillEntity.getBrand()); |
|
|
|
|
balanceOrderInfoEntity.setWaybillNo(waybillEntity.getWaybillNo()); |
|
|
|
|
//把orderInfoEntityList中所有orderCode用逗号拼起来
|
|
|
|
|
balanceOrderInfoEntity.setOrderCode(orderInfoEntityList.stream().map(StatisticsOrderInfoEntity::getOrderCode).collect(Collectors.joining(","))); |
|
|
|
|
balanceOrderInfoEntity.setTypeService(waybillEntity.getServiceType()); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setTotalBalanceFee(totalFee); |
|
|
|
|
balanceOrderInfoEntity.setRealTotalFee(totalFee); |
|
|
|
|
balanceOrderInfoEntity.setTotalCount(trunklinePackageFeeVO.getTotalNum()); |
|
|
|
|
balanceOrderInfoEntity.setTotalWeight(trunklinePackageFeeVO.getTotalWeight()); |
|
|
|
|
balanceOrderInfoEntity.setTotalVolume(trunklinePackageFeeVO.getTotalVolume()); |
|
|
|
|
balanceOrderInfoEntity.setConsigneeId(waybillEntity.getConsigneeId()); |
|
|
|
|
balanceOrderInfoEntity.setConsignee(waybillEntity.getConsignee()); |
|
|
|
|
balanceOrderInfoEntity.setPickupFee(pickupPrice); |
|
|
|
|
balanceOrderInfoEntity.setFreightFee(freightPrice); |
|
|
|
|
balanceOrderInfoEntity.setWarehouseServiceFee(warehouseServiceFee); |
|
|
|
|
balanceOrderInfoEntity.setWarehouseFee(trunklinePackageFeeVO.getWarehouseFee()); |
|
|
|
|
balanceOrderInfoEntity.setWarehouseManageFee(trunklinePackageFeeVO.getWarehouseManageFee()); |
|
|
|
|
balanceOrderInfoEntity.setWarehouseSortingFee(trunklinePackageFeeVO.getWarehouseSortingFee()); |
|
|
|
|
balanceOrderInfoEntity.setWarehouseOperatingFee(trunklinePackageFeeVO.getWarehouseOperatingFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryFee(trunklinePackageFeeVO.getDeliveryFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryServiceFee(deliveryServiceFee); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryLoadingFee(trunklinePackageFeeVO.getDeliveryLoadingFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliverySortingFee(trunklinePackageFeeVO.getDeliverySortingFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryUpfloorFee(trunklinePackageFeeVO.getDeliveryUpfloorFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryMoveFee(trunklinePackageFeeVO.getDeliveryMoveFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryCrossingFee(trunklinePackageFeeVO.getDeliveryCrossingFee()); |
|
|
|
|
balanceOrderInfoEntity.setDeliveryOtherFee(trunklinePackageFeeVO.getDeliveryOtherFee()); |
|
|
|
|
balanceOrderInfoEntity.setOtherFee(BigDecimal.ZERO); |
|
|
|
|
balanceOrderInfoEntity.setInstallFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setIsAftersale(0); |
|
|
|
|
balanceOrderInfoEntity.setAftersalesFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setBalanceStatus(2); |
|
|
|
|
balanceOrderInfoEntity.setHasBalanceFee(balanceOrderInfoEntity.getTotalBalanceFee()); |
|
|
|
|
balanceOrderInfoEntity.setBalanceUserName(AuthUtil.getUserName()); |
|
|
|
|
balanceOrderInfoEntity.setBalanceTime(new Date(System.currentTimeMillis())); |
|
|
|
|
|
|
|
|
|
// balanceOrderInfoEntity.setHasBalanceFee(BigDecimal.ZERO);
|
|
|
|
|
balanceOrderInfoEntity.setNoBalanceFee(BigDecimal.ZERO); |
|
|
|
|
balanceOrderInfoEntity.setAbnormalBalanceStatus(0); |
|
|
|
|
balanceOrderInfoEntity.setAbnormalBalanceFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setDestinationWarehouseId(waybillEntity.getDestinationWarehouseId()); |
|
|
|
|
balanceOrderInfoEntity.setDestinationWarehouseName(waybillEntity.getDestinationWarehouseName()); |
|
|
|
|
|
|
|
|
|
boolean saveFlag = balanceOrderInfoService.save(balanceOrderInfoEntity); |
|
|
|
|
if (saveFlag) { |
|
|
|
|
Long balanceOrderId = balanceOrderInfoEntity.getId(); |
|
|
|
|
List<StatisticsOrderInfoEntity> updateOrderInfoList = new ArrayList<>(); |
|
|
|
|
orderInfoEntityList.forEach(orderInfoEntity -> { |
|
|
|
|
StatisticsOrderInfoEntity updateEntity = new StatisticsOrderInfoEntity(); |
|
|
|
|
updateEntity.setId(orderInfoEntity.getId()); |
|
|
|
|
updateEntity.setBalanceOrderId(balanceOrderId); |
|
|
|
|
updateEntity.setBalanceOrderNo(balanceOrderCode); |
|
|
|
|
updateEntity.setCreateReconciliationOrderStatus(1); |
|
|
|
|
updateEntity.setCreateReconciliationUserName(AuthUtil.getNickName()); |
|
|
|
|
updateEntity.setCreateReconciliationDate(new Date()); |
|
|
|
|
updateEntity.setConfirmBalanceOrderStatus(1); |
|
|
|
|
updateEntity.setConfirmBalanceDate(new Date()); |
|
|
|
|
updateEntity.setConfirmBalanceUserName(AuthUtil.getNickName()); |
|
|
|
|
updateOrderInfoList.add(updateEntity); |
|
|
|
|
}); |
|
|
|
|
if (CollUtil.isNotEmpty(updateOrderInfoList)) { |
|
|
|
|
this.updateBatchById(updateOrderInfoList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 保存结算记录
|
|
|
|
|
StatisticsBalanceRecordEntity balanceRecordEntity = new StatisticsBalanceRecordEntity(); |
|
|
|
|
balanceRecordEntity.setBalanceOrderInfoId(balanceOrderInfoEntity.getId()); |
|
|
|
|
balanceRecordEntity.setBalanceUserName(AuthUtil.getNickName()); |
|
|
|
|
balanceRecordEntity.setBalanceRemark("批量完成结算"); |
|
|
|
|
balanceRecordEntity.setBalanceFee(totalFee); |
|
|
|
|
balanceRecordService.save(balanceRecordEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 批量更新运单状态
|
|
|
|
|
List<WarehouseWaybillEntity> te = warehouseWaybillClient.findListByWaybillIds(waybillIds); |
|
|
|
|
List<WarehouseWaybillEntity> data = new ArrayList<>(); |
|
|
|
|
te.forEach(waybillEntity ->{ |
|
|
|
|
WarehouseWaybillEntity t = new WarehouseWaybillEntity(); |
|
|
|
|
t.setId(waybillEntity.getId()); |
|
|
|
|
t.setPayStatus("30"); |
|
|
|
|
t.setSettlementStatus("30"); |
|
|
|
|
data.add(t); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
warehouseWaybillClient.updateList(data); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R findAftersalesOrderList(Long consigneeId) { |
|
|
|
|
|
|
|
|
@ -933,8 +1434,6 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void calculateWarehouseCost(PriceWarehouseVO warehouse, List<StatisticsWarehousePackageEntity> warehousePackageEntities, BasicdataPriceTemplateEntity template) { |
|
|
|
|