Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dist.1.3.0
pref_mail@163.com 10 months ago
parent
commit
2d6958aa2f
  1. 2
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataPriceClient.java
  2. 2
      blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdatPriceApiVO.java
  3. 6
      blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/entity/StatisticsDistributionPackageEntity.java
  4. 4
      blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/entity/StatisticsWarehousePackageEntity.java
  5. 2
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataPriceClient.java
  6. 20
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java
  7. 43
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java
  8. 6
      blade-service/logpm-report/src/main/java/com/logpm/report/reader/DeliveryTrainReader.java
  9. 17
      blade-service/logpm-report/src/main/java/com/logpm/report/service/ReportDataService.java
  10. 6
      blade-service/logpm-report/src/main/java/com/logpm/report/service/ReportDeliverService.java
  11. 115
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportDataServiceImpl.java
  12. 97
      blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportDeliverServiceImpl.java
  13. 135
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/controller/MerchantStatisticsController.java
  14. 66
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/PackageFanoutListener.java
  15. 8
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/IStatisticsOrderInfoService.java
  16. 704
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/impl/StatisticsOrderInfoServiceImpl.java
  17. 18
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/feign/TrunklinePackageTrackLogClient.java
  18. 6
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/IPackageTrackLogAsyncService.java
  19. 4
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/ITrunklineWaybillPackageService.java
  20. 15
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/PackageTrackLogAsyncServiceImpl.java
  21. 4
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java
  22. 5
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineWaybillPackageServiceImpl.java

2
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/feign/IBasicdataPriceClient.java

@ -38,6 +38,6 @@ public interface IBasicdataPriceClient {
String PRICE = API_PREFIX + "/pirce";
@PostMapping(PRICE)
PriceClientVO pirce(@RequestBody BasicdatPriceApiVO param);
PriceClientVO price(@RequestBody BasicdatPriceApiVO param);
}

2
blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/vo/BasicdatPriceApiVO.java

