|
|
@ -26,12 +26,7 @@ import com.logpm.statistics.dto.MerchantStatisticsDTO; |
|
|
|
import com.logpm.statistics.entity.*; |
|
|
|
import com.logpm.statistics.entity.*; |
|
|
|
import com.logpm.statistics.mapper.StatisticsOrderInfoMapper; |
|
|
|
import com.logpm.statistics.mapper.StatisticsOrderInfoMapper; |
|
|
|
import com.logpm.statistics.service.*; |
|
|
|
import com.logpm.statistics.service.*; |
|
|
|
import com.logpm.statistics.vo.StatisticsChangesRecordVO; |
|
|
|
import com.logpm.statistics.vo.*; |
|
|
|
import com.logpm.statistics.vo.StatisticsOrderInfoExportVO; |
|
|
|
|
|
|
|
import com.logpm.statistics.vo.StatisticsOrderInfoVO; |
|
|
|
|
|
|
|
import com.logpm.statistics.vo.StatisticsPackageFeeInfoVO; |
|
|
|
|
|
|
|
import com.logpm.statistics.vo.StatisticsReconciliationOrderInfoVO; |
|
|
|
|
|
|
|
import com.logpm.statistics.vo.WaybillDetailByWaybillNoVo; |
|
|
|
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springblade.common.enums.BooleanZeroOneEnums; |
|
|
|
import org.springblade.common.enums.BooleanZeroOneEnums; |
|
|
@ -46,16 +41,7 @@ import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.*; |
|
|
|
import java.util.Arrays; |
|
|
|
|
|
|
|
import java.util.Collections; |
|
|
|
|
|
|
|
import java.util.Comparator; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
import java.util.HashSet; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
@ -110,12 +96,17 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr |
|
|
|
List<StatisticsOrderInfoVO> records = statisticsOrderInfoVOIPage.getRecords(); |
|
|
|
List<StatisticsOrderInfoVO> records = statisticsOrderInfoVOIPage.getRecords(); |
|
|
|
//把records中所有的orderInfoId放入一个集合
|
|
|
|
//把records中所有的orderInfoId放入一个集合
|
|
|
|
List<Long> orderInfoIdList = records.stream().map(StatisticsOrderInfoVO::getOrderInfoId).collect(Collectors.toList()); |
|
|
|
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); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 通过运单号进行分组
|
|
|
|
|
|
|
|
Map<Long, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillId)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<String> waybillNoList = records.stream().map(StatisticsOrderInfoVO::getOrderCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 运单ID集合
|
|
|
|
|
|
|
|
// Set<Long> warehouseIdSet = records.stream().map(StatisticsOrderInfoVO::getWaybillId).collect(Collectors.toSet());
|
|
|
|
|
|
|
|
// List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVoList;
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
if(CollUtil.isNotEmpty(orderInfoIdList)){ |
|
|
|
if(CollUtil.isNotEmpty(orderInfoIdList)){ |
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupById(orderInfoIdList); |
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupById(orderInfoIdList); |
|
|
@ -129,32 +120,55 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
orderPackageInfoMap = null; |
|
|
|
orderPackageInfoMap = null; |
|
|
|
} |
|
|
|
} |
|
|
|
// if(CollUtil.isNotEmpty(warehouseIdSet)){
|
|
|
|
|
|
|
|
// waybillDetailByWaybillNoVoList = baseMapper.findWaybillDetailByWaybillId(warehouseIdSet);
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
|
|
|
|
// waybillDetailByWaybillNoVoList = null;
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
records.forEach(statisticsOrderInfoVO -> { |
|
|
|
records.forEach(statisticsOrderInfoVO -> { |
|
|
|
Long waybillId = statisticsOrderInfoVO.getWaybillId(); |
|
|
|
// Long waybillId = statisticsOrderInfoVO.getWaybillId();
|
|
|
|
WaybillDetailByWaybillNoVo waybillDetailByWaybillNoVo1 = null; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long orderInfoId = statisticsOrderInfoVO.getOrderInfoId(); |
|
|
|
Long orderInfoId = statisticsOrderInfoVO.getOrderInfoId(); |
|
|
|
if(orderPackageInfoMap!=null){ |
|
|
|
if(orderPackageInfoMap!=null){ |
|
|
|
|
|
|
|
|
|
|
|
StatisticsPackageFeeInfoVO statisticsPackageFeeInfoVO = orderPackageInfoMap.get(orderInfoId); |
|
|
|
StatisticsPackageFeeInfoVO statisticsPackageFeeInfoVO = orderPackageInfoMap.get(orderInfoId); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(statisticsPackageFeeInfoVO!=null){ |
|
|
|
if(statisticsPackageFeeInfoVO!=null){ |
|
|
|
statisticsPackageFeeInfoVO.setGoodsName(statisticsOrderInfoVO.getGoodsName()); |
|
|
|
// statisticsPackageFeeInfoVO.setGoodsName(statisticsOrderInfoVO.getGoodsName());
|
|
|
|
BeanUtil.copy(statisticsPackageFeeInfoVO, statisticsOrderInfoVO); |
|
|
|
BeanUtil.copy(statisticsPackageFeeInfoVO, statisticsOrderInfoVO); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String[] split = statisticsOrderInfoVO.getGoodsName().split(","); |
|
|
|
|
|
|
|
List<WaybillDetailByWaybillNoVo> waybillDetailByWaybillNoVos = waybillDetailByWaybillIdMap.get(statisticsOrderInfoVO.getWaybillId()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
|
|
|
|
StringBuffer sb1 = new StringBuffer(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (String s : split) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(","); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
sb.append(waybillDetailByWaybillNoVo.getNum()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!sb1.toString().isEmpty()){ |
|
|
|
|
|
|
|
sb1.append(","); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
sb1.append(waybillDetailByWaybillNoVo.getPrice()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVO.setGoodsNum(sb.toString()); |
|
|
|
|
|
|
|
statisticsOrderInfoVO.setGoodsPrice(sb1.toString()); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// if(waybillDetailByWaybillNoVoList!=null){
|
|
|
|
|
|
|
|
// waybillDetailByWaybillNoVo1 = waybillDetailByWaybillNoVoList.stream().filter(waybillDetailByWaybillNoVo -> Objects.equals(waybillDetailByWaybillNoVo.getWaybillId(), waybillId)).findFirst().orElse(null);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if(waybillDetailByWaybillNoVo1!=null){
|
|
|
|
|
|
|
|
// statisticsOrderInfoVO.setGoodsName(waybillDetailByWaybillNoVo1.getGoodsName());
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVOIPage.setRecords(records); |
|
|
|
statisticsOrderInfoVOIPage.setRecords(records); |
|
|
|