|
|
|
@ -36,6 +36,8 @@ import com.logpm.warehouse.feign.IWarehouseWaybillClient;
|
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.DistributionTypeConstant; |
|
|
|
|
import org.springblade.common.enums.BooleanZeroOneEnums; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
@ -45,6 +47,7 @@ import org.springblade.core.tool.api.R;
|
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.DateUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springblade.system.cache.DictBizCache; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.context.annotation.Lazy; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
@ -1289,23 +1292,157 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
@Override |
|
|
|
|
public List<StatisticsOrderInfoExportVO> orderInfoListExport(MerchantStatisticsDTO merchantStatisticsDTO) { |
|
|
|
|
|
|
|
|
|
List<StatisticsOrderInfoExportVO> records = baseMapper.orderInfoListExport(merchantStatisticsDTO); |
|
|
|
|
//把records中所有的orderInfoId放入一个集合
|
|
|
|
|
List<Long> orderInfoIdList = records.stream().map(StatisticsOrderInfoExportVO::getOrderInfoId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupById(orderInfoIdList); |
|
|
|
|
//把orderPackageInfoList转化成以orderInfoId为key的Map
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap = orderPackageInfoList.stream() |
|
|
|
|
.collect(Collectors.toMap(StatisticsPackageFeeInfoVO::getOrderInfoId, statisticsPackageFeeInfoVO -> statisticsPackageFeeInfoVO)); |
|
|
|
|
List<StatisticsOrderInfoExportVO> result = new ArrayList<>(); |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
if (!warehouseIds.isEmpty()) { |
|
|
|
|
merchantStatisticsDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
} |
|
|
|
|
List<StatisticsOrderInfoVO> statisticsOrderInfoVOIPage = baseMapper.pageList2BNoPage(merchantStatisticsDTO); |
|
|
|
|
|
|
|
|
|
records.forEach(statisticsOrderInfoVO -> { |
|
|
|
|
Long orderInfoId = statisticsOrderInfoVO.getOrderInfoId(); |
|
|
|
|
StatisticsPackageFeeInfoVO statisticsPackageFeeInfoVO = orderPackageInfoMap.get(orderInfoId); |
|
|
|
|
BeanUtil.copy(statisticsPackageFeeInfoVO, statisticsOrderInfoVO); |
|
|
|
|
|
|
|
|
|
Set<Long> waybillIds = statisticsOrderInfoVOIPage.stream().map(StatisticsOrderInfoVO::getWaybillId).collect(Collectors.toSet()); |
|
|
|
|
|
|
|
|
|
// 查询运单明细集合
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillId = baseMapper.findWaybillDetailByWaybillId(waybillIds); |
|
|
|
|
|
|
|
|
|
//得到运单号
|
|
|
|
|
Set<String> orderCodeSet = statisticsOrderInfoVOIPage.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); |
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVOIPage.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()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
StatisticsOrderInfoExportVO statisticsOrderInfoExportVO = new StatisticsOrderInfoExportVO(); |
|
|
|
|
BeanUtil.copy(statisticsOrderInfoVO, statisticsOrderInfoExportVO); |
|
|
|
|
statisticsOrderInfoExportVO.setTypeServiceName(DistributionTypeConstant.getName(statisticsOrderInfoVO.getTypeService())); |
|
|
|
|
statisticsOrderInfoExportVO.setPayType(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_TYPE, statisticsOrderInfoVO.getPayType())); |
|
|
|
|
statisticsOrderInfoExportVO.setPayWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_WAY, statisticsOrderInfoVO.getPayWay())); |
|
|
|
|
|
|
|
|
|
String signName = "未签收"; |
|
|
|
|
if (90 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "部分签收"; |
|
|
|
|
} else if (100 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "已签收"; |
|
|
|
|
} |
|
|
|
|
// statisticsOrderInfoExportVO.setSignStatus();
|
|
|
|
|
statisticsOrderInfoExportVO.setSignStatusName(signName); |
|
|
|
|
|
|
|
|
|
result.add(statisticsOrderInfoExportVO); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
|
|
|
|
|
return records; |
|
|
|
|
// return records;
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|