@ -17,6 +17,7 @@
package com.logpm.basicdata.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Builder;
import lombok.Data;
import javax.validation.constraints.NotEmpty;
@ -28,6 +29,7 @@ import java.io.Serializable;
* @author cyz
* @since 2023-06-08
*/
@Builder
@Data
public class BasicdatPriceApiVO implements Serializable {
private static final long serialVersionUID = 1L;

6
blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/entity/StatisticsDistributionPackageEntity.java

@ -90,6 +90,12 @@ public class StatisticsDistributionPackageEntity extends TenantEntity {
@ApiModelProperty(value = "品类Id")
private String productId;
/**
* 配送车次号
*/
@ApiModelProperty(value = "配送车次号")
private String trainNumber;
/**
* 件数
*/

4
blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/entity/StatisticsWarehousePackageEntity.java

@ -108,6 +108,10 @@ public class StatisticsWarehousePackageEntity extends TenantEntity {
private BigDecimal openPrice;
private BigDecimal totalPrice;
private Date incomingTime;
@ApiModelProperty(value = "签收时间")
private Date signTime;
@ApiModelProperty(value = "末端仓入库时间")
private Date warehouseEntryTimeEnd;
private Date outingTime;
private String warehouseFeeInterval;
private BigDecimal warehouseServiceFee;

2
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/feign/BasicdataPriceClient.java

@ -37,7 +37,7 @@ public class BasicdataPriceClient implements IBasicdataPriceClient {
private final IBasicdataPriceService basicdataPriceService;
@Override
public PriceClientVO pirce(BasicdatPriceApiVO param) {
public PriceClientVO price(BasicdatPriceApiVO param) {
return basicdataPriceService.price(param);
}

20
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/service/impl/BasicdataPriceServiceImpl.java

@ -43,7 +43,6 @@ import com.logpm.basicdata.entity.BasicdataPriceTemplateEntity;
import com.logpm.basicdata.entity.BasicdataStoreBrandEntity;
import com.logpm.basicdata.enums.CostTypeEnums;
import com.logpm.basicdata.enums.DispatchPricingTypeEnums;
import com.logpm.basicdata.enums.DispatchTypeEnums;
import com.logpm.basicdata.enums.FullVehicleTypeEnums;
import com.logpm.basicdata.enums.GeneralServiceTypeEnums;
import com.logpm.basicdata.enums.PickupPricingTypeEnums;
@ -415,6 +414,9 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
// 根据客户信息查找价格
String clientId = param.getClientId();
String brandId = param.getBrandId();
if (!ObjectUtil.isAllNotEmpty(clientId, brandId)) {
return null;
}
BasicdataPriceEntity priceEntity = null;
LambdaQueryWrapper<BasicdataPriceEntity> wrapper = Wrappers.<BasicdataPriceEntity>lambdaQuery()
.eq(BasicdataPriceEntity::getClientId, clientId)
@ -581,7 +583,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
// 封装整车车型 车型名称为key
Map<String, String> vehicleTypeMap = new HashMap<>();
initVehicleTypeMap(vehicleTypeMap);
//整车
// 整车
checkFullExcel(fullVehicleExcels, clientEntityMap, priceEntityMap, provinceMap, provinceCityMap, provinceCityAearMap, vehicleTypeMap, message, sheet6);
if (StrUtil.isNotEmpty(message.toString())) {
return message.toString();
@ -661,7 +663,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
// 封装整车车型 车型名称为key
Map<String, String> vehicleTypeMap = new HashMap<>();
initVehicleTypeMap(vehicleTypeMap);
//整车
// 整车
checkFullExcelV2(fullVehicleExcels, clientEntityMap, priceEntityMap, provinceMap, provinceCityMap,
provinceCityAearMap, vehicleTypeMap, message, sheet2, clientBrandMap, templateMap);
if (StrUtil.isNotEmpty(message.toString())) {
@ -3351,7 +3353,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
Map<String, BasicdataBrandEntity> brandEntityMap, Map<String, BasicdataPriceEntity> priceEntityMap,
Map<String, BasicdataStoreBrandEntity> clientBrandMap, Map<String, List<BasicdataPriceEntity>> checkPriceEntityMap) {
if (CollUtil.isNotEmpty(priceExcels)) {
Map<String,String> checkRepeatMap = new HashMap<>();
Map<String, String> checkRepeatMap = new HashMap<>();
for (int i = 0; i < priceExcels.size(); i++) {
StringBuilder rowMessage = new StringBuilder();
int rowNum = i + 2;
@ -3378,7 +3380,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
brandFlag = Boolean.TRUE;
}
}
checkRepeatMap.put(priceExcel.getClient() + priceExcel.getBrand(),priceExcel.getClient() + priceExcel.getBrand());
checkRepeatMap.put(priceExcel.getClient() + priceExcel.getBrand(), priceExcel.getClient() + priceExcel.getBrand());
Boolean templateFlag = Boolean.FALSE;
if (StrUtil.isEmpty(priceExcel.getTemplateName())) {
rowMessage.append("模板名称不能为空;");
@ -3567,7 +3569,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
private PriceDispatchVO initDispatch(BasicdataPriceEntity priceEntity, BasicdataPriceTemplateEntity templateEntity, List<BasicdataPriceFullVehicleEntity> fullVehicleEntities, Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> dispatchMap, List<BasicdataPriceGeneralEntity> generalEntities, List<BasicdataPriceGeneralEntity> generalEntities1) {
PriceDispatchVO priceDispatchVO = new PriceDispatchVO();
String dispatchPricingType = templateEntity.getDispatchPricingType();
//品类
// 品类
Map<Integer, List<BasicdataPriceCategoryDispatchEntity>> categoryBasicMap = new HashMap<>();
List<BasicdataPriceCategoryDispatchEntity> dispatchEntities = dispatchMap.get(CostTypeEnums.NOMAL.getCode());
if (CollUtil.isNotEmpty(dispatchEntities)) {
@ -3583,7 +3585,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
});
}
if (ObjectUtil.isNotEmpty(dispatchPricingType)) {
//整车
// 整车
if (ObjectUtil.contains(dispatchPricingType, DispatchPricingTypeEnums.COMPLETE_VEHICLE.getCode().toString())) {
if (CollUtil.isNotEmpty(fullVehicleEntities)) {
List<BasicdataPriceFullVehicleVO> basicVOList = new ArrayList<>();
@ -3660,7 +3662,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
priceDispatchVO.setTonCost(basicVOList);
}
//按吨公里
// 按吨公里
if (ObjectUtil.contains(dispatchPricingType, DispatchPricingTypeEnums.TON_PER_KILOMETER.getCode().toString())) {
List<PriceDispatchBasicVO> basicVOList = new ArrayList<>();
List<BasicdataPriceCategoryDispatchEntity> basicEntities = categoryBasicMap.get(DispatchPricingTypeEnums.TON_PER_KILOMETER.getCode());
@ -3675,7 +3677,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
}
//附加费
// 附加费
List<BasicdataPriceCategoryDispatchEntity> dispatchEntities1 = dispatchMap.get(CostTypeEnums.ADD.getCode());
if (CollUtil.isNotEmpty(dispatchEntities1)) {
List<PriceDispatchAdditionalVO> basicVOList = new ArrayList<>();

43
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java

@ -16,6 +16,8 @@
*/
package com.logpm.distribution.service.impl;
import cn.hutool.core.date.DatePattern;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.date.DateUtil;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSON;
@ -2517,7 +2519,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
warehouseUpdownTypeClient.downPackageOrDelTray(loadscanEntity.getOrderPackageCode(), myCurrentWarehouse.getId(), "签收下架解托");
//维护订单状态
String content = "包件在"+myCurrentWarehouse.getName()+"由"+loadscanEntity.getSigningUser()+"扫描签收,装车方式:扫描装车,配送车次号:"+deliveryListEntity.getTrainNumber()+"预约任务号:"+distributionReservationEntity.getReservationCode();
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode());
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode(), deliveryListEntity.getTrainNumber(),parcelListEntity.getWarehouseEntryTimeEnd());
aaa.add(trunklinePackageTrackLog);
orderPackageCodes.add(loadscanEntity.getOrderPackageCode());
} else {
@ -2594,7 +2596,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
packageLockIds.add(distributionLoadscanEntity.getPackageId());
String content = "包件在"+myCurrentWarehouse.getName()+"由"+distributionLoadscanEntity.getSigningUser()+"扫描签收,装车方式:补录装车,配送车次号:"+deliveryListEntity.getTrainNumber()+"预约任务号:"+distributionReservationEntity.getReservationCode();
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode());
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode(), deliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
aaa.add(trunklinePackageTrackLog);
orderPackageCodes.add(distributionLoadscanEntity.getOrderPackageCode());
}
@ -2833,12 +2835,13 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
String content = "";
if (Func.isNotEmpty(collect) && collect.size() == 1) {
//存在则查询该包件是否进行装车
DistributionParcelListEntity parcelListEntity = collect.get(0);
JSONObject trunklinePackageTrackLog= new JSONObject();
DistributionLoadscanEntity loadscanEntity = distributionLoadscanMapper.selectOne(Wrappers.<DistributionLoadscanEntity>query().lambda()
.ne(DistributionLoadscanEntity::getScanStatus, 1)
.eq(DistributionLoadscanEntity::getReservationId, distrilbutionloadingscanDTO.getReservationId())
.eq(DistributionLoadscanEntity::getDeliveryId, distrilbutionloadingscanDTO.getDeliveryId())
.eq(DistributionLoadscanEntity::getOrderPackageCode, collect.get(0).getOrderPackageCode()));
.eq(DistributionLoadscanEntity::getOrderPackageCode, parcelListEntity.getOrderPackageCode()));
if (Func.isNotEmpty(loadscanEntity)) {
if (loadscanEntity.getSignforState().equals(2)) {
return Resp.scanFail("重复扫描", "重复扫描");
@ -2864,7 +2867,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
warehouseUpdownTypeClient.downPackageOrDelTray(loadscanEntity.getOrderPackageCode(), myCurrentWarehouse.getId(), "签收下架解托");
content = "包件在"+myCurrentWarehouse.getName()+"由"+AuthUtil.getNickName()+"后台签收,装车方式:扫描装车,配送车次号:"+deliveryListEntity.getTrainNumber()+"预约任务号:"+distributionReservationEntity.getReservationCode();
try {
trunklinePackageTrackLog =handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),loadscanEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode());
trunklinePackageTrackLog =handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),loadscanEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode(), deliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
}catch (Exception e){
log.error("装车日志数据错误",e);
}
@ -2909,20 +2912,20 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
}
Date loadScanTime = new Date();
distributionLoadscanEntity.setScanTime(simpleDateFormat.format(loadScanTime));
distributionLoadscanEntity.setPackageId(collect.get(0).getId());
distributionLoadscanEntity.setOrderPackageCode(collect.get(0).getOrderPackageCode());
distributionLoadscanEntity.setPackageId(parcelListEntity.getId());
distributionLoadscanEntity.setOrderPackageCode(parcelListEntity.getOrderPackageCode());
Date signingTime = new Date(System.currentTimeMillis() + (1000 * 60));
distributionLoadscanEntity.setSigningTime(simpleDateFormat.format(signingTime));
distributionLoadscanEntity.setReceivedQuantity(collect.get(0).getQuantity());
distributionLoadscanEntity.setReceivedQuantity(parcelListEntity.getQuantity());
distributionLoadscanEntity.setReservationId(distrilbutionloadingscanDTO.getReservationId());
distributionLoadscanEntity.setIsSignfor(2);
distributionLoadscanEntity.setIsInsert(2);
distributionLoadscanEntity.setWarehouseId(myCurrentWarehouse.getId());
distributionLoadscanEntity.setWarehouseName(myCurrentWarehouse.getName());
distributionLoadscanEntity.setSignforState(2);
distributionLoadscanEntity.setPackageNub(collect.get(0).getQuantity());
distributionLoadscanEntity.setOrderId(collect.get(0).getStockArticleId());
distributionLoadscanEntity.setLoadedNub(collect.get(0).getQuantity());
distributionLoadscanEntity.setPackageNub(parcelListEntity.getQuantity());
distributionLoadscanEntity.setOrderId(parcelListEntity.getStockArticleId());
distributionLoadscanEntity.setLoadedNub(parcelListEntity.getQuantity());
distributionLoadscanEntity.setReservationId(distrilbutionloadingscanDTO.getReservationId());
distributionLoadscanEntity.setDeliveryId(distrilbutionloadingscanDTO.getDeliveryId());
distributionLoadscanEntity.setScanUser(AuthUtil.getUser().getNickName());
@ -2948,21 +2951,21 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
// 包件解托下架
content = "包件在"+myCurrentWarehouse.getName()+"由"+AuthUtil.getNickName()+"后台签收,装车方式:补录装车,配送车次号:"+deliveryListEntity.getTrainNumber()+"预约任务号:"+distributionReservationEntity.getReservationCode();
try {
trunklinePackageTrackLog =handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),distributionLoadscanEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode());
trunklinePackageTrackLog =handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),distributionLoadscanEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode(), deliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
}catch (Exception e){
log.error("装车日志数据错误",e);
}
aaa.add(trunklinePackageTrackLog);
}
//修改包件状态为装车、签收
DistributionParcelListEntity updatePackage = collect.get(0);
DistributionParcelListEntity updatePackage = parcelListEntity;
updatePackage.setOrderPackageLoadingStatus(OrderPackageLoadingStatusConstant.yizhuangche.getValue());
updatePackage.setOrderPackageStatus(OrderPackageStatusConstant.yiqianshou.getValue());
distributionParcelListService.updateById(updatePackage);
//维护签收包件状态
distributionStockArticleService.maintenanceOrderInfo(collect.get(0).getOrderCode(), myCurrentWarehouse.getId());
distributionStockArticleService.maintenanceOrderInfo(parcelListEntity.getOrderCode(), myCurrentWarehouse.getId());
//推送信息至工厂
distributionAsyncService.sendFactory(collect.get(0), simpleDateFormat.format(new Date()), distributionReservationEntity.getId(), distributionReservationEntity.getReservationCode(), myCurrentWarehouse.getName(), nickName);
distributionAsyncService.sendFactory(parcelListEntity, simpleDateFormat.format(new Date()), distributionReservationEntity.getId(), distributionReservationEntity.getReservationCode(), myCurrentWarehouse.getName(), nickName);
//收集包件
orderpackages.add(updatePackage.getOrderPackageCode());
@ -3274,7 +3277,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
distributionLoadscanService.updateById(distributionLoadscanEntity);
distributionSignforMapper.updateSignforNum(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(), distributionLoadscanEntity.getPackageNub());
}
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode());
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode(), distributionDeliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
aaa.add(trunklinePackageTrackLog);
assert loadscanEntity != null;
@ -3347,7 +3350,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
Integer i = distributionDeliveryListMapper.updateloadingTimeById(distrilbutionloadingscanDTO.getDeliveryId());
//修改包件装车、签收状态
packageLockIds.add(distributionLoadscanEntity.getPackageId());
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode());
JSONObject trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode(), distributionDeliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
aaa.add(trunklinePackageTrackLog);
} else {
@ -5187,7 +5190,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
jsonObject.put("remark","批量签收下架");
jsonObjects.add(jsonObject);
content = "包件在"+myCurrentWarehouse.getName()+"由"+loadscanEntity.getSigningUser()+"司机司机批量签收,装车方式:扫描装车,配送车次号:"+distributionDeliveryListEntity.getTrainNumber()+"预约任务号:"+reservationEntity.getReservationCode();
trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode());
trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode(), distributionDeliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
} else {
//存在装车数据
@ -5209,7 +5212,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
distributionLoadscanService.updateById(loadscanEntities);
packageLockIds.add(loadscanEntities.getPackageId());
content = "包件在"+myCurrentWarehouse.getName()+"由"+loadscanEntities.getSigningUser()+"司机批量签收,装车方式:补录装车,配送车次号:"+distributionDeliveryListEntity.getTrainNumber()+"预约任务号:"+reservationEntity.getReservationCode();
trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode());
trunklinePackageTrackLog= handleLogJSONObject(myCurrentWarehouse,AuthUtil.getUser(),parcelListEntity.getOrderPackageCode(),content,WorkNodeEnums.DISTRIBUTION_ABNORMAL_SIGN_FOR.getCode(),distributionDeliveryListEntity.getTrainNumber(), parcelListEntity.getWarehouseEntryTimeEnd());
}
}
@ -6507,7 +6510,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
}
private JSONObject handleLogJSONObject(BasicdataWarehouseEntity warehouse,BladeUser user,String orderPackageCode,String content,Integer node) {
private JSONObject handleLogJSONObject(BasicdataWarehouseEntity warehouse, BladeUser user, String orderPackageCode, String content, Integer node, String trainNumber, Date warehouseEntryTimeEnd) {
JSONObject trunklinePackageTrackLog = new JSONObject();
trunklinePackageTrackLog.put("tenantId",user.getTenantId());
trunklinePackageTrackLog.put("createTime",new Date());
@ -6522,6 +6525,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
trunklinePackageTrackLog.put("warehouseName",warehouse.getName());
trunklinePackageTrackLog.put("workNode",node);
trunklinePackageTrackLog.put("content",content);
trunklinePackageTrackLog.put("trainNumber",trainNumber);
trunklinePackageTrackLog.put("warehouseEntryTimeEnd", DateUtil.format(warehouseEntryTimeEnd, DatePattern.NORM_DATETIME_PATTERN));
trunklinePackageTrackLog.put("operator",user.getNickName());
return trunklinePackageTrackLog;
}

6
blade-service/logpm-report/src/main/java/com/logpm/report/reader/DeliveryTrainReader.java

@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.report.mapper.ReportDeliverMapeer;
import com.logpm.report.service.ExportReader;
import com.logpm.report.service.ReportDataService;
import org.apache.poi.ss.formula.functions.T;
import org.springframework.stereotype.Component;
@ -20,6 +21,9 @@ public class DeliveryTrainReader implements ExportReader {
@Resource
private ReportDeliverMapeer reportDeliverMapeer;
@Resource
private ReportDataService reportDataService;
@Override
public Long getCount(Wrapper query) {
Page page = new Page(1, 1);
@ -29,7 +33,7 @@ public class DeliveryTrainReader implements ExportReader {
@Override
public List<T> findList(Page page, Wrapper query) {
return reportDeliverMapeer.getDeliveryTrainPage(page, query);
return reportDataService.getReportDevilerVOList(page, query);
}
}

17
blade-service/logpm-report/src/main/java/com/logpm/report/service/ReportDataService.java

@ -0,0 +1,17 @@
package com.logpm.report.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.vo.ReportDevilerVO;
import java.util.List;
/**
* @Author: zqb
* @Date: 2024/6/21
*/
public interface ReportDataService {
List<ReportDevilerVO> getReportDevilerVOList(IPage<ReportDevilerVO> page, Wrapper queryWrapper);
}

6
blade-service/logpm-report/src/main/java/com/logpm/report/service/ReportDeliverService.java

@ -1,6 +1,8 @@
package com.logpm.report.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.report.query.DevilerDetailsQuery;
import com.logpm.report.query.ReportCustomerQuery;
import com.logpm.report.query.ReportDevilerQuery;
@ -9,8 +11,10 @@ import com.logpm.report.vo.ReportCustomerVO;
import com.logpm.report.vo.ReportDetailVO;
import com.logpm.report.vo.ReportDevilerVO;
import com.logpm.report.vo.StockOrderVO;
import org.apache.poi.ss.formula.functions.T;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
/**
* @author zhaoqiaobo
@ -87,4 +91,6 @@ public interface ReportDeliverService {
* @param query
*/
void exportStockOrder(HttpServletResponse response, StockOrderVO vo, StockOrderQuery query);
List<T> getDeliveryTrainPageReader(Page page, Wrapper query);
}

115
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportDataServiceImpl.java

@ -0,0 +1,115 @@
package com.logpm.report.service.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.report.dto.DeliveryTrainLoadedScanDTO;
import com.logpm.report.mapper.ReportDeliverMapeer;
import com.logpm.report.service.ReportDataService;
import com.logpm.report.vo.ReportDevilerVO;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.jetbrains.annotations.NotNull;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.stream.Collectors;
/**
* @Author: zqb
* @Date: 2024/6/21
*/
@Service
@AllArgsConstructor
@Slf4j
public class ReportDataServiceImpl implements ReportDataService {
private final ReportDeliverMapeer reportDeliverMapeer;
@Override
public List<ReportDevilerVO> getReportDevilerVOList(IPage<ReportDevilerVO> page, Wrapper queryWrapper) {
// 查询数据
List<ReportDevilerVO> deliveryTrainPage = reportDeliverMapeer.getDeliveryTrainPage(page, queryWrapper);
// 异步组装统计数据
asyncBuildDeliveryTrainPage(deliveryTrainPage);
return deliveryTrainPage;
}
private void asyncBuildDeliveryTrainPage(List<ReportDevilerVO> deliveryTrainPage) {
List<Long> ids = deliveryTrainPage.stream().map(ReportDevilerVO::getId).collect(Collectors.toList());
// 异步查询扫描装车和异常扫描装车数据
if (CollUtil.isNotEmpty(ids)) {
// 每5000个提交一次查询
List<List<Long>> partitionedIds = CollUtil.split(ids, 5000);
List<CompletableFuture<List<DeliveryTrainLoadedScanDTO>>> futures = new ArrayList<>();
for (List<Long> idBatch : partitionedIds) {
futures.add(getTrainLoadedScanFuture(idBatch, deliveryTrainPage));
futures.add(getTrainLoadedScanInvnFuture(idBatch, deliveryTrainPage));
}
try {
CompletableFuture<Void> allFutures = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
allFutures.join();
} catch (Exception e) {
log.error("系统异常:{}", e);
}
}
}
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanInvnFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) {
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() ->
reportDeliverMapeer.getDeliveryTrainLoadSacnInvnByIds(idBatch));
future.thenAccept(list -> {
if (CollUtil.isNotEmpty(list)) {
// list 封装为map deliveryId为key
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>();
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto));
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList());
for (ReportDevilerVO reportDevilerVO : collect) {
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) {
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId());
reportDevilerVO.setInvnLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0");
reportDevilerVO.setInvnReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0");
} else {
reportDevilerVO.setInvnLoadedNum("0");
reportDevilerVO.setInvnReNum("0");
}
}
}
});
return future;
}
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) {
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() ->
reportDeliverMapeer.getDeliveryTrainLoadSacnByIds(idBatch));
future.thenAccept(list -> {
if (CollUtil.isNotEmpty(list)) {
// list 封装为map deliveryId为key
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>();
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto));
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList());
for (ReportDevilerVO reportDevilerVO : collect) {
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) {
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId());
reportDevilerVO.setLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0");
reportDevilerVO.setReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0");
reportDevilerVO.setExLoadedNum(StrUtil.isNotEmpty(dto.getExLoadedNum()) ? dto.getExLoadedNum() : "0");
reportDevilerVO.setExReNum(StrUtil.isNotEmpty(dto.getExReNum()) ? dto.getExReNum() : "0");
} else {
reportDevilerVO.setLoadedNum("0");
reportDevilerVO.setReNum("0");
reportDevilerVO.setExLoadedNum("0");
reportDevilerVO.setExReNum("0");
}
}
}
});
return future;
}
}

97
blade-service/logpm-report/src/main/java/com/logpm/report/service/impl/ReportDeliverServiceImpl.java

