|
|
|
@ -289,7 +289,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 通过运单号进行分组
|
|
|
|
|
Map<Long, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillId)); |
|
|
|
|
Map<String, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillNo)); |
|
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
|
if (CollUtil.isNotEmpty(orderInfoIdList)) { |
|
|
|
@ -331,7 +331,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
if (StringUtil.isNotBlank(statisticsOrderInfoVO.getGoodsName())) { |
|
|
|
|
// String[] split = statisticsOrderInfoVO.getGoodsName().split(",");
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillId()); |
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillNo()); |
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
StringBuffer sb1 = new StringBuffer(); |
|
|
|
@ -1311,7 +1311,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 通过运单号进行分组
|
|
|
|
|
Map<Long, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillId)); |
|
|
|
|
Map<String, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillNo)); |
|
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
|
if (CollUtil.isNotEmpty(waybillIds)) { |
|
|
|
@ -1353,7 +1353,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
if (StringUtil.isNotBlank(statisticsOrderInfoVO.getGoodsName())) { |
|
|
|
|
// String[] split = statisticsOrderInfoVO.getGoodsName().split(",");
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillId()); |
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillNo()); |
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
StringBuffer sb1 = new StringBuffer(); |
|
|
|
@ -1429,9 +1429,9 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
statisticsOrderInfoExportVO.setPayWay(DictBizCache.getValue(DictBizConstant.OPEN_ORDER_PAY_WAY, statisticsOrderInfoVO.getPayWay())); |
|
|
|
|
|
|
|
|
|
String signName = "未签收"; |
|
|
|
|
if (90 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
if (1 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "部分签收"; |
|
|
|
|
} else if (100 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
} else if (2 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "已签收"; |
|
|
|
|
} |
|
|
|
|
// statisticsOrderInfoExportVO.setSignStatus();
|
|
|
|
@ -1445,6 +1445,162 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
// return records;
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<StatisticsOrderInfoExportVO> orderInfoListExport2C(MerchantStatisticsDTO merchantStatisticsDTO) { |
|
|
|
|
|
|
|
|
|
List<StatisticsOrderInfoExportVO> result = new ArrayList<>(); |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
if (!warehouseIds.isEmpty()) { |
|
|
|
|
merchantStatisticsDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
} |
|
|
|
|
List<StatisticsOrderInfoVO> records = baseMapper.pageList2CExport(merchantStatisticsDTO); |
|
|
|
|
|
|
|
|
|
//把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<String, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillNo)); |
|
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
|
if (CollUtil.isNotEmpty(orderInfoIdList)) { |
|
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupById(orderInfoIdList); |
|
|
|
|
//把orderPackageInfoList转化成以orderInfoId为key的Map
|
|
|
|
|
if (CollUtil.isNotEmpty(orderPackageInfoList)) { |
|
|
|
|
orderPackageInfoMap = orderPackageInfoList.stream() |
|
|
|
|
.collect(Collectors.toMap(StatisticsPackageFeeInfoVO::getOrderInfoId, 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 orderInfoId = statisticsOrderInfoVO.getOrderInfoId(); |
|
|
|
|
if (orderPackageInfoMap != null) { |
|
|
|
|
StatisticsPackageFeeInfoVO statisticsPackageFeeInfoVO = orderPackageInfoMap.get(orderInfoId); |
|
|
|
|
|
|
|
|
|
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.getWaybillNo()); |
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
StringBuffer sb1 = new StringBuffer(); |
|
|
|
|
StringBuffer sb3 = new StringBuffer(); |
|
|
|
|
|
|
|
|
|
if (collect.isEmpty()) { |
|
|
|
|
|
|
|
|
|
if (waybillDetailByWaybillNoVos != null && !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); |
|
|
|
|
|
|
|
|
|
if (waybillDetailByWaybillNoVos != null) { |
|
|
|
|
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 (1 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "部分签收"; |
|
|
|
|
} else if (2 == statisticsOrderInfoVO.getSignStatus()) { |
|
|
|
|
signName = "已签收"; |
|
|
|
|
} |
|
|
|
|
// statisticsOrderInfoExportVO.setSignStatus();
|
|
|
|
|
statisticsOrderInfoExportVO.setSignStatusName(signName); |
|
|
|
|
|
|
|
|
|
result.add(statisticsOrderInfoExportVO); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Integer findBalanceOrderStatus(Long waybillId) { |
|
|
|
|
|
|
|
|
|