|
|
|
@ -174,7 +174,7 @@ public class DeliverFinishReportListener implements ReportService {
|
|
|
|
|
if (StrUtil.isNotEmpty(deliveryKind) && StrUtil.equals(deliveryKind, "自主配送")) { |
|
|
|
|
if (StrUtil.isNotEmpty(qualityDeliverEntity.getDeliveryType()) |
|
|
|
|
&& (StrUtil.equals(qualityDeliverEntity.getDeliveryType(), "商配") || StrUtil.equals(qualityDeliverEntity.getDeliveryType(), "市配"))) { |
|
|
|
|
if(StrUtil.isEmpty(qualityDeliverEntity.getSignCarType())){ |
|
|
|
|
if (StrUtil.isEmpty(qualityDeliverEntity.getSignCarType())) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
ExpenseDispatchClientDTO expenseDispatchClientDTO = expenseDispatchClient.findPriceByDriverId(qualityDeliverEntity.getWarehouseId(), driverId, qualityDeliverEntity.getSignCarTypeId(), qualityDeliverEntity.getDeliveryType()); |
|
|
|
@ -186,7 +186,7 @@ public class DeliverFinishReportListener implements ReportService {
|
|
|
|
|
// 整车计费,则车内的每个包件分摊整车成本费用
|
|
|
|
|
if (ynWholeVehicle) { |
|
|
|
|
String wholeVehicleCost = priceVO.getWholeVehicleCost(); |
|
|
|
|
if(StrUtil.isNotEmpty(wholeVehicleCost)){ |
|
|
|
|
if (StrUtil.isNotEmpty(wholeVehicleCost)) { |
|
|
|
|
BigDecimal div = NumberUtil.div(new BigDecimal(wholeVehicleCost), totalNum); |
|
|
|
|
for (Map.Entry<Long, QualityDeliverEntity> entityEntry : valueMap.entrySet()) { |
|
|
|
|
QualityDeliverEntity value2 = entityEntry.getValue(); |
|
|
|
@ -283,10 +283,14 @@ public class DeliverFinishReportListener implements ReportService {
|
|
|
|
|
// 装卸费单价
|
|
|
|
|
String loadingUnloadingFee = expenseDispatchPriceCategoryVO.getLoadingUnloadingFee(); |
|
|
|
|
// 上楼层数
|
|
|
|
|
//
|
|
|
|
|
Integer stairsNumber = 0; |
|
|
|
|
if (addvaluePackageMap.containsKey(entity.getOrderPackageCode())) { |
|
|
|
|
stairsNumber = Convert.toInt(addvaluePackageMap.get(entity.getOrderPackageCode())); |
|
|
|
|
if (addvaluePackageMap.containsKey(entity.getOrderPackageCode() + "1")) { |
|
|
|
|
stairsNumber = Convert.toInt(addvaluePackageMap.get(entity.getOrderPackageCode() + "1")); |
|
|
|
|
} |
|
|
|
|
// 平移米数
|
|
|
|
|
Integer translationNumber = 0; |
|
|
|
|
if (addvaluePackageMap.containsKey(entity.getOrderPackageCode() + "3")) { |
|
|
|
|
translationNumber = Convert.toInt(addvaluePackageMap.get(entity.getOrderPackageCode() + "3")); |
|
|
|
|
} |
|
|
|
|
// 签收数量
|
|
|
|
|
Integer signNum = entity.getSignNum(); |
|
|
|
@ -294,15 +298,15 @@ public class DeliverFinishReportListener implements ReportService {
|
|
|
|
|
// 上楼费成本 = 上楼费单价 * 上楼层数 * 签收件数
|
|
|
|
|
QualityDeliverEntity qualityDeliverEntity1 = valueMap.get(entity.getId()); |
|
|
|
|
if (ObjectUtil.isNotEmpty(stairsNumber) && StrUtil.isNotEmpty(stairsCharge)) { |
|
|
|
|
qualityDeliverEntity1.setApstairsCost(NumberUtil.mul(stairsNumber, new BigDecimal(stairsCharge))); |
|
|
|
|
qualityDeliverEntity1.setApstairsCost(NumberUtil.mul(stairsNumber, new BigDecimal(stairsCharge), signNum)); |
|
|
|
|
} |
|
|
|
|
// 分货费成本 = 分货费单价 * 签收件数
|
|
|
|
|
if (StrUtil.isNotEmpty(cargoSplittingFee)) { |
|
|
|
|
qualityDeliverEntity1.setApartCost(NumberUtil.mul(signNum, new BigDecimal(cargoSplittingFee))); |
|
|
|
|
} |
|
|
|
|
// 平移费成本 = 平移费单价 * 签收件数
|
|
|
|
|
// 平移费成本 = 平移费单价 * 平移米数 * 签收件数
|
|
|
|
|
if (StrUtil.isNotEmpty(translationFee)) { |
|
|
|
|
qualityDeliverEntity1.setMoveCost(NumberUtil.mul(signNum, new BigDecimal(translationFee))); |
|
|
|
|
qualityDeliverEntity1.setMoveCost(NumberUtil.mul(translationNumber, new BigDecimal(translationFee), signNum)); |
|
|
|
|
} |
|
|
|
|
// 装卸费成本 = 装卸费单价 * 签收件数
|
|
|
|
|
if (StrUtil.isNotEmpty(loadingUnloadingFee)) { |
|
|
|
@ -742,18 +746,22 @@ public class DeliverFinishReportListener implements ReportService {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 是否点位补贴成本 是 计算成本
|
|
|
|
|
// 是否点位补贴成本 是 打卡点位数 * 单价 / 总件数
|
|
|
|
|
Integer ynSiteSubsidy = rule.getYnSiteSubsidy(); |
|
|
|
|
if (NumberUtil.equals(ynSiteSubsidy, BooleanZeroOneEnums.YES.getCode())) { |
|
|
|
|
if (CollUtil.isEmpty(allRouteMap) || CollUtil.isEmpty(firstRouteMap)) { |
|
|
|
|
initRule(value, allRouteMap, firstRouteMap); |
|
|
|
|
} |
|
|
|
|
Set<Long> longs = valueMap.keySet(); |
|
|
|
|
Integer dkp = 0; |
|
|
|
|
if(CollUtil.isNotEmpty(allRouteMap)){ |
|
|
|
|
dkp = allRouteMap.keySet().size(); |
|
|
|
|
} |
|
|
|
|
for (Map.Entry<Long, QualityDeliverEntity> entityEntry : valueMap.entrySet()) { |
|
|
|
|
QualityDeliverEntity value2 = entityEntry.getValue(); |
|
|
|
|
String siteSubsidyCost = priceVO.getSiteSubsidyCost(); |
|
|
|
|
if (StrUtil.isNotEmpty(siteSubsidyCost)) { |
|
|
|
|
value2.setPointAllowCost(NumberUtil.div(NumberUtil.mul(longs.size(), new BigDecimal(siteSubsidyCost)), totalNum)); |
|
|
|
|
value2.setPointAllowCost(NumberUtil.div(NumberUtil.mul(dkp, new BigDecimal(siteSubsidyCost)), totalNum)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|