@ -1,13 +1,12 @@
package com.logpm.report.service.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.NumberUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient;
import com.logpm.report.dto.DeliveryTrainLoadedScanDTO;
import com.logpm.report.mapper.ReportDeliverMapeer;
import com.logpm.report.query.DevilerDetailsQuery;
import com.logpm.report.query.ReportCustomerQuery;
@ -17,6 +16,7 @@ import com.logpm.report.reader.DeliveryCustomerReader;
import com.logpm.report.reader.DeliveryDetailReader;
import com.logpm.report.reader.DeliveryTrainReader;
import com.logpm.report.reader.StockOrderReader;
import com.logpm.report.service.ReportDataService;
import com.logpm.report.service.ReportDeliverService;
import com.logpm.report.util.QueryUtil;
import com.logpm.report.util.ReportExcelUtil;
@ -26,7 +26,7 @@ import com.logpm.report.vo.ReportDetailVO;
import com.logpm.report.vo.ReportDevilerVO;
import com.logpm.report.vo.StockOrderVO;
import lombok.AllArgsConstructor;
import org.jetbrains.annotations.NotNull;
import org.apache.poi.ss.formula.functions.T;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springblade.core.log.exception.ServiceException;
@ -34,12 +34,7 @@ import org.springblade.core.mp.support.Condition;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.stream.Collectors;
/**
* @author zhaoqiaobo
@ -56,6 +51,7 @@ public class ReportDeliverServiceImpl implements ReportDeliverService {
private final DeliveryDetailReader deliveryDetailReader;
private final StockOrderReader stockOrderReader;
private final IBasicdataWarehouseClient warehouseClient;
private final ReportDataService reportDataService;
@Override
public IPage<ReportDevilerVO> deliveryTrainPage(ReportDevilerVO vo, ReportDevilerQuery query) {
@ -70,86 +66,10 @@ public class ReportDeliverServiceImpl implements ReportDeliverService {
// 2 用户页面没有选择仓库,但是切换了仓库,按切换的仓库查
// 3 用户没有选择仓库,也没有切换仓库,按用户当前所有仓查询
ReportUtil.buildReportWarehouseAuth(vo.getWarehouseName(), query.getWarehouseNameRange(), queryWrapper, warehouseClient);
// 查询数据
List<ReportDevilerVO> deliveryTrainPage = reportDeliverMapeer.getDeliveryTrainPage(page, queryWrapper);
// 异步组装统计数据
asyncBuildDeliveryTrainPage(deliveryTrainPage);
List<ReportDevilerVO> deliveryTrainPage = reportDataService.getReportDevilerVOList(page, queryWrapper);
return page.setRecords(deliveryTrainPage);
}
private void asyncBuildDeliveryTrainPage(List<ReportDevilerVO> deliveryTrainPage) {
List<Long> ids = deliveryTrainPage.stream().map(ReportDevilerVO::getId).collect(Collectors.toList());
// 异步查询扫描装车和异常扫描装车数据
if (CollUtil.isNotEmpty(ids)) {
// 每5000个提交一次查询
List<List<Long>> partitionedIds = CollUtil.split(ids, 5000);
List<CompletableFuture<List<DeliveryTrainLoadedScanDTO>>> futures = new ArrayList<>();
for (List<Long> idBatch : partitionedIds) {
futures.add(getTrainLoadedScanFuture(idBatch, deliveryTrainPage));
futures.add(getTrainLoadedScanInvnFuture(idBatch, deliveryTrainPage));
}
try {
CompletableFuture<Void> allFutures = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
allFutures.join();
} catch (Exception e) {
log.error("系统异常:{}", e);
}
}
}
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanInvnFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) {
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() ->
reportDeliverMapeer.getDeliveryTrainLoadSacnInvnByIds(idBatch));
future.thenAccept(list -> {
if (CollUtil.isNotEmpty(list)) {
// list 封装为map deliveryId为key
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>();
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto));
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList());
for (ReportDevilerVO reportDevilerVO : collect) {
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) {
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId());
reportDevilerVO.setInvnLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0");
reportDevilerVO.setInvnReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0");
} else {
reportDevilerVO.setInvnLoadedNum("0");
reportDevilerVO.setInvnReNum("0");
}
}
}
});
return future;
}
private @NotNull CompletableFuture<List<DeliveryTrainLoadedScanDTO>> getTrainLoadedScanFuture(List<Long> idBatch, List<ReportDevilerVO> deliveryTrainPage) {
CompletableFuture<List<DeliveryTrainLoadedScanDTO>> future = CompletableFuture.supplyAsync(() ->
reportDeliverMapeer.getDeliveryTrainLoadSacnByIds(idBatch));
future.thenAccept(list -> {
if (CollUtil.isNotEmpty(list)) {
// list 封装为map deliveryId为key
Map<Long, DeliveryTrainLoadedScanDTO> loadedScanDTOMap = new HashMap<>();
list.forEach(dto -> loadedScanDTOMap.put(dto.getDeliveryId(), dto));
List<ReportDevilerVO> collect = deliveryTrainPage.stream().filter(reportDevilerVO -> idBatch.contains(reportDevilerVO.getId())).collect(Collectors.toList());
for (ReportDevilerVO reportDevilerVO : collect) {
if (loadedScanDTOMap.containsKey(reportDevilerVO.getId())) {
DeliveryTrainLoadedScanDTO dto = loadedScanDTOMap.get(reportDevilerVO.getId());
reportDevilerVO.setLoadedNum(StrUtil.isNotEmpty(dto.getLoadedNum()) ? dto.getLoadedNum() : "0");
reportDevilerVO.setReNum(StrUtil.isNotEmpty(dto.getReNum()) ? dto.getReNum() : "0");
reportDevilerVO.setExLoadedNum(StrUtil.isNotEmpty(dto.getExLoadedNum()) ? dto.getExLoadedNum() : "0");
reportDevilerVO.setExReNum(StrUtil.isNotEmpty(dto.getExReNum()) ? dto.getExReNum() : "0");
} else {
reportDevilerVO.setLoadedNum("0");
reportDevilerVO.setReNum("0");
reportDevilerVO.setExLoadedNum("0");
reportDevilerVO.setExReNum("0");
}
}
}
});
return future;
}
private void trainCustomQuery(ReportDevilerQuery query, QueryWrapper<ReportDevilerVO> queryWrapper) {
// 配送时间开始
QueryUtil.timeGe("task_time", query.getStartTaskTime(), queryWrapper);
@ -336,4 +256,9 @@ public class ReportDeliverServiceImpl implements ReportDeliverService {
new ReportExcelUtil().export(response, stockOrderReader, StockOrderVO.class, queryWrapper, "在库订单表");
}
@Override
public List<T> getDeliveryTrainPageReader(Page page, Wrapper query) {
return reportDataService.getReportDevilerVOList(page, query);
}
}

135
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/controller/MerchantStatisticsController.java

@ -13,7 +13,13 @@ import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.exception.CustomerException;
import org.springblade.core.tool.api.R;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.Objects;
@ -33,24 +39,24 @@ public class MerchantStatisticsController {
@ApiOperation(value = "运单维度对账单", notes = "传入merchantStatisticsDTO")
public R pageList(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############pageList: ";
log.info(method+"请求参数{}",merchantStatisticsDTO);
try{
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
Integer listType = merchantStatisticsDTO.getListType();
if(Objects.isNull(listType)){
log.warn(method+"请选择正确的列表类型 listType={}",listType);
return R.fail(405,"请选择正确的列表类型");
if (Objects.isNull(listType)) {
log.warn(method + "请选择正确的列表类型 listType={}", listType);
return R.fail(405, "请选择正确的列表类型");
}
IPage<StatisticsOrderInfoVO> pages = statisticsOrderInfoService.pageList(merchantStatisticsDTO);
return R.data(pages);
}catch (CustomerException e){
log.error(e.message,e);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常",e);
return R.fail(500,"系统异常");
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
@ -60,52 +66,51 @@ public class MerchantStatisticsController {
@ApiOperation(value = "查询订单详情", notes = "传入merchantStatisticsDTO")
public R findOrderDetail(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############findOrderDetail: ";
log.info(method+"请求参数{}",merchantStatisticsDTO);
try{
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
Long orderInfoId = merchantStatisticsDTO.getOrderInfoId();
if(Objects.isNull(orderInfoId)){
log.warn(method+"请选择正确的订单 orderInfoId={}",orderInfoId);
return R.fail(405,"请选择正确的订单");
if (Objects.isNull(orderInfoId)) {
log.warn(method + "请选择正确的订单 orderInfoId={}", orderInfoId);
return R.fail(405, "请选择正确的订单");
}
StatisticsOrderInfoVO statisticsOrderInfoVO = statisticsOrderInfoService.findOrderDetail(orderInfoId);
return R.data(statisticsOrderInfoVO);
}catch (CustomerException e){
log.error(e.message,e);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常",e);
return R.fail(500,"系统异常");
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
@ResponseBody
@PostMapping("/findChangesRecordList")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "查询订单异动记录列表", notes = "传入merchantStatisticsDTO")
public R findChangesRecordList(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############findChangesRecordList: ";
log.info(method+"请求参数{}",merchantStatisticsDTO);
try{
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
Long orderInfoId = merchantStatisticsDTO.getOrderInfoId();
if(Objects.isNull(orderInfoId)){
log.warn(method+"订单id为空 orderInfoId={}",orderInfoId);
return R.fail(405,"订单id为空");
if (Objects.isNull(orderInfoId)) {
log.warn(method + "订单id为空 orderInfoId={}", orderInfoId);
return R.fail(405, "订单id为空");
}
List<StatisticsChangesRecordVO> list = statisticsOrderInfoService.findChangesRecordList(merchantStatisticsDTO);
return R.data(list);
}catch (CustomerException e){
log.error(e.message,e);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常",e);
return R.fail(500,"系统异常");
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
@ -116,29 +121,29 @@ public class MerchantStatisticsController {
@ApiOperation(value = "新增异动金额", notes = "传入waybillDTO")
public R addChangesRecord(@RequestBody ChangesRecordDTO changesRecordDTO) {
String method = "############addChangesRecord: ";
log.info(method+"请求参数{}",changesRecordDTO);
try{
log.info(method + "请求参数{}", changesRecordDTO);
try {
Long orderInfoId = changesRecordDTO.getOrderInfoId();
if(Objects.isNull(orderInfoId)){
log.warn(method+"订单id为空 orderInfoId={}",orderInfoId);
return R.fail(405,"订单id为空");
if (Objects.isNull(orderInfoId)) {
log.warn(method + "订单id为空 orderInfoId={}", orderInfoId);
return R.fail(405, "订单id为空");
}
Long statisticsWarehouseId = changesRecordDTO.getStatisticsWarehouseId();
if(Objects.isNull(statisticsWarehouseId)){
log.warn(method+"仓库id为空 statisticsWarehouseId={}",statisticsWarehouseId);
return R.fail(405,"仓库id为空");
if (Objects.isNull(statisticsWarehouseId)) {
log.warn(method + "仓库id为空 statisticsWarehouseId={}", statisticsWarehouseId);
return R.fail(405, "仓库id为空");
}
return statisticsOrderInfoService.addChangesRecord(changesRecordDTO);
}catch (CustomerException e){
log.error(e.message,e);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常",e);
return R.fail(500,"系统异常");
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
@ -149,25 +154,35 @@ public class MerchantStatisticsController {
@ApiOperation(value = "确认结算", notes = "传入merchantStatisticsDTO")
public R checkBalance(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############checkBalance: ";
log.info(method+"请求参数{}",merchantStatisticsDTO);
try{
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
List<Long> orderInfoIds = merchantStatisticsDTO.getOrderInfoIds();
if(orderInfoIds.isEmpty()){
log.warn(method+"订单集合为空 orderInfoIds={}",orderInfoIds);
return R.fail(405,"订单集合为空");
if (orderInfoIds.isEmpty()) {
log.warn(method + "订单集合为空 orderInfoIds={}", orderInfoIds);
return R.fail(405, "订单集合为空");
}
return statisticsOrderInfoService.checkBalance(merchantStatisticsDTO);
}catch (CustomerException e){
log.error(e.message,e);
return R.fail(e.code,e.message);
}catch (Exception e){
log.error(method+"系统异常",e);
return R.fail(500,"系统异常");
} catch (CustomerException e) {
log.error(e.message, e);
return R.fail(e.code, e.message);
} catch (Exception e) {
log.error(method + "系统异常", e);
return R.fail(500, "系统异常");
}
}
@ResponseBody
@PatchMapping("/real/{id}")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "计算实际费用", notes = "计算实际费用")
public R<Boolean> calculateRealCost(@PathVariable("id") Long id) {
String method = "############calculateRealCost: ";
log.info(method + "请求参数{}", id);
return R.status(statisticsOrderInfoService.calculateRealCost(id));
}
}

66
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/PackageFanoutListener.java

@ -1,12 +1,18 @@
package com.logpm.statistics.listener.mq;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.json.JSONArray;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.logpm.statistics.entity.StatisticsDistributionPackageEntity;
import com.logpm.statistics.entity.StatisticsOrderInfoEntity;
import com.logpm.statistics.entity.StatisticsWarehousePackageEntity;
import com.logpm.statistics.service.IStatisticsDistributionPackageService;
import com.logpm.statistics.service.IStatisticsOrderInfoService;
import com.logpm.statistics.service.IStatisticsWarehousePackageService;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.constant.WorkNodeEnums;
@ -20,7 +26,12 @@ import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.util.*;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
@Slf4j
@ -29,6 +40,7 @@ import java.util.stream.Collectors;
public class PackageFanoutListener {
private final IStatisticsDistributionPackageService statisticsDistributionPackageService;
private final IStatisticsWarehousePackageService warehousePackageService;
private final IStatisticsOrderInfoService statisticsOrderInfoService;
@RabbitListener(bindings = @QueueBinding(
@ -38,23 +50,49 @@ public class PackageFanoutListener {
@Transactional(rollbackFor = Exception.class)
public void packageSignFanout(String msg) {
JSONObject jsonObject = JSONUtil.parseObj(msg);
JSONObject trainNumberMap = jsonObject.getJSONObject("mainMap");
Integer workNode = jsonObject.getInt("workNode");
if(WorkNodeEnums.SIGN_DIRECT_SHIPPER.getCode().equals(workNode)
if (WorkNodeEnums.SIGN_DIRECT_SHIPPER.getCode().equals(workNode)
|| WorkNodeEnums.SIGN_TRIPARTITE_TRANSFER_DEPART.getCode().equals(workNode)
|| WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode().equals(workNode)){
|| WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode().equals(workNode)) {
JSONArray orderPackageCodes = jsonObject.getJSONArray("orderPackageCodes");
List<String> orderPackageCodeList = orderPackageCodes.toList(String.class);
// 配送签收时将签收时间写入
if (WorkNodeEnums.DISTRIBUTION_SIGN_FOR.getCode().equals(workNode)) {
List<StatisticsWarehousePackageEntity> list = warehousePackageService.list(Wrappers.<StatisticsWarehousePackageEntity>lambdaQuery().in(StatisticsWarehousePackageEntity::getOrderPackageCode, orderPackageCodeList));
if (CollUtil.isNotEmpty(list)) {
for (StatisticsWarehousePackageEntity statisticsWarehousePackageEntity : list) {
statisticsWarehousePackageEntity.setSignTime(new Date());
if (ObjectUtil.isNotEmpty(trainNumberMap)) {
if (trainNumberMap.containsKey(statisticsWarehousePackageEntity.getOrderPackageCode())) {
JSONObject entries = JSONUtil.parseObj(trainNumberMap.get(statisticsWarehousePackageEntity.getOrderPackageCode()));
if (ObjectUtil.isNotEmpty(entries) && entries.containsKey("warehouseEntryTimeEnd")) {
statisticsWarehousePackageEntity.setWarehouseEntryTimeEnd(DateUtil.parseDate(entries.getStr("warehouseEntryTimeEnd")));
}
}
}
}
warehousePackageService.updateBatchById(list);
}
}
//如果是签收
// 如果是签收
List<StatisticsDistributionPackageEntity> statisticsDistributionList = statisticsDistributionPackageService.findListByOrderPackageCodes(orderPackageCodeList);
//修改statisticsDistributionList中所有元素的isSign为1
// 修改statisticsDistributionList中所有元素的isSign为1
Set<Long> orderInfoSet = new HashSet<>();
statisticsDistributionList.forEach(statisticsDistributionPackageEntity -> {
if (ObjectUtil.isNotEmpty(trainNumberMap)) {
if (trainNumberMap.containsKey(statisticsDistributionPackageEntity.getOrderPackageCode())) {
JSONObject entries = JSONUtil.parseObj(trainNumberMap.get(statisticsDistributionPackageEntity.getOrderPackageCode()));
statisticsDistributionPackageEntity.setTrainNumber(entries.getStr("trainNumber"));
}
}
statisticsDistributionPackageEntity.setIsSign(1);
statisticsDistributionPackageEntity.setSignTime(new Date());
String typeService = statisticsDistributionPackageEntity.getTypeService();
if("3".equals(typeService)){
if ("3".equals(typeService)) {
statisticsDistributionPackageEntity.setRealDeliveryFee(BigDecimal.ZERO);
statisticsDistributionPackageEntity.setRealDeliveryDistance(BigDecimal.ZERO);
statisticsDistributionPackageEntity.setRealDeliveryCrossingFee(BigDecimal.ZERO);
@ -69,12 +107,12 @@ public class PackageFanoutListener {
statisticsDistributionPackageService.updateBatchById(statisticsDistributionList);
List<StatisticsDistributionPackageEntity> statisticsList = statisticsDistributionPackageService.findListByOrderInfoSet(orderInfoSet);
//把statisticsList通过元素的orderInfoId进行map分组
// 把statisticsList通过元素的orderInfoId进行map分组
Map<Long, List<StatisticsDistributionPackageEntity>> groupedStatisticsList = statisticsList.stream()
.collect(Collectors.groupingBy(StatisticsDistributionPackageEntity::getOrderInfoId));
List<StatisticsOrderInfoEntity> orderInfoList = statisticsOrderInfoService.findListByOrderInfoIdsSet(orderInfoSet);
//把orderInfoList转成以id为key的map
// 把orderInfoList转成以id为key的map
Map<Long, StatisticsOrderInfoEntity> orderInfoMap = orderInfoList.stream()
.collect(Collectors.toMap(StatisticsOrderInfoEntity::getId, statisticsOrderInfoEntity -> statisticsOrderInfoEntity));
@ -85,20 +123,20 @@ public class PackageFanoutListener {
List<StatisticsDistributionPackageEntity> statisticsDistributionPackageEntities = groupedStatisticsList.get(orderInfoId);
int allSize = statisticsDistributionPackageEntities.size();
//过滤出statisticsDistributionPackageEntities中isSign等于0的元素
// 过滤出statisticsDistributionPackageEntities中isSign等于0的元素
List<StatisticsDistributionPackageEntity> unSignStatisticsDistributionPackageEntities = statisticsDistributionPackageEntities.stream()
.filter(statisticsDistributionPackageEntity -> !statisticsDistributionPackageEntity.getIsSign().equals(1))
.collect(Collectors.toList());
int unSignSize = unSignStatisticsDistributionPackageEntities.size();
if(unSignSize == 0){
if(signStatus != 2){
if (unSignSize == 0) {
if (signStatus != 2) {
statisticsOrderInfoEntity.setSignStatus(2);
}
}else{
if(unSignSize != allSize){
if(signStatus != 1){
} else {
if (unSignSize != allSize) {
if (signStatus != 1) {
statisticsOrderInfoEntity.setSignStatus(1);
}
}

8
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/IStatisticsOrderInfoService.java

@ -26,4 +26,12 @@ public interface IStatisticsOrderInfoService extends BaseService<StatisticsOrder
R checkBalance(MerchantStatisticsDTO merchantStatisticsDTO);
StatisticsOrderInfoVO findOrderDetail(Long orderInfoId);
/**
* 计算实际费用
* @param id 订单id
* @Return boolean 计算是否成功
* @Author zqb 2024/6/17
**/
boolean calculateRealCost(Long id);
}

