|
|
|
@ -37,6 +37,7 @@ import org.springblade.core.secure.utils.AuthUtil;
|
|
|
|
|
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.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
@ -90,10 +91,12 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
merchantStatisticsDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IPage<StatisticsOrderInfoVO> statisticsOrderInfoVOIPage = baseMapper.pageList(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
|
|
|
|
@ -105,8 +108,6 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
// 通过运单号进行分组
|
|
|
|
|
Map<Long, List<WaybillDetailByWaybillNoVo>> waybillDetailByWaybillIdMap = waybillDetailByWaybillId.stream().collect(Collectors.groupingBy(WaybillDetailByWaybillNoVo::getWaybillId)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<Long, StatisticsPackageFeeInfoVO> orderPackageInfoMap; |
|
|
|
|
if(CollUtil.isNotEmpty(orderInfoIdList)){ |
|
|
|
|
List<StatisticsPackageFeeInfoVO> orderPackageInfoList = baseMapper.findPackageListByOrderIdsGroupById(orderInfoIdList); |
|
|
|
@ -125,9 +126,6 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
records.forEach(statisticsOrderInfoVO -> { |
|
|
|
|
// Long waybillId = statisticsOrderInfoVO.getWaybillId();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long orderInfoId = statisticsOrderInfoVO.getOrderInfoId(); |
|
|
|
|
if(orderPackageInfoMap!=null){ |
|
|
|
|
|
|
|
|
@ -138,6 +136,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
// 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()); |
|
|
|
|
|
|
|
|
@ -165,6 +164,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
|
|
|
|
|
statisticsOrderInfoVO.setGoodsNum(sb.toString()); |
|
|
|
|
statisticsOrderInfoVO.setGoodsPrice(sb1.toString()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|