704
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/impl/StatisticsOrderInfoServiceImpl.java

@ -1,39 +1,66 @@
package com.logpm.statistics.service.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.NumberUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.logpm.basicdata.entity.BasicdataPriceTemplateEntity;
import com.logpm.basicdata.feign.IBasicdataCodeClient;
import com.logpm.basicdata.feign.IBasicdataPriceClient;
import com.logpm.basicdata.vo.BasicdatPriceApiVO;
import com.logpm.basicdata.vo.PriceClientVO;
import com.logpm.basicdata.vo.PriceDispatchBasicVO;
import com.logpm.basicdata.vo.PriceDispatchVO;
import com.logpm.basicdata.vo.PriceWarehouseAdditionalVO;
import com.logpm.basicdata.vo.PriceWarehouseBasicVO;
import com.logpm.basicdata.vo.PriceWarehouseVO;
import com.logpm.statistics.dto.ChangesRecordDTO;
import com.logpm.statistics.dto.MerchantStatisticsDTO;
import com.logpm.statistics.entity.StatisticsBalanceOrderInfoEntity;
import com.logpm.statistics.entity.StatisticsChangesPhotoEntity;
import com.logpm.statistics.entity.StatisticsChangesRecordEntity;
import com.logpm.statistics.entity.StatisticsDistributionPackageEntity;
import com.logpm.statistics.entity.StatisticsOrderInfoEntity;
import com.logpm.statistics.entity.StatisticsWarehousePackageEntity;
import com.logpm.statistics.mapper.StatisticsOrderInfoMapper;
import com.logpm.statistics.service.IStatisticsBalanceOrderInfoService;
import com.logpm.statistics.service.IStatisticsChangesPhotoService;
import com.logpm.statistics.service.IStatisticsChangesRecordService;
import com.logpm.statistics.service.IStatisticsDistributionPackageService;
import com.logpm.statistics.service.IStatisticsOrderInfoService;
import com.logpm.statistics.service.IStatisticsWarehousePackageService;
import com.logpm.statistics.vo.StatisticsChangesRecordVO;
import com.logpm.statistics.vo.StatisticsOrderInfoVO;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.constant.CodeNumConstant;
import org.springblade.common.constant.DictBizConstant;
import org.springblade.common.enums.BooleanZeroOneEnums;
import org.springblade.common.exception.CustomerException;
import org.springblade.common.utils.CommonUtil;
import org.springblade.core.mp.base.BaseServiceImpl;
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.system.cache.DictBizCache;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.util.*;
import java.util.ArrayList;
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.atomic.AtomicReference;
import java.util.stream.Collectors;
@ -46,18 +73,21 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
private final IStatisticsChangesPhotoService changesPhotoService;
private final IBasicdataCodeClient basicdataCodeClient;
private final IStatisticsBalanceOrderInfoService balanceOrderInfoService;
private final IBasicdataPriceClient priceClient;
private final IStatisticsDistributionPackageService distributionPackageService;
private final IStatisticsWarehousePackageService warehousePackageService;
@Override
public List<StatisticsOrderInfoEntity> findListByWaybillId(Long waybillId) {
QueryWrapper<StatisticsOrderInfoEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("waybill_id",waybillId);
queryWrapper.eq("waybill_id", waybillId);
return baseMapper.selectList(queryWrapper);
}
@Override
public List<StatisticsOrderInfoEntity> findListByOrderInfoIdsSet(Set<Long> orderInfoSet) {
QueryWrapper<StatisticsOrderInfoEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.in("id",orderInfoSet);
queryWrapper.in("id", orderInfoSet);
return baseMapper.selectList(queryWrapper);
}
@ -69,7 +99,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
page.setCurrent(merchantStatisticsDTO.getPageNum());
page.setSize(merchantStatisticsDTO.getPageSize());
return baseMapper.pageList(page,merchantStatisticsDTO);
return baseMapper.pageList(page, merchantStatisticsDTO);
}
@Override
@ -77,22 +107,22 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
Long orderInfoId = merchantStatisticsDTO.getOrderInfoId();
QueryWrapper<StatisticsChangesRecordEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("order_info_id",orderInfoId);
queryWrapper.eq("order_info_id", orderInfoId);
List<StatisticsChangesRecordEntity> list = changesRecordService.list(queryWrapper);
if(list.isEmpty()){
if (list.isEmpty()) {
return CollUtil.newArrayList();
}
//获取list中所有元素的id
// 获取list中所有元素的id
List<Long> changesRecordIdList = list.stream().map(StatisticsChangesRecordEntity::getId).collect(Collectors.toList());
QueryWrapper<StatisticsChangesPhotoEntity> changesPhotoEntityQueryWrapper = new QueryWrapper<>();
changesPhotoEntityQueryWrapper.in("changes_record_id",changesRecordIdList);
changesPhotoEntityQueryWrapper.in("changes_record_id", changesRecordIdList);
List<StatisticsChangesPhotoEntity> changesPhotoEntityList = changesPhotoService.list(changesPhotoEntityQueryWrapper);
//把changesPhotoEntityList中的元素通过changesRecordId为key进行分组
// 把changesPhotoEntityList中的元素通过changesRecordId为key进行分组
Map<Long, List<StatisticsChangesPhotoEntity>> groupedEntities =
changesPhotoEntityList.stream()
.collect(Collectors.groupingBy(StatisticsChangesPhotoEntity::getChangesRecordId));
@ -100,7 +130,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
List<StatisticsChangesRecordVO> ls = new ArrayList<>();
list.forEach(statisticsChangesRecordEntity -> {
StatisticsChangesRecordVO statisticsChangesRecordVO = new StatisticsChangesRecordVO();
BeanUtil.copy(statisticsChangesRecordEntity,statisticsChangesRecordVO);
BeanUtil.copy(statisticsChangesRecordEntity, statisticsChangesRecordVO);
List<StatisticsChangesPhotoEntity> statisticsChangesPhotoEntities = groupedEntities.get(statisticsChangesRecordEntity.getId());
statisticsChangesRecordVO.setChangesPhotoEntityList(statisticsChangesPhotoEntities);
ls.add(statisticsChangesRecordVO);
@ -111,7 +141,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
@Override
public R addChangesRecord(ChangesRecordDTO changesRecordDTO) {
StatisticsChangesRecordEntity changesRecordEntity = new StatisticsChangesRecordEntity();
BeanUtil.copy(changesRecordDTO,changesRecordEntity);
BeanUtil.copy(changesRecordDTO, changesRecordEntity);
String itemRecord = verifyValue(changesRecordEntity);
@ -131,10 +161,10 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
});
changesPhotoService.saveBatch(saveList);
//把changesRecordEntity对象中的所有BigDecimal类型属性的值求和
// 把changesRecordEntity对象中的所有BigDecimal类型属性的值求和
Long orderInfoId = changesRecordEntity.getOrderInfoId();
//重新计算订单的异动金额
// 重新计算订单的异动金额
updateOrderChangesFee(orderInfoId);
return R.success("新增成功");
@ -145,7 +175,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
public R checkBalance(MerchantStatisticsDTO merchantStatisticsDTO) {
List<Long> orderInfoIds = merchantStatisticsDTO.getOrderInfoIds();
//查询对应订单的数据
// 查询对应订单的数据
List<StatisticsOrderInfoVO> list = baseMapper.findStatementListByOrderInfoIds(orderInfoIds);
Set<String> brands = new HashSet<>();
@ -167,60 +197,59 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
Set<String> destinationWarehouseNames = new HashSet<>();
Set<String> payTypes = new HashSet<>();
Set<String> payWays = new HashSet<>();
AtomicReference<Integer> totalCount = new AtomicReference<>(0);//总数量
AtomicReference<Integer> totalCount = new AtomicReference<>(0);// 总数量
List<BigDecimal> totalWeights = new ArrayList<>();//总重量
List<BigDecimal> totalVolumes = new ArrayList();//总体积
List<BigDecimal> totalWeights = new ArrayList<>();// 总重量
List<BigDecimal> totalVolumes = new ArrayList();// 总体积
List<BigDecimal> totalFees = new ArrayList();
List<BigDecimal> openFees = new ArrayList();
List<BigDecimal> pickupFees = new ArrayList();//提货费
List<BigDecimal> freightFees = new ArrayList();//运费
List<BigDecimal> warehouseServiceFees = new ArrayList();//仓库服务费
List<BigDecimal> warehouseFees = new ArrayList();//仓储费
List<BigDecimal> warehouseManageFees = new ArrayList();//仓储管理费
List<BigDecimal> warehouseSortingFees = new ArrayList();//仓储分拣费
List<BigDecimal> warehouseOperatingFees = new ArrayList();//仓储操作费
List<BigDecimal> deliveryServiceFees = new ArrayList();//配送服务费
List<BigDecimal> deliveryFees = new ArrayList();//配送费
List<BigDecimal> deliveryLoadingFees = new ArrayList();//配送装卸费
List<BigDecimal> deliverySortingFees = new ArrayList();//配送分拣费
List<BigDecimal> deliveryUpfloorFees = new ArrayList();//配送上楼费
List<BigDecimal> deliveryMoveFees = new ArrayList();//配送平移费
List<BigDecimal> deliveryCrossingFees = new ArrayList();//超区费
List<BigDecimal> installFees = new ArrayList();//安装费
List<BigDecimal> quotationFees = new ArrayList();//保价费
List<BigDecimal> claimingValues = new ArrayList();//申明价值
List<BigDecimal> otherFees = new ArrayList();//其他费
List<BigDecimal> returnFees = new ArrayList();//回扣
List<BigDecimal> thirdOprationFees = new ArrayList();//三方操作费
List<BigDecimal> xPays = new ArrayList();//现付
List<BigDecimal> dPays = new ArrayList();//到付
List<BigDecimal> hPays = new ArrayList();//回付
List<BigDecimal> yPays = new ArrayList();//月结
List<BigDecimal> pickupFees = new ArrayList();// 提货费
List<BigDecimal> freightFees = new ArrayList();// 运费
List<BigDecimal> warehouseServiceFees = new ArrayList();// 仓库服务费
List<BigDecimal> warehouseFees = new ArrayList();// 仓储费
List<BigDecimal> warehouseManageFees = new ArrayList();// 仓储管理费
List<BigDecimal> warehouseSortingFees = new ArrayList();// 仓储分拣费
List<BigDecimal> warehouseOperatingFees = new ArrayList();// 仓储操作费
List<BigDecimal> deliveryServiceFees = new ArrayList();// 配送服务费
List<BigDecimal> deliveryFees = new ArrayList();// 配送费
List<BigDecimal> deliveryLoadingFees = new ArrayList();// 配送装卸费
List<BigDecimal> deliverySortingFees = new ArrayList();// 配送分拣费
List<BigDecimal> deliveryUpfloorFees = new ArrayList();// 配送上楼费
List<BigDecimal> deliveryMoveFees = new ArrayList();// 配送平移费
List<BigDecimal> deliveryCrossingFees = new ArrayList();// 超区费
List<BigDecimal> installFees = new ArrayList();// 安装费
List<BigDecimal> quotationFees = new ArrayList();// 保价费
List<BigDecimal> claimingValues = new ArrayList();// 申明价值
List<BigDecimal> otherFees = new ArrayList();// 其他费
List<BigDecimal> returnFees = new ArrayList();// 回扣
List<BigDecimal> thirdOprationFees = new ArrayList();// 三方操作费
List<BigDecimal> xPays = new ArrayList();// 现付
List<BigDecimal> dPays = new ArrayList();// 到付
List<BigDecimal> hPays = new ArrayList();// 回付
List<BigDecimal> yPays = new ArrayList();// 月结
list.forEach(statisticsOrderInfoVO -> {
Long orderInfoId = statisticsOrderInfoVO.getOrderInfoId();
Integer confirmStatisticsOrder = statisticsOrderInfoVO.getConfirmStatisticsOrder();
if(confirmStatisticsOrder.equals(1)){
log.warn("############checkBalance: 订单id={} 已经确认对账",orderInfoId);
throw new CustomerException(405,"存在已经确认对账的订单");
if (confirmStatisticsOrder.equals(1)) {
log.warn("############checkBalance: 订单id={} 已经确认对账", orderInfoId);
throw new CustomerException(405, "存在已经确认对账的订单");
}
brands.add(statisticsOrderInfoVO.getBrand());
waybillNos.add(statisticsOrderInfoVO.getWaybillNo());
orderCodes.add(statisticsOrderInfoVO.getOrderNo());
typeServices.add(DictBizCache.getValue(DictBizConstant.BASIC_FREIGHT_TYPE,statisticsOrderInfoVO.getTypeService()));
typeServices.add(DictBizCache.getValue(DictBizConstant.BASIC_FREIGHT_TYPE, statisticsOrderInfoVO.getTypeService()));
String goodsName = statisticsOrderInfoVO.getGoodsName();
if(goodsName.contains(",")){
if (goodsName.contains(",")) {
String[] split = goodsName.split(",");
for (int i = 0; i < split.length; i++) {
productGoods.add(split[i]);
}
}else{
} else {
productGoods.add(goodsName);
}
shippers.add(statisticsOrderInfoVO.getShipper());
@ -271,66 +300,66 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
});
//对totalWeights进行求和
// 对totalWeights进行求和
BigDecimal totalWeight = totalWeights.stream().reduce(BigDecimal.ZERO, BigDecimal::add);
BigDecimal totalVolume = totalVolumes.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//总体积
BigDecimal totalBalanceFee = totalFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//结算总金额 TODO 这里还需要加上售后的单子金额
BigDecimal totalVolume = totalVolumes.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 总体积
BigDecimal totalBalanceFee = totalFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 结算总金额 TODO 这里还需要加上售后的单子金额
BigDecimal totalFee = totalFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);
BigDecimal openFee = openFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);
BigDecimal pickupFee = pickupFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//提货费
BigDecimal freightFee = freightFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//运费
BigDecimal warehouseServiceFee = warehouseServiceFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//仓库服务费
BigDecimal warehouseFee = warehouseFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//仓储费
BigDecimal warehouseManageFee = warehouseManageFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//仓储管理费
BigDecimal warehouseSortingFee = warehouseSortingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//仓储分拣费
BigDecimal warehouseOperatingFee = warehouseOperatingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//仓储操作费
BigDecimal deliveryServiceFee = deliveryServiceFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送服务费
BigDecimal deliveryFee = deliveryFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送费
BigDecimal deliveryLoadingFee = deliveryLoadingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送装卸费
BigDecimal deliverySortingFee = deliverySortingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送分拣费
BigDecimal deliveryUpfloorFee = deliveryUpfloorFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送上楼费
BigDecimal deliveryMoveFee = deliveryMoveFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//配送平移费
BigDecimal deliveryCrossingFee = deliveryCrossingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//超区费
BigDecimal installFee = installFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//安装费
BigDecimal quotationFee = quotationFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//保价费
BigDecimal claimingValue = claimingValues.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//申明价值
BigDecimal otherFee = otherFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//其他费
BigDecimal returnFee = returnFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//回扣
BigDecimal thirdOprationFee = thirdOprationFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//三方操作费
BigDecimal xPay = xPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//现付
BigDecimal dPay = dPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//到付
BigDecimal hPay = hPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//回付
BigDecimal yPay = yPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);//月结
BigDecimal pickupFee = pickupFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 提货费
BigDecimal freightFee = freightFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 运费
BigDecimal warehouseServiceFee = warehouseServiceFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 仓库服务费
BigDecimal warehouseFee = warehouseFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 仓储费
BigDecimal warehouseManageFee = warehouseManageFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 仓储管理费
BigDecimal warehouseSortingFee = warehouseSortingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 仓储分拣费
BigDecimal warehouseOperatingFee = warehouseOperatingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 仓储操作费
BigDecimal deliveryServiceFee = deliveryServiceFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送服务费
BigDecimal deliveryFee = deliveryFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送费
BigDecimal deliveryLoadingFee = deliveryLoadingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送装卸费
BigDecimal deliverySortingFee = deliverySortingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送分拣费
BigDecimal deliveryUpfloorFee = deliveryUpfloorFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送上楼费
BigDecimal deliveryMoveFee = deliveryMoveFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 配送平移费
BigDecimal deliveryCrossingFee = deliveryCrossingFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 超区费
BigDecimal installFee = installFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 安装费
BigDecimal quotationFee = quotationFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 保价费
BigDecimal claimingValue = claimingValues.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 申明价值
BigDecimal otherFee = otherFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 其他费
BigDecimal returnFee = returnFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 回扣
BigDecimal thirdOprationFee = thirdOprationFees.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 三方操作费
BigDecimal xPay = xPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 现付
BigDecimal dPay = dPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 到付
BigDecimal hPay = hPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 回付
BigDecimal yPay = yPays.stream().reduce(BigDecimal.ZERO, BigDecimal::add);// 月结
StatisticsBalanceOrderInfoEntity statisticsBalanceOrderInfoEntity = new StatisticsBalanceOrderInfoEntity();
String balanceOrder = basicdataCodeClient.getCodeByType(CodeNumConstant.BALANCE_ORDER, "BALANCE_ORDER", "");
statisticsBalanceOrderInfoEntity.setBalanceOrderNo(balanceOrder);
statisticsBalanceOrderInfoEntity.setBrand(String.join(",",brands));
statisticsBalanceOrderInfoEntity.setWaybillNo(String.join(",",waybillNos));
statisticsBalanceOrderInfoEntity.setOrderCode(String.join(",",orderCodes));
statisticsBalanceOrderInfoEntity.setTypeService(String.join(",",typeServices));
statisticsBalanceOrderInfoEntity.setProductGoods(String.join(",",productGoods));
statisticsBalanceOrderInfoEntity.setBrand(String.join(",", brands));
statisticsBalanceOrderInfoEntity.setWaybillNo(String.join(",", waybillNos));
statisticsBalanceOrderInfoEntity.setOrderCode(String.join(",", orderCodes));
statisticsBalanceOrderInfoEntity.setTypeService(String.join(",", typeServices));
statisticsBalanceOrderInfoEntity.setProductGoods(String.join(",", productGoods));
statisticsBalanceOrderInfoEntity.setTotalCount(totalCount.get());
statisticsBalanceOrderInfoEntity.setTotalWeight(totalWeight);
statisticsBalanceOrderInfoEntity.setTotalVolume(totalVolume);
statisticsBalanceOrderInfoEntity.setShipper(String.join(",",shippers));
statisticsBalanceOrderInfoEntity.setShipperPerson(String.join(",",shipperPersons));
statisticsBalanceOrderInfoEntity.setShipperMobile(String.join(",",shipperMobiles));
statisticsBalanceOrderInfoEntity.setShipperAddress(String.join(",",shipperAddresses));
statisticsBalanceOrderInfoEntity.setConsignee(String.join(",",consignees));
statisticsBalanceOrderInfoEntity.setConsigneePerson(String.join(",",consigneePersons));
statisticsBalanceOrderInfoEntity.setConsigneeMobile(String.join(",",consigneeMobiles));
statisticsBalanceOrderInfoEntity.setConsigneeAddress(String.join(",",consigneeAddresses));
statisticsBalanceOrderInfoEntity.setDeparture(String.join(",",departures));
statisticsBalanceOrderInfoEntity.setDestination(String.join(",",destinations));
statisticsBalanceOrderInfoEntity.setDepartureWarehouseName(String.join(",",departureWarehouseNames));
statisticsBalanceOrderInfoEntity.setDestinationWarehouseName(String.join(",",destinationWarehouseNames));
statisticsBalanceOrderInfoEntity.setPayType(String.join(",",payTypes));
statisticsBalanceOrderInfoEntity.setPayWay(String.join(",",payWays));
statisticsBalanceOrderInfoEntity.setShipper(String.join(",", shippers));
statisticsBalanceOrderInfoEntity.setShipperPerson(String.join(",", shipperPersons));
statisticsBalanceOrderInfoEntity.setShipperMobile(String.join(",", shipperMobiles));
statisticsBalanceOrderInfoEntity.setShipperAddress(String.join(",", shipperAddresses));
statisticsBalanceOrderInfoEntity.setConsignee(String.join(",", consignees));
statisticsBalanceOrderInfoEntity.setConsigneePerson(String.join(",", consigneePersons));
statisticsBalanceOrderInfoEntity.setConsigneeMobile(String.join(",", consigneeMobiles));
statisticsBalanceOrderInfoEntity.setConsigneeAddress(String.join(",", consigneeAddresses));
statisticsBalanceOrderInfoEntity.setDeparture(String.join(",", departures));
statisticsBalanceOrderInfoEntity.setDestination(String.join(",", destinations));
statisticsBalanceOrderInfoEntity.setDepartureWarehouseName(String.join(",", departureWarehouseNames));
statisticsBalanceOrderInfoEntity.setDestinationWarehouseName(String.join(",", destinationWarehouseNames));
statisticsBalanceOrderInfoEntity.setPayType(String.join(",", payTypes));
statisticsBalanceOrderInfoEntity.setPayWay(String.join(",", payWays));
statisticsBalanceOrderInfoEntity.setIsAftersale(0);
statisticsBalanceOrderInfoEntity.setAftersalesFee(BigDecimal.ZERO);
@ -370,7 +399,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
balanceOrderInfoService.save(statisticsBalanceOrderInfoEntity);
//订单的结算单号生成
// 订单的结算单号生成
List<StatisticsOrderInfoEntity> statisticsOrderInfoEntities = baseMapper.selectList(new QueryWrapper<StatisticsOrderInfoEntity>().lambda().in(StatisticsOrderInfoEntity::getId, orderInfoIds));
statisticsOrderInfoEntities.forEach(statisticsOrderInfoEntity -> {
statisticsOrderInfoEntity.setBalanceOrderNo(statisticsBalanceOrderInfoEntity.getBalanceOrderNo());
@ -393,12 +422,449 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
return statementListByOrderInfoIds.get(0);
}
@Override
public boolean calculateRealCost(Long id) {
StatisticsOrderInfoEntity orderInfoEntity = this.getOne(new QueryWrapper<StatisticsOrderInfoEntity>().lambda().eq(StatisticsOrderInfoEntity::getId, id));
if (ObjectUtil.isEmpty(orderInfoEntity)) {
log.warn("#############calculateRealCost: 订单信息不存在");
throw new CustomerException("订单信息不存在");
}
Long brandId = orderInfoEntity.getBrandId();
Long consigneeId = orderInfoEntity.getConsigneeId();
if (!ObjectUtil.isAllNotEmpty(brandId, consigneeId)) {
log.warn("#############calculateRealCost: 品牌{} 收货单位{}", brandId, consigneeId);
throw new CustomerException("结算单信息不完整,缺少品牌和收货单位,请联系系统管理员。");
}
Date createTime = orderInfoEntity.getCreateTime();
// 根据 品牌 收货单位 开单时间 获取价格体系
PriceClientVO price = priceClient.price(BasicdatPriceApiVO.builder()
.clientId(consigneeId.toString())
.brandId(brandId.toString())
.time(DateUtil.formatTime(createTime))
.build());
if (ObjectUtil.isEmpty(price)) {
log.warn("#############calculateRealCost: 未维护价格,无法计算。");
throw new CustomerException("未维护价格,无法计算。");
}
// 查询包件数据
List<StatisticsDistributionPackageEntity> distributionPackageEntities = distributionPackageService.list(new QueryWrapper<StatisticsDistributionPackageEntity>().lambda().eq(StatisticsDistributionPackageEntity::getOrderInfoId, id));
// 校验是否全部配送完成
if (distributionPackageEntities.stream().anyMatch(distributionPackageEntity -> distributionPackageEntity.getIsSign() == 0)) {
log.warn("#############calculateRealCost: 订单未全部配送完成,无法计算。");
throw new CustomerException("订单未全部配送完成,无法计算。");
}
List<StatisticsWarehousePackageEntity> warehousePackageEntities = warehousePackageService.list(new QueryWrapper<StatisticsWarehousePackageEntity>().lambda().eq(StatisticsWarehousePackageEntity::getOrderInfoId, id));
PriceDispatchVO dispatch = price.getDispatch();
PriceWarehouseVO warehouse = price.getWarehouse();
BasicdataPriceTemplateEntity template = price.getTemplate();
if (ObjectUtil.isEmpty(template)) {
log.warn("#############calculateRealCost: 未维护模版,无法计算。");
throw new CustomerException("未维护模版,无法计算。");
}
String serviceType = template.getServiceType();
Integer dispatchIsMinCost = template.getDispatchIsMinCost();
// 模版的服务类型
String typeService = orderInfoEntity.getTypeService();
if (StrUtil.isNotEmpty(serviceType)) {
// 模版是否有仓储
if (StrUtil.contains(serviceType, "3")) {
if (CollUtil.isNotEmpty(warehousePackageEntities)) {
calculateWarehouseCost(warehouse, warehousePackageEntities, template);
}
}
// 模版是否有配送
if (StrUtil.contains(serviceType, "4")) {
if (CollUtil.isNotEmpty(distributionPackageEntities)) {
calculateDispatchCost(template, typeService, distributionPackageEntities, dispatch, dispatchIsMinCost);
}
}
}
return Boolean.TRUE;
}
private void calculateWarehouseCost(PriceWarehouseVO warehouse, List<StatisticsWarehousePackageEntity> warehousePackageEntities, BasicdataPriceTemplateEntity template) {
if (ObjectUtil.isNotEmpty(warehouse)) {
// 取出 warehousePackageEntities 中的最小的入库时间 warehouseEntryTimeEnd 和最大的签收时间 signTime。两个时间相差的天数为在库周期
// 过滤掉无用无用数据
warehousePackageEntities.removeIf(entity -> entity.getWarehouseEntryTimeEnd() == null || entity.getSignTime() == null);
Long diff = null;
if (CollUtil.isNotEmpty(warehousePackageEntities)) {
// 找到最早的入库结束时间和最晚的签收时间
StatisticsWarehousePackageEntity earliestEntity = Collections.min(warehousePackageEntities, Comparator.comparing(StatisticsWarehousePackageEntity::getWarehouseEntryTimeEnd));
StatisticsWarehousePackageEntity latestEntity = Collections.max(warehousePackageEntities, Comparator.comparing(StatisticsWarehousePackageEntity::getSignTime));
Date warehouseEntryTimeEnd = earliestEntity.getWarehouseEntryTimeEnd();
Date signTime = latestEntity.getSignTime();
// 计算在库周期(相差天数)
long diffInMillies = Math.abs(signTime.getTime() - warehouseEntryTimeEnd.getTime());
diff = (diffInMillies + TimeUnit.DAYS.toMillis(1) - 1) / TimeUnit.DAYS.toMillis(1);
}
if (diff != null && diff > 0) {
for (StatisticsWarehousePackageEntity warehousePackageEntity : warehousePackageEntities) {
buildBasicWarehouseCost(warehousePackageEntity, warehouse, template, diff);
}
if (CollUtil.isNotEmpty(warehousePackageEntities)) {
// 计算配送服务费 realDeliveryServiceFee = 所有real费用的和
warehousePackageEntities.stream().forEach(entity -> {
entity.setRealWarehouseServiceFee(entity.getRealWarehouseFee()
.add(entity.getRealWarehouseManageFee())
.add(entity.getRealWarehouseSortingFee())
.add(entity.getRealWarehouseOperatingFee())
);
});
warehousePackageService.updateBatchById(warehousePackageEntities);
}
}
}
}
private void calculateDispatchCost(BasicdataPriceTemplateEntity template, String typeService, List<StatisticsDistributionPackageEntity> distributionPackageEntities, PriceDispatchVO dispatch, Integer dispatchIsMinCost) {
String dispatchPricingType = template.getDispatchPricingType();
// 服务类型与模版的服务类型一致
if (StrUtil.equals(dispatchPricingType, typeService)) {
// 计算基础配送费
Integer dispatchIsByCategory = template.getDispatchIsByCategory();
if (ObjectUtil.isNotEmpty(dispatch)) {
for (StatisticsDistributionPackageEntity statisticsDistributionPackageEntity : distributionPackageEntities) {
buildBasicDispatchCost(statisticsDistributionPackageEntity, dispatch, dispatchIsByCategory);
}
}
// 保底价
// 1 是否有最低价 2 最低价的计费类型是按订单还是按配送任务 3 按价格还是件方重量
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), dispatchIsMinCost)) {
// 1 订单 2 配送任务
Integer dispatchMinCostMode = template.getDispatchMinCostMode();
// 1 价格 2 件 3 方 4 重量
Integer dispatchMinCostType = template.getDispatchMinCostType();
// 最低价
Double minCost = dispatch.getMinCost();
// 加算价格
Double additionalCost = dispatch.getAdditionalCost();
if (ObjectUtil.equals(1, dispatchMinCostMode)) {
buildDispatchCostToPackage(dispatchMinCostType, distributionPackageEntities, minCost, additionalCost);
} else if (ObjectUtil.equals(2, dispatchMinCostMode)) {
Map<String, List<StatisticsDistributionPackageEntity>> map = distributionPackageEntities.stream().collect(Collectors.groupingBy(StatisticsDistributionPackageEntity::getTrainNumber));
if (CollUtil.isNotEmpty(map)) {
for (Map.Entry<String, List<StatisticsDistributionPackageEntity>> entry : map.entrySet()) {
List<StatisticsDistributionPackageEntity> value = entry.getValue();
buildDispatchCostToPackage(dispatchMinCostType, value, minCost, additionalCost);
}
}
}
// 保存配送包件信息
if (CollUtil.isNotEmpty(distributionPackageEntities)) {
// 计算配送服务费 realDeliveryServiceFee = 所有real费用的和
distributionPackageEntities.stream().forEach(entity -> {
entity.setRealDeliveryServiceFee(entity.getRealDeliveryFee()
.add(entity.getRealDeliveryLoadingFee())
.add(entity.getRealDeliveryMoveFee())
.add(entity.getRealDeliveryCrossingFee())
.add(entity.getRealDeliverySortingFee())
.add(entity.getRealDeliveryUpfloorFee())
.add(entity.getRealDeliveryDistance()));
});
distributionPackageService.saveOrUpdateBatch(distributionPackageEntities);
}
}
}
}
private void buildBasicDispatchCost(StatisticsDistributionPackageEntity statisticsDistributionPackageEntity, PriceDispatchVO dispatch, Integer dispatchIsByCategory) {
List<PriceDispatchBasicVO> pieceCategory = dispatch.getPieceCategory();
if (CollUtil.isNotEmpty(pieceCategory)) {
List<PriceDispatchBasicVO> pieceList = pieceCategory;
if (1 == dispatchIsByCategory) {
pieceList = pieceCategory.stream().filter(priceDispatchBasicVO -> {
return StrUtil.equals(String.valueOf(priceDispatchBasicVO.getCategoryId()), statisticsDistributionPackageEntity.getProductId());
}).collect(Collectors.toList());
}
if (CollUtil.isNotEmpty(pieceList)) {
PriceDispatchBasicVO priceDispatchBasicVO = pieceList.get(0);
// TODO 如果是遗留件 按遗留件单价来计算 目前只有欧派有遗留件
Double price1 = priceDispatchBasicVO.getPrice();
// 配送费 = 按件单价
statisticsDistributionPackageEntity.setRealDeliveryFee(NumberUtil.toBigDecimal(price1));
}
}
List<PriceDispatchBasicVO> cubeCategory = dispatch.getCubeCategory();
if (CollUtil.isNotEmpty(cubeCategory)) {
List<PriceDispatchBasicVO> cubeList = cubeCategory;
if (1 == dispatchIsByCategory) {
cubeList = cubeCategory.stream().filter(priceDispatchBasicVO -> {
return StrUtil.equals(String.valueOf(priceDispatchBasicVO.getCategoryId()), statisticsDistributionPackageEntity.getProductId());
}).collect(Collectors.toList());
}
if (CollUtil.isNotEmpty(cubeList)) {
PriceDispatchBasicVO priceDispatchBasicVO = cubeList.get(0);
// TODO 如果是遗留件 按遗留件单价来计算 目前只有欧派有遗留件
Double price1 = priceDispatchBasicVO.getPrice();
BigDecimal totalVolume = statisticsDistributionPackageEntity.getTotalVolume();
// 配送费 = 按方单价 * 体积
if (ObjectUtil.isNotEmpty(totalVolume)) {
statisticsDistributionPackageEntity.setRealDeliveryFee(NumberUtil.toBigDecimal(price1).multiply(totalVolume));
}
}
}
List<PriceDispatchBasicVO> weightCategory = dispatch.getWeightCategory();
if (CollUtil.isNotEmpty(weightCategory)) {
List<PriceDispatchBasicVO> weightList = weightCategory;
if (1 == dispatchIsByCategory) {
weightList = weightCategory.stream().filter(priceDispatchBasicVO -> {
return StrUtil.equals(String.valueOf(priceDispatchBasicVO.getCategoryId()), statisticsDistributionPackageEntity.getProductId());
}).collect(Collectors.toList());
}
if (CollUtil.isNotEmpty(weightList)) {
PriceDispatchBasicVO priceDispatchBasicVO = weightList.get(0);
// TODO 如果是遗留件 按遗留件单价来计算 目前只有欧派有遗留件
Double price1 = priceDispatchBasicVO.getPrice();
BigDecimal totalWeight = statisticsDistributionPackageEntity.getTotalWeight();
// 配送费 = 按重量单价 * 重量
if (ObjectUtil.isNotEmpty(totalWeight)) {
statisticsDistributionPackageEntity.setRealDeliveryFee(NumberUtil.toBigDecimal(price1).multiply(totalWeight));
}
}
}
}
private void buildBasicWarehouseCost(StatisticsWarehousePackageEntity statisticsDistributionPackageEntity, PriceWarehouseVO warehouseVO, BasicdataPriceTemplateEntity template, Long diff) {
// 1 按件 2 按方 3 按重量
Integer warehousePricingType = template.getWarehousePricingType();
// 1 分段式 2 最高标准
Integer warehousePricingMode = template.getWarehousePricingMode();
// 计费标准 1 按件/天 2 按件/月
Integer warehouseCalculationBasis = template.getWarehouseCalculationBasis();
if (!ObjectUtil.isAllNotEmpty(warehousePricingType, warehousePricingMode, warehouseCalculationBasis)) {
log.warn("模版参数不全不计算");
return;
}
// 仓储费是否按品类计费 1 是 0 否
Integer warehouseIsByCategory = template.getWarehouseIsByCategory();
List<PriceWarehouseBasicVO> catergory = warehouseVO.getCatergory();
if (CollUtil.isNotEmpty(catergory)) {
List<PriceWarehouseBasicVO> pieceList = catergory;
if (1 == warehouseIsByCategory) {
pieceList = catergory.stream().filter(priceDispatchBasicVO -> {
return StrUtil.equals(String.valueOf(priceDispatchBasicVO.getCategoryId()), statisticsDistributionPackageEntity.getProductId());
}).collect(Collectors.toList());
}
if (CollUtil.isNotEmpty(pieceList)) {
BigDecimal totalVolume = statisticsDistributionPackageEntity.getTotalVolume();
BigDecimal totalWeight = statisticsDistributionPackageEntity.getTotalWeight();
PriceWarehouseBasicVO priceDispatchBasicVO = pieceList.get(0);
Double withinThirtyPrice = priceDispatchBasicVO.getWithinThirtyPrice();
Double betweenThirtySixtyPrice = priceDispatchBasicVO.getBetweenThirtySixtyPrice();
Double beyondSixtyPrice = priceDispatchBasicVO.getBeyondSixtyPrice();
Double beyondNinetyPrice = priceDispatchBasicVO.getBeyondNinetyPrice();
// 计算仓储费
if (ObjectUtil.equals(1, warehousePricingType)) {
if (ObjectUtil.equals(1, warehousePricingMode)) {
fenDuan(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, BigDecimal.ONE, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
} else if (ObjectUtil.equals(2, warehousePricingMode)) {
zuiGao(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, BigDecimal.ONE, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
}
} else if (ObjectUtil.equals(2, warehousePricingType)) {
if (ObjectUtil.equals(1, warehousePricingMode)) {
fenDuan(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, totalVolume, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
} else if (ObjectUtil.equals(2, warehousePricingMode)) {
zuiGao(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, totalVolume, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
}
} else if (ObjectUtil.equals(3, warehousePricingType)) {
if (ObjectUtil.equals(1, warehousePricingMode)) {
fenDuan(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, totalWeight, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
} else if (ObjectUtil.equals(2, warehousePricingMode)) {
zuiGao(statisticsDistributionPackageEntity, diff, warehouseCalculationBasis, withinThirtyPrice, totalWeight, betweenThirtySixtyPrice, beyondSixtyPrice, beyondNinetyPrice);
}
}
Integer warehouseIsAddFee = template.getWarehouseIsAddFee();
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), warehouseIsAddFee)) {
// 是否有管理费
Integer warehouseIsManageFee = template.getWarehouseIsManageFee();
// 是否有分拣费
Integer warehouseIsSortFee = template.getWarehouseIsSortFee();
// 是否有操作费
Integer warehouseIsOperatingFee = template.getWarehouseIsOperateFee();
// 是否按品类附加费
Integer warehouseIsCategorySubjoin = template.getWarehouseIsCategorySubjoin();
List<PriceWarehouseAdditionalVO> additionalCategory = warehouseVO.getAdditionalCategory();
if (CollUtil.isNotEmpty(additionalCategory)) {
List<PriceWarehouseAdditionalVO> additionalList = additionalCategory;
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), warehouseIsCategorySubjoin)) {
additionalList = additionalCategory.stream().filter(additionalVO -> {
return StrUtil.equals(String.valueOf(additionalVO.getCategoryId()), statisticsDistributionPackageEntity.getProductId());
}).collect(Collectors.toList());
}
if (CollUtil.isNotEmpty(additionalList)) {
PriceWarehouseAdditionalVO additionalVO = additionalList.get(0);
Double operatePrice = additionalVO.getOperatePrice();
Double managementPrice = additionalVO.getWarehouseManagementPrice();
Double warehouseSortPrice = additionalVO.getWarehouseSortPrice();
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), warehouseIsManageFee)) {
statisticsDistributionPackageEntity.setRealWarehouseManageFee(NumberUtil.toBigDecimal(managementPrice));
}
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), warehouseIsSortFee)) {
statisticsDistributionPackageEntity.setRealWarehouseSortingFee(NumberUtil.toBigDecimal(warehouseSortPrice));
}
if (ObjectUtil.equals(BooleanZeroOneEnums.YES.getCode(), warehouseIsOperatingFee)) {
statisticsDistributionPackageEntity.setRealWarehouseOperatingFee(NumberUtil.toBigDecimal(operatePrice));
}
}
}
}
}
}
}
private static void zuiGao(StatisticsWarehousePackageEntity statisticsDistributionPackageEntity, Long diff, Integer warehouseCalculationBasis, Double withinThirtyPrice, BigDecimal number, Double betweenThirtySixtyPrice, Double beyondSixtyPrice, Double beyondNinetyPrice) {
if (ObjectUtil.equals(1, warehouseCalculationBasis)) {
// 方 最高 天
BigDecimal realWarehouseFee = BigDecimal.ZERO;
if (diff <= 30) {
realWarehouseFee = NumberUtil.mul(withinThirtyPrice, diff, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("30天内");
} else if (diff <= 60) {
realWarehouseFee = NumberUtil.mul(betweenThirtySixtyPrice, diff, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("31-60天");
} else if (diff <= 90) {
realWarehouseFee = NumberUtil.mul(beyondSixtyPrice, diff, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("61-90天");
} else if (diff > 90) {
realWarehouseFee = NumberUtil.mul(beyondNinetyPrice, diff, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("91天以上");
}
statisticsDistributionPackageEntity.setRealWarehouseFee(realWarehouseFee);
} else if (ObjectUtil.equals(2, warehouseCalculationBasis)) {
// 方 最高 月
BigDecimal realWarehouseFee = BigDecimal.ZERO;
if (diff <= 30) {
realWarehouseFee = NumberUtil.mul(withinThirtyPrice, 1, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("30天内");
} else if (diff <= 60) {
realWarehouseFee = NumberUtil.mul(betweenThirtySixtyPrice, 2, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("31-60天");
} else if (diff <= 90) {
realWarehouseFee = NumberUtil.mul(beyondSixtyPrice, 3, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("61-90天");
} else if (diff > 90) {
long time = diff - 90;
// time 以 30 天为维度 计算 ,向上取整
Double ceil = Math.ceil(time / 30);
realWarehouseFee = NumberUtil.mul(beyondNinetyPrice, NumberUtil.add(ceil, 3, BigDecimal.ZERO), number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("91天以上");
}
statisticsDistributionPackageEntity.setRealWarehouseFee(realWarehouseFee);
}
}
private static void fenDuan(StatisticsWarehousePackageEntity statisticsDistributionPackageEntity, Long diff, Integer warehouseCalculationBasis, Double withinThirtyPrice, BigDecimal number, Double betweenThirtySixtyPrice, Double beyondSixtyPrice, Double beyondNinetyPrice) {
if (ObjectUtil.equals(1, warehouseCalculationBasis)) {
// 方 分段 天
BigDecimal realWarehouseFee = BigDecimal.ZERO;
if (diff <= 30) {
realWarehouseFee = NumberUtil.mul(withinThirtyPrice, diff, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("30天内");
} else if (diff <= 60) {
realWarehouseFee = NumberUtil.add(
NumberUtil.mul(withinThirtyPrice, 30, number),
NumberUtil.mul(betweenThirtySixtyPrice, NumberUtil.sub(diff, 30, BigDecimal.ZERO), number)
);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("31-60天");
} else if (diff <= 90) {
realWarehouseFee = NumberUtil.add(
NumberUtil.mul(withinThirtyPrice, 30, number),
NumberUtil.mul(betweenThirtySixtyPrice, 30, number),
NumberUtil.mul(beyondSixtyPrice, NumberUtil.sub(diff, 60, BigDecimal.ZERO), number)
);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("61-90天");
} else if (diff > 90) {
realWarehouseFee = NumberUtil.add(
NumberUtil.mul(withinThirtyPrice, 30, number),
NumberUtil.mul(betweenThirtySixtyPrice, 30, number),
NumberUtil.mul(beyondSixtyPrice, 30, number),
NumberUtil.mul(beyondNinetyPrice, NumberUtil.sub(diff, 90, BigDecimal.ZERO), number)
);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("91天以上");
}
statisticsDistributionPackageEntity.setRealWarehouseFee(realWarehouseFee);
} else if (ObjectUtil.equals(2, warehouseCalculationBasis)) {
// 方 分段 月
BigDecimal realWarehouseFee = BigDecimal.ZERO;
if (diff <= 30) {
realWarehouseFee = NumberUtil.mul(withinThirtyPrice, number);
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("30天内");
} else if (diff <= 60) {
realWarehouseFee = NumberUtil.mul(number, NumberUtil.add(withinThirtyPrice, betweenThirtySixtyPrice, BigDecimal.ZERO));
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("31-60天");
} else if (diff <= 90) {
realWarehouseFee = NumberUtil.mul(number, NumberUtil.add(withinThirtyPrice, betweenThirtySixtyPrice, beyondSixtyPrice));
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("61-90天");
} else if (diff > 90) {
long time = diff - 90;
// time 以 30 天为维度 计算 ,向上取整
Double ceil = Math.ceil(time / 30);
realWarehouseFee = NumberUtil.mul(number, NumberUtil.add(withinThirtyPrice, betweenThirtySixtyPrice, beyondSixtyPrice, NumberUtil.mul(ceil, beyondNinetyPrice)));
statisticsDistributionPackageEntity.setRealWarehouseFeeInterval("91天以上");
}
statisticsDistributionPackageEntity.setRealWarehouseFee(realWarehouseFee);
}
}
private void buildDispatchCostToPackage(Integer dispatchMinCostType, List<StatisticsDistributionPackageEntity> distributionPackageEntities, Double minCost, Double additionalCost) {
if (ObjectUtil.equals(1, dispatchMinCostType)) {
// 计算总价
BigDecimal sumDeliveryFee = distributionPackageEntities.stream().map(StatisticsDistributionPackageEntity::getRealDeliveryFee).reduce(BigDecimal.ZERO, BigDecimal::add);
// 总价和最低价 取大的值
BigDecimal max = NumberUtil.max(sumDeliveryFee, NumberUtil.toBigDecimal(minCost));
// 分摊价格个到包件上
// max - sumDeliveryFee 大于 0 则分摊价格个到包件上
if (max.compareTo(sumDeliveryFee) > 0) {
// 分摊价格个到包件上 (原单价 + (max - sumDeliveryFee)/件数)
BigDecimal divide = max.subtract(sumDeliveryFee).divide(NumberUtil.toBigDecimal(distributionPackageEntities.size()), 2, BigDecimal.ROUND_HALF_UP);
distributionPackageEntities.forEach(statisticsDistributionPackageEntity -> {
statisticsDistributionPackageEntity.setRealDeliveryFee(statisticsDistributionPackageEntity.getRealDeliveryFee().add(divide));
});
}
} else if (ObjectUtil.equals(2, dispatchMinCostType)) {
// 总件数
int size = distributionPackageEntities.size();
// 总件数 < 最低价 则计算保底价
if (size < minCost) {
// 分摊到包件上 原单价 + 加算价格
distributionPackageEntities.forEach(statisticsDistributionPackageEntity -> {
statisticsDistributionPackageEntity.setRealDeliveryFee(statisticsDistributionPackageEntity.getRealDeliveryFee().add(NumberUtil.toBigDecimal(additionalCost)));
});
}
} else if (ObjectUtil.equals(3, dispatchMinCostType)) {
// 总体积
BigDecimal totalVolume = distributionPackageEntities.stream().map(StatisticsDistributionPackageEntity::getTotalVolume).reduce(BigDecimal.ZERO, BigDecimal::add);
// 总件数 < 最低价 则计算保底价
if (NumberUtil.compare(NumberUtil.toDouble(totalVolume), minCost) < 0) {
// 分摊到包件上 原单价 + 加算价格
distributionPackageEntities.forEach(statisticsDistributionPackageEntity -> {
statisticsDistributionPackageEntity.setRealDeliveryFee(statisticsDistributionPackageEntity.getRealDeliveryFee().add(NumberUtil.toBigDecimal(additionalCost)));
});
}
} else if (ObjectUtil.equals(4, dispatchMinCostType)) {
// 总重量
BigDecimal totalWeight = distributionPackageEntities.stream().map(StatisticsDistributionPackageEntity::getTotalWeight).reduce(BigDecimal.ZERO, BigDecimal::add);
// 总件数 < 最低价 则计算保底价
if (NumberUtil.compare(NumberUtil.toDouble(totalWeight), minCost) < 0) {
// 分摊到包件上 原单价 + 加算价格
distributionPackageEntities.forEach(statisticsDistributionPackageEntity -> {
statisticsDistributionPackageEntity.setRealDeliveryFee(statisticsDistributionPackageEntity.getRealDeliveryFee().add(NumberUtil.toBigDecimal(additionalCost)));
});
}
}
}
private void updateOrderChangesFee(Long orderInfoId) {
StatisticsOrderInfoEntity statisticsOrderInfoEntity = baseMapper.selectById(orderInfoId);
if(Objects.isNull(statisticsOrderInfoEntity)){
log.warn("#############updateOrderChangesFee: 订单信息不存在 statisticsOrderInfoEntity={}",statisticsOrderInfoEntity);
throw new CustomerException(405,"订单信息不存在");
if (Objects.isNull(statisticsOrderInfoEntity)) {
log.warn("#############updateOrderChangesFee: 订单信息不存在 statisticsOrderInfoEntity={}", statisticsOrderInfoEntity);
throw new CustomerException(405, "订单信息不存在");
}
BigDecimal changesFee = changesRecordService.findChangesFeeByOrderInfoId(orderInfoId);
@ -414,102 +880,102 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
BigDecimal totalFee = BigDecimal.ZERO;
BigDecimal pickupFee = changesRecordEntity.getPickupFee();
if(pickupFee.compareTo(BigDecimal.ZERO) != 0){
if (pickupFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(pickupFee);
stringBuilder.append("提货费变更").append(pickupFee.toPlainString()).append(";");
}
BigDecimal freightFee = changesRecordEntity.getFreightFee();
if(freightFee.compareTo(BigDecimal.ZERO) != 0){
if (freightFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(freightFee);
stringBuilder.append("运费变更").append(freightFee.toPlainString()).append(";");
}
BigDecimal warehouseFee = changesRecordEntity.getWarehouseFee();
if(warehouseFee.compareTo(BigDecimal.ZERO) != 0){
if (warehouseFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(warehouseFee);
stringBuilder.append("仓储费变更").append(warehouseFee.toPlainString()).append(";");
}
BigDecimal warehouseManageFee = changesRecordEntity.getWarehouseManageFee();
if(warehouseManageFee.compareTo(BigDecimal.ZERO) != 0){
if (warehouseManageFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(warehouseManageFee);
stringBuilder.append("仓储管理费变更").append(warehouseManageFee.toPlainString()).append(";");
}
BigDecimal warehouseSortingFee = changesRecordEntity.getWarehouseSortingFee();
if(warehouseSortingFee.compareTo(BigDecimal.ZERO) != 0){
if (warehouseSortingFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(warehouseSortingFee);
stringBuilder.append("仓储分拣费变更").append(warehouseSortingFee.toPlainString()).append(";");
}
BigDecimal warehouseOperatingFee = changesRecordEntity.getWarehouseOperatingFee();
if(warehouseOperatingFee.compareTo(BigDecimal.ZERO) != 0){
if (warehouseOperatingFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(warehouseOperatingFee);
stringBuilder.append("仓储操作费变更").append(warehouseOperatingFee.toPlainString()).append(";");
}
BigDecimal deliveryFee = changesRecordEntity.getDeliveryFee();
if(deliveryFee.compareTo(BigDecimal.ZERO) != 0){
if (deliveryFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(deliveryFee);
stringBuilder.append("配送费变更").append(deliveryFee.toPlainString()).append(";");
}
BigDecimal deliveryLoadingFee = changesRecordEntity.getDeliveryLoadingFee();
if(deliveryLoadingFee.compareTo(BigDecimal.ZERO) != 0){
if (deliveryLoadingFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(deliveryLoadingFee);
stringBuilder.append("配送装卸费变更").append(deliveryLoadingFee.toPlainString()).append(";");
}
BigDecimal deliverySortingFee = changesRecordEntity.getDeliverySortingFee();
if(deliverySortingFee.compareTo(BigDecimal.ZERO) != 0){
if (deliverySortingFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(deliverySortingFee);
stringBuilder.append("配送分拣费变更").append(deliverySortingFee.toPlainString()).append(";");
}
BigDecimal deliveryUpfloorFee = changesRecordEntity.getDeliveryUpfloorFee();
if(deliveryUpfloorFee.compareTo(BigDecimal.ZERO) != 0){
if (deliveryUpfloorFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(deliveryUpfloorFee);
stringBuilder.append("配送上楼费变更").append(deliveryUpfloorFee.toPlainString()).append(";");
}
BigDecimal deliveryMoveFee = changesRecordEntity.getDeliveryMoveFee();
if(deliveryMoveFee.compareTo(BigDecimal.ZERO) != 0){
if (deliveryMoveFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(deliveryMoveFee);
stringBuilder.append("配送平移费变更").append(deliveryMoveFee.toPlainString()).append(";");
}
BigDecimal installFee = changesRecordEntity.getInstallFee();
if(installFee.compareTo(BigDecimal.ZERO) != 0){
if (installFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(installFee);
stringBuilder.append("安装费变更").append(installFee.toPlainString()).append(";");
}
BigDecimal quotationFee = changesRecordEntity.getQuotationFee();
if(quotationFee.compareTo(BigDecimal.ZERO) != 0){
if (quotationFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(quotationFee);
stringBuilder.append("保价费变更").append(quotationFee.toPlainString()).append(";");
}
BigDecimal claimingValue = changesRecordEntity.getClaimingValue();
if(claimingValue.compareTo(BigDecimal.ZERO) != 0){
if (claimingValue.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(claimingValue);
stringBuilder.append("申明价值变更").append(claimingValue.toPlainString()).append(";");
}
BigDecimal otherFee = changesRecordEntity.getOtherFee();
if(otherFee.compareTo(BigDecimal.ZERO) != 0){
if (otherFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(otherFee);
stringBuilder.append("其他费变更").append(otherFee.toPlainString()).append(";");
}
BigDecimal returnFee = changesRecordEntity.getReturnFee();
if(returnFee.compareTo(BigDecimal.ZERO) != 0){
if (returnFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(returnFee);
stringBuilder.append("回扣变更").append(returnFee.toPlainString()).append(";");
}
BigDecimal thirdOprationFee = changesRecordEntity.getThirdOprationFee();
if(thirdOprationFee.compareTo(BigDecimal.ZERO) != 0){
if (thirdOprationFee.compareTo(BigDecimal.ZERO) != 0) {
totalFee = totalFee.add(thirdOprationFee);
stringBuilder.append("第三方操作费变更").append(thirdOprationFee.toPlainString()).append(";");
}

18
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/feign/TrunklinePackageTrackLogClient.java

@ -9,14 +9,16 @@ import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@Slf4j
@ApiIgnore()
@RestController
@AllArgsConstructor
public class TrunklinePackageTrackLogClient implements ITrunklinePackageTrackLogClient{
public class TrunklinePackageTrackLogClient implements ITrunklinePackageTrackLogClient {
private final IPackageTrackLogAsyncService packageTrackLogAsyncService;
@ -25,17 +27,25 @@ public class TrunklinePackageTrackLogClient implements ITrunklinePackageTrackLog
List<WarehousePackageTrackLogEntity> ls = new ArrayList<>();
List<String> orderPackageCodes = new ArrayList<>();
final Integer[] workNode = {null};
Map<String, JSONObject> map = new HashMap<>();
addPackageTrackLogList.forEach(jsonObject -> {
WarehousePackageTrackLogEntity warehousePackageTrackLogEntity = jsonObject.toJavaObject(WarehousePackageTrackLogEntity.class);
JSONObject js = new JSONObject();
if (jsonObject.containsKey("trainNumber")) {
js.put("trainNumber", jsonObject.getString("trainNumber"));
}
if(jsonObject.containsKey("warehouseEntryTimeEnd")){
js.put("warehouseEntryTimeEnd", jsonObject.getString("warehouseEntryTimeEnd"));
}
map.put(warehousePackageTrackLogEntity.getOrderPackageCode(), js);
orderPackageCodes.add(warehousePackageTrackLogEntity.getOrderPackageCode());
if (Objects.isNull(workNode[0])){
if (Objects.isNull(workNode[0])) {
workNode[0] = warehousePackageTrackLogEntity.getWorkNode();
}
ls.add(warehousePackageTrackLogEntity);
});
packageTrackLogAsyncService.addBatchPackageTrackLog(ls, orderPackageCodes, workNode[0]);
packageTrackLogAsyncService.addBatchPackageTrackLog(ls, orderPackageCodes, workNode[0], map);
}
}

6
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/IPackageTrackLogAsyncService.java

@ -1,15 +1,17 @@
package com.logpm.trunkline.service;
import com.alibaba.fastjson.JSONObject;
import com.logpm.warehouse.entity.WarehousePackageTrackLogEntity;
import java.util.List;
import java.util.Map;
public interface IPackageTrackLogAsyncService {
void addPackageTrackLog(String tenantId, Long userId, Long deptId, String nickName, List<String> orderPackageCodes, Long warehouseId, String warehouseName, Integer workNode, String content);
void addBatchPackageTrackLog(List<WarehousePackageTrackLogEntity> addPackageTrackLogList, List<String> orderPackageCodes, Integer code);
void addBatchPackageTrackLog(List<WarehousePackageTrackLogEntity> addPackageTrackLogList, List<String> orderPackageCodes, Integer code, Map<String, JSONObject> map);
void sendPackageWorkNodeFanout(List<String> orderPackageCodes,Integer workNode,Long warehouseId);
void sendPackageWorkNodeFanout(List<String> orderPackageCodes, Integer workNode, Long warehouseId, Map<String, JSONObject> map);
}

4
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/ITrunklineWaybillPackageService.java

@ -1,11 +1,13 @@
package com.logpm.trunkline.service;
import com.alibaba.fastjson.JSONObject;
import com.logpm.trunkline.entity.TrunklineWaybillPackageEntity;
import com.logpm.trunkline.vo.TrunklineAdvanceDetailVO;
import com.logpm.warehouse.entity.WarehouseWaybillEntity;
import org.springblade.core.mp.base.BaseService;
import java.util.List;
import java.util.Map;
public interface ITrunklineWaybillPackageService extends BaseService<TrunklineWaybillPackageEntity> {
void saveList(List<TrunklineAdvanceDetailVO> list, WarehouseWaybillEntity waybillEntity);
@ -13,6 +15,6 @@ public interface ITrunklineWaybillPackageService extends BaseService<TrunklineWa
void updateWaybillStatus(WarehouseWaybillEntity waybillEntity);
void updatePackageStatus(List<String> orderPackageCodes, Integer workNode,Long warehouseId);
void updatePackageStatus(List<String> orderPackageCodes, Integer workNode, Long warehouseId, Map<String, JSONObject> map);
}

15
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/PackageTrackLogAsyncServiceImpl.java

@ -1,11 +1,13 @@
package com.logpm.trunkline.service.impl;
import cn.hutool.core.collection.CollUtil;
import com.alibaba.fastjson.JSONObject;
import com.logpm.trunkline.service.IPackageTrackLogAsyncService;
import com.logpm.trunkline.service.ISendFanoutService;
import com.logpm.trunkline.service.ITrunklineWaybillPackageService;
import com.logpm.warehouse.entity.WarehousePackageTrackLogEntity;
import com.logpm.warehouse.feign.IWarehousePackageTrackLogClient;
import io.prometheus.client.CollectorRegistry;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.annotations.LogpmAsync;
@ -16,6 +18,7 @@ import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
@Service
@Slf4j
@ -25,6 +28,7 @@ public class PackageTrackLogAsyncServiceImpl implements IPackageTrackLogAsyncSer
private final IWarehousePackageTrackLogClient warehousePackageTrackLogClient;
private final ITrunklineWaybillPackageService waybillPackageService;
private final ISendFanoutService sendFanoutService;
private final CollectorRegistry collectorRegistry;
@LogpmAsync("asyncExecutor")
@Override
@ -51,26 +55,29 @@ public class PackageTrackLogAsyncServiceImpl implements IPackageTrackLogAsyncSer
}
warehousePackageTrackLogClient.addLogList(list);
waybillPackageService.updatePackageStatus(orderPackageCodes, workNode,warehouseId);
waybillPackageService.updatePackageStatus(orderPackageCodes, workNode,warehouseId, null);
}
@LogpmAsync("asyncExecutor")
@Override
public void addBatchPackageTrackLog(List<WarehousePackageTrackLogEntity> addPackageTrackLogList, List<String> orderPackageCodes, Integer workNode) {
public void addBatchPackageTrackLog(List<WarehousePackageTrackLogEntity> addPackageTrackLogList, List<String> orderPackageCodes, Integer workNode, Map<String, JSONObject> map) {
warehousePackageTrackLogClient.addLogList(addPackageTrackLogList);
WarehousePackageTrackLogEntity warehousePackageTrackLogEntity = addPackageTrackLogList.get(0);
Long warehouseId = warehousePackageTrackLogEntity.getWarehouseId();
waybillPackageService.updatePackageStatus(orderPackageCodes, workNode,warehouseId);
waybillPackageService.updatePackageStatus(orderPackageCodes, workNode,warehouseId, map);
}
@LogpmAsync("asyncExecutor")
@Override
public void sendPackageWorkNodeFanout(List<String> orderPackageCodes,Integer workNode,Long warehouseId) {
public void sendPackageWorkNodeFanout(List<String> orderPackageCodes, Integer workNode, Long warehouseId, Map<String, JSONObject> map) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("orderPackageCodes",orderPackageCodes);
jsonObject.put("workNode",workNode);
jsonObject.put("warehouseId",warehouseId);
if(CollUtil.isNotEmpty(map)){
jsonObject.put("mainMap",map);
}
FanoutMsg build = FanoutMsg.builder().msg(jsonObject.toJSONString())
.exchange(FanoutConstants.trunkline.PACKAGNODE.EXCHANGE).build();

4
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineCarsLoadServiceImpl.java

@ -4757,7 +4757,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
1, 1, 0, null, null, null, e.getFromWarehouseId(), e.getId(), remark);
});
packageTrackLogAsyncService.addBatchPackageTrackLog(addPackageTrackLogList, orderPackageCodes, WorkNodeEnums.INITIAL_WAREHOUSE_LOADING.getCode());
packageTrackLogAsyncService.addBatchPackageTrackLog(addPackageTrackLogList, orderPackageCodes, WorkNodeEnums.INITIAL_WAREHOUSE_LOADING.getCode(), null);
return R.success("装车完成");
}
@ -4908,7 +4908,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
//包件签收状态修改
distributionParcelListClient.updatePackageStatus(orderPackageCodes, warehouseId, "70");
waybillPackageService.updatePackageStatus(orderPackageCodes, WorkNodeEnums.SIGN_TRIPARTITE_TRANSFER_DEPART.getCode(),warehouseId);
waybillPackageService.updatePackageStatus(orderPackageCodes, WorkNodeEnums.SIGN_TRIPARTITE_TRANSFER_DEPART.getCode(),warehouseId, null);
try {
String content = "包件在" + warehouseEntity.getName() + "被三方中转签收";

5
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineWaybillPackageServiceImpl.java

@ -1,5 +1,6 @@
package com.logpm.trunkline.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.logpm.trunkline.entity.TrunklineWaybillPackageEntity;
import com.logpm.trunkline.mapper.TrunklineWaybillPackageMapper;
@ -147,7 +148,7 @@ public class TrunklineWaybillPackageServiceImpl extends BaseServiceImpl<Trunklin
}
@Override
public void updatePackageStatus(List<String> orderPackageCodes, Integer workNode,Long warehouseId) {
public void updatePackageStatus(List<String> orderPackageCodes, Integer workNode, Long warehouseId, Map<String, JSONObject> map) {
Integer packageStatus = null;
if(WorkNodeEnums.INITIAL_WAREHOUSE_DEPART.getCode().equals(workNode)){
@ -189,7 +190,7 @@ public class TrunklineWaybillPackageServiceImpl extends BaseServiceImpl<Trunklin
}
packageTrackLogAsyncService.sendPackageWorkNodeFanout(orderPackageCodes,workNode,warehouseId);
packageTrackLogAsyncService.sendPackageWorkNodeFanout(orderPackageCodes,workNode,warehouseId, map);
}
}

Loading…
Cancel
Save