Browse Source

Merge branch 'dev-xx' into dev

fix-sign
pref_mail@163.com 4 months ago
parent
commit
a4912a7b28
  1. 10
      blade-biz-common/src/main/java/org/springblade/common/constant/broadcast/FanoutConstants.java
  2. 8
      blade-biz-common/src/main/java/org/springblade/common/model/DistributionSignforVO.java
  3. 11
      blade-biz-common/src/main/java/org/springblade/common/model/PackageData.java
  4. 23
      blade-biz-common/src/main/java/org/springblade/common/model/workNode/PickUpByScanVO.java
  5. 5
      blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/dto/MerchantStatisticsDTO.java
  6. 14
      blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseWaybillEntity.java
  7. 1
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/api/DistributionStockupAppController.java
  8. 15
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionSignforServiceImpl.java
  9. 22
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java
  10. 13
      blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml
  11. 72
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/controller/MerchantStatisticsController.java
  12. 8
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/WaybillCheckListener.java
  13. 3
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.java
  14. 176
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.xml
  15. 6
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/IStatisticsOrderInfoService.java
  16. 791
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/service/impl/StatisticsOrderInfoServiceImpl.java
  17. 1
      blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/vo/StatisticsPackageFeeInfoVO.java
  18. 161
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mq/waybil/StatusLogListener.java
  19. 19
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineWaybillTrackServiceImpl.java

10
blade-biz-common/src/main/java/org/springblade/common/constant/broadcast/FanoutConstants.java

@ -322,6 +322,11 @@ public abstract class FanoutConstants {
interface QUEUE {
String REPORT = "fanout.distribution.DeliveryAndrecheck.report" + ModuleNameConstant.DEVAUTH;
String waybillStatusLog = "fanout.distribution.DeliveryAndrecheck.waybill.log" + ModuleNameConstant.DEVAUTH;
}
}
@ -396,6 +401,11 @@ public abstract class FanoutConstants {
interface QUEUE {
String REPORT = "fanout.BillSignReview.billsignreview.report" + ModuleNameConstant.DEVAUTH;
//增加运单状态的变更日志
String waybillStatusLog = "fanout.BillSignReview.waybill.log" + ModuleNameConstant.DEVAUTH;
}
}

8
blade-biz-common/src/main/java/org/springblade/common/model/DistributionSignforVO.java

@ -3,6 +3,7 @@ package org.springblade.common.model;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
@ -40,6 +41,13 @@ public class DistributionSignforVO implements Serializable {
* 签收车次
*/
private String trainNumber;
/**
* 配送时间
*/
private Date deliveryTime;
/**
* 预约单ID
*/

11
blade-biz-common/src/main/java/org/springblade/common/model/PackageData.java

@ -8,6 +8,7 @@ import org.springblade.common.enums.PackageTypeEnums;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* 提送数据
@ -138,4 +139,14 @@ public class PackageData implements Serializable {
*/
private String systemType ;
/**
* 签收时间
*/
private Date signTime;
/**
* 签收人
*/
private String signUser;//签收人
}

23
blade-biz-common/src/main/java/org/springblade/common/model/workNode/PickUpByScanVO.java

@ -3,6 +3,7 @@ package org.springblade.common.model.workNode;
import lombok.Data;
import org.springblade.common.model.PackageData;
import java.util.Date;
import java.util.List;
@Data
@ -12,6 +13,28 @@ public class PickUpByScanVO {
* 自提单号
*/
private String pickupBatch;
//
// /**
// * 车次号
// */
// private String trainNumber;
/**
* 车牌号
*/
private String carNumber;
/**
* 司机名称
*/
private String driverName;
/**
* 配送时间
*/
private Date deliveryTime;
/**
* 自提明细数据

5
blade-service-api/logpm-statisticsdata-api/src/main/java/com/logpm/statistics/dto/MerchantStatisticsDTO.java

@ -24,7 +24,12 @@ public class MerchantStatisticsDTO implements Serializable {
private Integer confirmStatisticsOrder;//对账状态 0 1
private List<Long> reconciliationOrderIds;
private List<Long> orderInfoIds;
/**
* 运单ID集合
*/
private List<Long> waybillIds;
private Long balanceOrderInfoId;

14
blade-service-api/logpm-warehouse-api/src/main/java/com/logpm/warehouse/entity/WarehouseWaybillEntity.java

@ -547,6 +547,20 @@ public class WarehouseWaybillEntity extends TenantEntity {
@ApiModelProperty(value = "文员复核时间 ")
private Date signCheckTime;
/**
*付款状态(null) 10 未付款 20 部分付款 30 已付款
*/
@ApiModelProperty(value = "付款状态")
private String payStatus;
/**
* 结算状态nul 10未结算 20 部分结算 30 已结算
*/
@ApiModelProperty(value = "结算状态")
private String settlementStatus;

1
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/api/DistributionStockupAppController.java

@ -754,7 +754,6 @@ public class DistributionStockupAppController extends BladeController {
}
//todo 这里代码没有写完 等TJJ 和CYZ 空了来写
@ResponseBody
@PostMapping("/updateStockup")
@ApiOperationSupport(order = 1)

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

@ -757,7 +757,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
// 推送作业节点数据
NodeFanoutMsg<org.springblade.common.model.DistributionReCheckSignVO> nodeFanoutMsg = buildNodeFanoutMsgByReCheck(reservationEntity);
NodeFanoutMsg<org.springblade.common.model.DistributionReCheckSignVO> nodeFanoutMsg = buildNodeFanoutMsgByReCheck(deliveryListEntity,reservationEntity);
iDistributionNodeWorkService.signForCheck(nodeFanoutMsg, AuthUtil.getUser());
// // 复核作业节点推送
@ -783,7 +783,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
distributionPlanLogService.save(distributionPlanLogEntity);
}
private NodeFanoutMsg<org.springblade.common.model.DistributionReCheckSignVO> buildNodeFanoutMsgByReCheck(DistributionReservationEntity reservationEntity) {
private NodeFanoutMsg<org.springblade.common.model.DistributionReCheckSignVO> buildNodeFanoutMsgByReCheck(DistributionDeliveryListEntity deliveryListEntity,DistributionReservationEntity reservationEntity) {
// 查询当前预约单下的定制品和零担签收数据
NodeFanoutMsg<org.springblade.common.model.DistributionReCheckSignVO> nodeFanoutMsg = new NodeFanoutMsg();
@ -798,6 +798,11 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
org.springblade.common.model.DistributionReCheckSignVO distributionLoadVO = new org.springblade.common.model.DistributionReCheckSignVO();
distributionLoadVO.setReservationCode(reservationEntity.getReservationCode());
distributionLoadVO.setDeliveryTime(deliveryListEntity.getCreateTime());
distributionLoadVO.setTrainNumber(deliveryListEntity.getTrainNumber());
distributionLoadVO.setVehicleName(deliveryListEntity.getVehicleName());
distributionLoadVO.setDriverName(deliveryListEntity.getDriverName());
nodeFanoutMsg.setMain(distributionLoadVO);
@ -808,6 +813,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
for (DistributionLoadscanEntity distributionLoadscanEntity : list) {
PackageData packageData = new PackageData();
packageData.setSignTime(org.springblade.core.tool.utils.DateUtil.parse(distributionLoadscanEntity.getSigningTime(),"yyyy-mm-dd hh:mm:ss"));
packageData.setSignUser(distributionLoadscanEntity.getSigningUser());
// 不是零担
if (distributionLoadscanEntity.getIsZero() == null || distributionLoadscanEntity.getIsZero() == 0) {
packageData.setPackageCode(distributionLoadscanEntity.getOrderPackageCode());
@ -816,6 +823,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
DistributionParcelListEntity distributionParcelListEntity1 = distributionParcelListService.selectByOrderPackageCode(distributionLoadscanEntity.getOrderPackageCode(), distributionLoadscanEntity.getWarehouseId());
if (Func.isNotEmpty(distributionParcelListEntity1)) {
packageData.setBrand(distributionParcelListEntity1.getBrandName());
packageData.setWaybillNumber(distributionParcelListEntity1.getWaybillNumber());
packageData.setOrderCode(distributionParcelListEntity1.getOrderCode());
}
} else {
// 零担
@ -7092,7 +7101,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
buildArgsToPushMq(distributionSignfor);
if (isSuccess) {
//整理签收数据回退干线
handletrunklineWaybillSignLog(distributionSignfor.getReservationId());
// handletrunklineWaybillSignLog(distributionSignfor.getReservationId());
this.updateById(distributionSignfor);

22
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistrilbutionBillLadingServiceImpl.java

@ -3968,7 +3968,7 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
}
}
} catch (Exception e) {
log.error("推送失败:{}", e);
log.error("推送失败:", e);
}
for (DistributionBillLadingScanEntity ladingScanEntity : ladingScanEntities) {
if (ladingScanEntity.getStockArticleId() != null) {
@ -4034,15 +4034,15 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
//释放库存品
updateStock(s, scanEntityList);
}
Integer num = baseMapper.selectBillLadingLoading(billLadingEntity.getId());
Integer num = baseMapper.selectBillLadingLoading(distrilbutionBillLadingEntity.getId());
//自提复核日志
handleDExamineDistributionPlanLog(billLadingEntity, AuthUtil.getUser(), myCurrentWarehouse, num);
handleDExamineDistributionPlanLog(distrilbutionBillLadingEntity, AuthUtil.getUser(), myCurrentWarehouse, num);
// 回传老系统自提数据
sendOldSystem(Long.parseLong(s));
//整理运单信息
handletrunklineWaybillSignLog(billLadingEntity.getId());
// handletrunklineWaybillSignLog(billLadingEntity.getId());
NodeFanoutMsg<PickUpByReCheckVO> nodeFanoutMsg = buildPickUpByReCheckVO(billLadingEntity, ladingScanEntities, myCurrentWarehouse);
NodeFanoutMsg<PickUpByReCheckVO> nodeFanoutMsg = buildPickUpByReCheckVO(distrilbutionBillLadingEntity, ladingScanEntities, myCurrentWarehouse);
iDistributionNodeWorkService.billofladingSignforCheck(nodeFanoutMsg, AuthUtil.getUser());
//推送该自提单的包件运单信息
@ -4163,13 +4163,17 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
nodeFanoutMsg.setTenantId(myCurrentWarehouse.getTenantId());
PickUpByReCheckVO pickUpByReCheckVO = new PickUpByReCheckVO();
pickUpByReCheckVO.setPickupBatch(billLadingEntity.getPickupBatch());
pickUpByReCheckVO.setCarNumber(billLadingEntity.getPickUpPlate());
pickUpByReCheckVO.setDriverName(billLadingEntity.getConsignee());
pickUpByReCheckVO.setDeliveryTime(billLadingEntity.getPickUpTime());
List<PackageData> packageDataList = new ArrayList<>();
pickUpByReCheckVO.setPackageDataList(packageDataList);
ladingScanEntities.forEach(t -> {
PackageData packageData = new PackageData();
packageData.setSignUser(t.getScanUser());
packageData.setSignTime(t.getCreateTime());
if ("1".equals(t.getMaterialType())) {
// 库存
Long stockListId = t.getStockListId();
@ -4182,10 +4186,16 @@ public class DistrilbutionBillLadingServiceImpl extends BaseServiceImpl<Distrilb
packageData.setMaterialCode(byId.getCargoNumber());
packageData.setNumber(t.getQuantity());
packageData.setPackageType(PackageTypeEnums.INV);
}
} else if ("2".equals(t.getMaterialType())) {
//定制品
DistributionParcelListEntity byId = distributionParcelListService.getById(t.getParcelListId());
if (Func.isNotEmpty(byId)) {
packageData.setOrderCode(byId.getOrderCode());
packageData.setWaybillNumber(byId.getWaybillNumber());
}
packageData.setPackageCode(t.getPacketBarCode());
packageData.setNumber(1);
packageData.setPackageType(PackageTypeEnums.CMP);

13
blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml

@ -13,7 +13,7 @@
<if test="param.endDate != null">
and create_time &lt;= #{param.endDate}
</if>
and departure_warehouse_id in
and destination_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
@ -24,7 +24,7 @@
select IFNULL(sum(IFNULL(x_pay,0)+IFNULL(d_pay,0)+IFNULL(y_pay,0)+IFNULL(h_pay,0)),0)
from logpm_warehouse_waybill
where 1=1
and departure_warehouse_id in
and destination_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
@ -45,7 +45,7 @@
<if test="param.endDate != null">
and create_time &lt;= #{param.endDate}
</if>
and departure_warehouse_id in
and destination_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
@ -924,7 +924,7 @@
</select>
<select id="findTotalNumByWarWarehouseId"
resultType="com.logpm.report.vo.indexCount.IndexOpenItemDataByWarWarehouseIdVO">
select departure_warehouse_id as warehouseId,departure_warehouse_name as warehouseName ,
select destination_warehouse_id as warehouseId,destination_warehouse_name as warehouseName ,
IFNULL(count(id),0) totalNum,
IFNULL(sum(total_count),0) totalCount
from logpm_warehouse_waybill
@ -935,11 +935,12 @@
<if test="param.endDate != null">
and create_time &lt;= #{param.endDate}
</if>
and departure_warehouse_id in
and destination_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
GROUP BY departure_warehouse_id
AND YEAR(create_time) = YEAR(CURDATE())
GROUP BY destination_warehouse_id
</select>
<select id="handOrderDataByWarehouseId" resultType="com.logpm.report.vo.IndexHandOrderDataByWarehouseIdVO">
select

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

@ -100,6 +100,55 @@ public class MerchantStatisticsController {
}
}
@ResponseBody
@PostMapping("/createFinishWaybillId")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "批量结算完成", notes = "传入merchantStatisticsDTO")
public R createFinishWaybillId(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############createReconciliationOrder: ";
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
List<Long> waybillIds = merchantStatisticsDTO.getWaybillIds();
if (CollUtil.isEmpty(waybillIds)) {
log.warn(method + "请选择正确的订单 merchantStatisticsDTO={}", merchantStatisticsDTO);
return R.fail(405, "请选择正确的订单");
}
return statisticsOrderInfoService.createFinishWaybillId(waybillIds);
} 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("/createReconciliationwWaybillId")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "创建对账单", notes = "传入merchantStatisticsDTO")
public R createReconciliationwWaybillId(@RequestBody MerchantStatisticsDTO merchantStatisticsDTO) {
String method = "############createReconciliationOrder: ";
log.info(method + "请求参数{}", merchantStatisticsDTO);
try {
List<Long> waybillIds = merchantStatisticsDTO.getWaybillIds();
if (CollUtil.isEmpty(waybillIds)) {
log.warn(method + "请选择正确的订单 merchantStatisticsDTO={}", merchantStatisticsDTO);
return R.fail(405, "请选择正确的订单");
}
return statisticsOrderInfoService.createReconciliationWaybillId(waybillIds);
} 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("/pageReconciliationList")
@ApiOperationSupport(order = 1)
@ -368,4 +417,27 @@ public class MerchantStatisticsController {
}
@ResponseBody
@PatchMapping("/calculateRealCostByWaybillId/{id}")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "计算实际费用", notes = "计算实际费用")
public R<Boolean> calculateRealCostByWaybillId(@PathVariable("id") Long id) {
String method = "############calculateRealCost: ";
log.info(method + "请求参数{}", id);
try {
return R.status(statisticsOrderInfoService.calculateRealCostByWaybillId(id));
} 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, "系统异常");
}
}
}

8
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/listener/mq/WaybillCheckListener.java

@ -85,10 +85,10 @@ public class WaybillCheckListener {
log.warn("###############checkWaybillIncomingData: 运单类型不正确 waybillId={} waybillType={}", waybillId, waybillType);
}
if (payWay.equals("1") || payWay.equals("2")) {
//如果是现付和到付需要直接生成结算单
createBalanceOrder(waybillEntity);
}
// if (payWay.equals("1") || payWay.equals("2")) {
// //如果是现付和到付需要直接生成结算单
// createBalanceOrder(waybillEntity);
// }
log.info("#########checkWaybillIncomingData: 运单审核处理收入结算数据 结束 waybillId={}", waybillId);
}

3
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.java

@ -28,6 +28,7 @@ public interface StatisticsOrderInfoMapper extends BaseMapper<StatisticsOrderInf
StatisticsPackageFeeInfoVO findPackageListByOrderIds(@Param("orderInfoIds") List<Long> orderInfoIdsList);
List<StatisticsPackageFeeInfoVO> findPackageListByOrderIdsGroupById(@Param("orderInfoIds") List<Long> orderInfoIdList);
List<StatisticsPackageFeeInfoVO> findPackageListByOrderIdsGroupByWaybillId(@Param("waybillIds") Set<Long> orderInfoIdList);
List<Long> findOrderInfoIdListByReconciliationOrderIds(@Param("reconciliationOrderIds") List<Long> reconciliationOrderIds);
@ -48,4 +49,6 @@ public interface StatisticsOrderInfoMapper extends BaseMapper<StatisticsOrderInf
void deleteDataByWaybillId(@Param("waybillId") Long waybillId);
List<AdvanceDetailDTO> selectAdvinceDetail(@Param("waybillIds") Set<Long> waybillIds, @Param("orderCodes") Set<String> orderCodes);
IPage<StatisticsOrderInfoVO> pageList2B(IPage<Object> page, @Param("param") MerchantStatisticsDTO merchantStatisticsDTO);
}

176
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/mapper/StatisticsOrderInfoMapper.xml

@ -498,6 +498,52 @@
group by lstp.order_info_id
</select>
<select id="findPackageListByOrderIdsGroupByWaybillId" resultType="com.logpm.statistics.vo.StatisticsPackageFeeInfoVO">
select
lstp.waybill_id,
GROUP_CONCAT(DISTINCT lswp.product_name ORDER BY lswp.product_name) goodsName,
IFNULL(sum(lstp.num),0) totalNum,
IFNULL(sum(lstp.weight),0) totalWeight,
IFNULL(sum(lstp.volume),0) totalVolume,
IFNULL(sum(lstp.system_freight_price),0)+IFNULL(sum(lstp.system_pickup_price),0)+IFNULL(sum(lswp.warehouse_service_fee),0)+IFNULL(sum(lsdp.delivery_service_fee),0)
sysTotalFee,
IFNULL(sum(lstp.freight_price),0)+IFNULL(sum(lstp.pickup_price),0)+IFNULL(sum(lswp.warehouse_service_fee),0)+IFNULL(sum(lsdp.delivery_service_fee),0)
totalFee,
IFNULL(sum(lstp.system_freight_price),0) systemFreightPrice,
IFNULL(sum(lstp.freight_price),0) freightPrice,
IFNULL(sum(lstp.system_pickup_price),0) systemPickupPrice,
IFNULL(sum(lstp.pickup_price),0) pickupPrice,
IFNULL(sum(lswp.warehouse_service_fee),0) warehouseServiceFee,
IFNULL(sum(lswp.warehouse_fee),0) warehouseFee,
IFNULL(sum(lswp.warehouse_manage_fee),0) warehouseManageFee,
IFNULL(sum(lswp.warehouse_sorting_fee),0) warehouseSortingFee,
IFNULL(sum(lswp.warehouse_operating_fee),0) warehouseOperatingFee,
IFNULL(sum(lsdp.system_delivery_fee),0) systemDeliveryFee,
IFNULL(sum(lsdp.delivery_service_fee),0) deliveryServiceFee,
IFNULL(sum(lsdp.delivery_fee),0) deliveryFee,
IFNULL(sum(lsdp.delivery_loading_fee),0) deliveryLoadingFee,
IFNULL(sum(lsdp.delivery_sorting_fee),0) deliverySortingFee,
IFNULL(sum(lsdp.delivery_upfloor_fee),0) deliveryUpfloorFee,
IFNULL(sum(lsdp.delivery_move_fee),0) deliveryMoveFee,
IFNULL(sum(lsdp.delivery_other_fee),0) deliveryOtherFee,
IFNULL(sum(lsdp.delivery_crossing_fee),0) deliveryCrossingFee,
IFNULL(sum(lsdp.sign_num),0) signNum,
max(lsdp.sign_time) signTime
from logpm_statistics_trunkline_package lstp
left join logpm_statistics_warehouse_package lswp on lswp.order_info_id = lstp.order_info_id and
IFNULL(lswp.order_package_code,'0') = IFNULL(lstp.order_package_code,'0') and IFNULL(lswp.product_id,1) =
IFNULL(lstp.product_id,1)
left join logpm_statistics_distribution_package lsdp on lsdp.order_info_id = lswp.order_info_id and
IFNULL(lsdp.order_package_code,'0') = IFNULL(lswp.order_package_code,'0') and IFNULL(lswp.product_id,1) =
IFNULL(lsdp.product_id,1)
where lstp.waybill_id in
<foreach collection="waybillIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
group by lstp.waybill_id
</select>
<select id="findOrderInfoIdListByReconciliationOrderIds" resultType="Long">
select id
from logpm_statistics_order_info lsoi
@ -577,6 +623,136 @@
#{item}
</foreach>
</select>
<select id="pageList2B" resultType="com.logpm.statistics.vo.StatisticsOrderInfoVO">
select lsoi.id orderInfoId,
lsoi.brand_id brandId,
lsoi.brand brand,
lsoi.waybill_id waybillId,
lsoi.waybill_no waybillNo,
lsoi.order_code orderCode,
lsoi.type_service typeService,
lww.shipper shipper,
lww.shipper_name shipperPerson,
lww.shipper_mobile shipperMobile,
lww.shipper_address shipperAddress,
lww.consignee consignee,
lww.consignee_name consigneePerson,
lww.consignee_mobile consigneeMobile,
lww.consignee_address consigneeAddress,
case lww.waybill_status
when 100 then 2
when 90 then 1
else 0
end
as signStatus,
lww.sign_time signDate,
lww.create_time openTime,
lww.departure departure,
lww.destination destination,
lsoi.departure_warehouse_id departureWarehouseId,
lsoi.departure_warehouse_name departureWarehouseName,
lsoi.destination_warehouse_id destinationWarehouseId,
lsoi.destination_warehouse_name destinationWarehouseName,
lww.delivery_method deliveryMethod,
lww.customer_train customerTrain,
lww.pay_type payType,
lww.pay_way payWay,
lsoi.create_reconciliation_order_status createReconciliationOrderStatus,
lsoi.create_reconciliation_user_name createReconciliationUserName,
lsoi.create_reconciliation_date createReconciliationDate,
lsoi.cycle cycle,
lsoi.warehouse_fee_interval warehouseFeeInterval,
lsoi.sync_fee_status syncFeeStatus,
lsoi.sync_fee_date syncFeeDate,
lbc.clean_obj_type cleanObjType
from logpm_statistics_order_info lsoi
left join logpm_basicdata_client lbc on lbc.id = lsoi.consignee_id
left join logpm_warehouse_waybill lww on lww.id = lsoi.waybill_id
where 1=1
and lsoi.create_reconciliation_order_status = 0
<if test="param.listType == 1">
and lsoi.type_service != '2'
</if>
<if test="param.listType == 2">
and lsoi.type_service = '2'
</if>
<if test="param.consignee != null and param.consignee != '' ">
and Locate(#{param.consignee},lww.consignee) > 0
</if>
<if test="param.confirmStatisticsOrder != null">
and lsoi.confirm_statistics_order = #{param.confirmStatisticsOrder}
</if>
<if test="param.syncFeeSstatus != null">
and lsoi.sync_fee_status = #{param.syncFeeSstatus}
</if>
<if test="param.signStatus != null">
and lsoi.sign_status = #{param.signStatus}
</if>
<if test="param.waybillNo != null and param.waybillNo != '' ">
and Locate(#{param.waybillNo},lww.waybill_no) > 0
</if>
<if test="param.orderCode != null and param.orderCode != '' ">
and Locate(#{param.orderCode},lww.order_no) > 0
</if>
<if test="param.shipper != null and param.shipper != '' ">
and Locate(#{param.shipper},lww.shipper) > 0
</if>
<if test="param.departureWarehouseName != null and param.departureWarehouseName != '' ">
and Locate(#{param.departureWarehouseName},lsoi.departure_warehouse_name) > 0
</if>
<if test="param.destinationWarehouseName != null and param.destinationWarehouseName != '' ">
and Locate(#{param.destinationWarehouseName},lsoi.destination_warehouse_name) > 0
</if>
<if test="param.typeService != null">
and lsoi.type_service = #{param.typeService}
</if>
<if test="param.openTimeStart != null">
and lww.document_making_time &gt;= #{param.openTimeStart}
</if>
<if test="param.openTimeEnd != null">
and lww.document_making_time &lt;= #{param.openTimeEnd}
</if>
<if test="param.signTimeStart != null">
and lsoi.sign_date &gt;= #{param.signTimeStart}
</if>
<if test="param.signTimeEnd != null">
and lsoi.sign_date &lt;= #{param.signTimeEnd}
</if>
<if test="param.syncFeeDateStart != null">
and lsoi.sync_fee_date &gt;= #{param.syncFeeDateStart}
</if>
<if test="param.syncFeeDateEnd != null">
and lsoi.sync_fee_date &lt;= #{param.syncFeeDateEnd}
</if>
<if test="param.shipperPerson != null and param.shipperPerson != '' ">
and Locate(#{param.shipperPerson},lww.shipper_person) > 0
</if>
<if test="param.shipperMoblie != null and param.shipperMoblie != '' ">
and Locate(#{param.shipperMoblie},lww.shipper_mobile) > 0
</if>
<if test="param.consigneePerson != null and param.consigneePerson != '' ">
and Locate(#{param.consigneePerson},lww.consignee_person) > 0
</if>
<if test="param.consigneeMobile != null and param.consigneeMobile != '' ">
and Locate(#{param.consigneeMobile},lww.consignee_mobile) > 0
</if>
<if test="param.cleanObjType != null and param.cleanObjType != '' ">
and lbc.clean_obj_type = #{param.cleanObjType}
</if>
<if test="param.payType != null and param.payType != '' ">
and lww.pay_type = #{param.payType}
</if>
<if test="param.payWay != null and param.payWay != '' ">
and lww.pay_way = #{param.payWay}
</if>
and lsoi.destination_warehouse_id in
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")">
#{item}
</foreach>
group by lsoi.waybill_id
</select>
<delete id="deleteDataByWaybillId" >

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

@ -56,4 +56,10 @@ public interface IStatisticsOrderInfoService extends BaseService<StatisticsOrder
void orderInfoService(Long waybillId);
R createReconciliationWaybillId(List<Long> waybillIds);
R createFinishWaybillId(List<Long> waybillIds);
boolean calculateRealCostByWaybillId(Long id);
}

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

File diff suppressed because it is too large Load Diff

1
blade-service/logpm-statisticsdata/src/main/java/com/logpm/statistics/vo/StatisticsPackageFeeInfoVO.java

@ -10,6 +10,7 @@ import java.util.Date;
public class StatisticsPackageFeeInfoVO implements Serializable {
private Long orderInfoId;
private Long waybillId;
private String goodsName;//物料品类

161
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mq/waybil/StatusLogListener.java

@ -0,0 +1,161 @@
package com.logpm.trunkline.mq.waybil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import com.logpm.trunkline.dto.WaybillLogDTO;
import com.logpm.trunkline.feign.ITrunklineWaybillTrackClient;
import com.logpm.trunkline.mapper.TrunklineWaybillPackageMapper;
import com.logpm.trunkline.service.ITrunklineWaybillPackageService;
import com.logpm.trunkline.service.ITrunklineWaybillTrackService;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.common.constant.broadcast.FanoutConstants;
import org.springblade.common.enums.BizOperationEnums;
import org.springblade.common.model.DistributionReCheckSignVO;
import org.springblade.common.model.NodeFanoutMsg;
import org.springblade.common.model.PackageData;
import org.springblade.common.model.workNode.PickUpByReCheckVO;
import org.springframework.amqp.core.ExchangeTypes;
import org.springframework.amqp.rabbit.annotation.Exchange;
import org.springframework.amqp.rabbit.annotation.Queue;
import org.springframework.amqp.rabbit.annotation.QueueBinding;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import java.util.*;
import java.util.stream.Collectors;
/**
* 运单日志和状态变更
*/
@Slf4j
@Component
@AllArgsConstructor
public class StatusLogListener {
private final ITrunklineWaybillTrackClient trunklineWaybillTrackClient ;
@RabbitListener(bindings = @QueueBinding(
value = @Queue(name = FanoutConstants.DeliveryOfPickup.BillSignReview.QUEUE.waybillStatusLog, durable = "true"),
exchange = @Exchange(name = FanoutConstants.DeliveryOfPickup.BillSignReview.EXCHANGE, type = ExchangeTypes.FANOUT)
))
@Transactional(rollbackFor = Exception.class)
public void statusPickUpLog(String msg) {
log.info("自提复核处理运单日志和状态: {}", msg);
if (StrUtil.isEmpty(msg)) {
return;
}
NodeFanoutMsg bean = JSONUtil.toBean(msg, NodeFanoutMsg.class);
Object main = bean.getMain();
JSONObject entries = JSONUtil.parseObj(main);
PickUpByReCheckVO vo = JSONUtil.toBean(entries, PickUpByReCheckVO.class);
Long warehouseId = bean.getWarehouseId();
BizOperationEnums bizOperation = bean.getBizOperation();
List<PackageData> details = vo.getPackageDataList();
// 按照运单号进行分组 后面的集合 按照创建时间进行排序
Map<String, List<PackageData>> map = details.stream().collect(Collectors.groupingBy(PackageData::getWaybillNumber));
// 根据运单号 统计 每个运单的数量
Map<String, Integer> waybillCountMap = new HashMap<>();
for (PackageData packageData : details) {
String waybillNumber = packageData.getWaybillNumber();
waybillCountMap.put(waybillNumber, waybillCountMap.getOrDefault(waybillNumber, 0) + packageData.getNumber());
}
Set<String> strings = waybillCountMap.keySet();
for (String waybillNumber : strings) {
WaybillLogDTO t = new WaybillLogDTO();
List<PackageData> packageDataList = map.get(waybillNumber);
if (packageDataList != null && !packageDataList.isEmpty()) {
packageDataList.sort(Comparator.comparing(PackageData::getSignTime));
// 获取排序第一个
t.setSignUser(packageDataList.get(0).getSignUser());
t.setSignTime(packageDataList.get(0).getSignTime());
}
t.setWaybillNo(waybillNumber);
t.setWarehouseName(bean.getWarehouse());
t.setWarehouseId(warehouseId);
t.setTrainNumber(vo.getPickupBatch());
t.setCarNumber(vo.getCarNumber());
t.setDriverName(vo.getDriverName());
t.setDeliveryTime(vo.getDeliveryTime());
t.setNum(waybillCountMap.get(waybillNumber));
t.setSignOrderCode(vo.getPickupBatch());
t.setType(3);
trunklineWaybillTrackClient.addSignWaybillLog(t);
}
}
/**
* 配送签收复核
* @param msg
*/
@RabbitListener(bindings = @QueueBinding(
value = @Queue(name = FanoutConstants.distribution.DeliveryAndrecheck.QUEUE.waybillStatusLog, durable = "true"),
exchange = @Exchange(name = FanoutConstants.distribution.DeliveryAndrecheck.EXCHANGE, type = ExchangeTypes.FANOUT)
))
@Transactional(rollbackFor = Exception.class)
public void statusDekiveryLog(String msg) {
log.info("商/市配送 复核处理运单日志和状态: {}", msg);
if (StrUtil.isEmpty(msg)) {
return;
}
NodeFanoutMsg bean = JSONUtil.toBean(msg, NodeFanoutMsg.class);
Object main = bean.getMain();
JSONObject entries = JSONUtil.parseObj(main);
DistributionReCheckSignVO vo = JSONUtil.toBean(entries, DistributionReCheckSignVO.class);
Long warehouseId = bean.getWarehouseId();
BizOperationEnums bizOperation = bean.getBizOperation();
List<PackageData> details = vo.getPackageDataList();
// 按照运单号进行分组 后面的集合 按照创建时间进行排序
Map<String, List<PackageData>> map = details.stream().collect(Collectors.groupingBy(PackageData::getWaybillNumber));
// 根据运单号 统计 每个运单的数量
Map<String, Integer> waybillCountMap = new HashMap<>();
for (PackageData packageData : details) {
String waybillNumber = packageData.getWaybillNumber();
waybillCountMap.put(waybillNumber, waybillCountMap.getOrDefault(waybillNumber, 0) + packageData.getNumber());
}
Set<String> strings = waybillCountMap.keySet();
for (String waybillNumber : strings) {
WaybillLogDTO t = new WaybillLogDTO();
List<PackageData> packageDataList = map.get(waybillNumber);
if (packageDataList != null && !packageDataList.isEmpty()) {
packageDataList.sort(Comparator.comparing(PackageData::getSignTime));
// 获取排序第一个
t.setSignUser(packageDataList.get(0).getSignUser());
t.setSignTime(packageDataList.get(0).getSignTime());
}
t.setWaybillNo(waybillNumber);
t.setWarehouseName(bean.getWarehouse());
t.setWarehouseId(warehouseId);
t.setTrainNumber(vo.getTrainNumber());
t.setCarNumber(vo.getVehicleName());
t.setDriverName(vo.getDriverName());
t.setDeliveryTime(vo.getDeliveryTime());
t.setNum(waybillCountMap.get(waybillNumber));
t.setSignOrderCode(vo.getReservationCode());
t.setType(3);
trunklineWaybillTrackClient.addSignWaybillLog(t);
}
}
}

19
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/service/impl/TrunklineWaybillTrackServiceImpl.java

@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.logpm.trunkline.dto.OpenOrderDTO;
import com.logpm.trunkline.dto.WaybillLogDTO;
import com.logpm.trunkline.entity.TrunklineWaybillTrackEntity;
import com.logpm.trunkline.mapper.TrunklineWaybillPackageMapper;
import com.logpm.trunkline.mapper.TrunklineWaybillTrackMapper;
import com.logpm.trunkline.service.IOpenOrderAsyncService;
import com.logpm.trunkline.service.ITrunklineWaybillOrderService;
@ -27,12 +28,13 @@ import java.util.Objects;
@Service
@AllArgsConstructor
public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineWaybillTrackMapper, TrunklineWaybillTrackEntity> implements ITrunklineWaybillTrackService {
private final IWarehouseWaybillClient warehouseWaybillClient;
private final IOpenOrderAsyncService openOrderAsyncService;
private final ITrunklineWaybillOrderService waybillOrderService;
private final ITrunklineWaybillPackageService trunklineWaybillPackageService;
private final TrunklineWaybillPackageMapper trunklineWaybillPackageMapper;
@Override
public List<TrunklineWaybillTrackEntity> findWaybillLog(Long waybillId, String trackType) {
return baseMapper.findWaybillLog(waybillId,trackType);
@ -59,6 +61,11 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
String nickName = waybillLogDTO.getNickName();
if(StringUtil.isNotBlank(waybillNo)){
Integer packageStatus = trunklineWaybillPackageMapper.findMaxPackageStatus(waybillNo);
log.info(">>>>",packageStatus+" **");
WarehouseWaybillEntity warehouseWaybillEntity = warehouseWaybillClient.findByWaybillNo(waybillNo);
if(Objects.isNull(warehouseWaybillEntity)){
log.warn("未找到运单信息 waybillNo:{}",waybillNo);
@ -78,6 +85,7 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
updateWaybill.setSignCheckUserName(nickName);
updateWaybill.setSignCheckTime(new Date());
warehouseWaybillClient.updateEntity(updateWaybill);
warehouseWaybillEntity.setSignNum(updateWaybill.getSignNum());
if(waybillType == 1){
//订制品运单
@ -87,12 +95,8 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
}else if(waybillType == 2){
//零担运单
addZeroWaybillTrackLog(waybillLogDTO,warehouseWaybillEntity);
}
}
} catch (Exception e) {
log.error("添加签收日志失败",e);
@ -134,7 +138,6 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
default:
typeStr = "未知签收";
}
if(type == 3){
//如果是配送签收需要补录配送装车记录
String operationRemark = warehouseName+" 配送装车"+num+"件,车次号:"+trainNumber+",司机:"+driverName+",车牌号:"+carNumber+",装车人"+ loadingUser+",配送时间"+ CommonUtil.dateToStringGeneral(deliveryTime);
@ -146,6 +149,7 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
openOrderAsyncService.saveLog(waybillId,waybillNo,"100",warehouseName+" "+typeStr,operationRemark,nickName,userId,warehouseId,warehouseName);
trunklineWaybillPackageService.updateWaybillStatus(warehouseWaybillEntity);
}
private void addPackageWaybillTrackLog(WaybillLogDTO waybillLogDTO,Long waybillId) {
@ -185,7 +189,6 @@ public class TrunklineWaybillTrackServiceImpl extends BaseServiceImpl<TrunklineW
default:
typeStr = "未知签收";
}
if(type == 3){
//如果是配送签收需要补录配送装车记录
String operationRemark = warehouseName+" 配送装车"+num+"件,车次号:"+trainNumber+",司机:"+driverName+",车牌号:"+carNumber+",装车人"+ loadingUser+",配送时间"+ CommonUtil.dateToStringGeneral(deliveryTime);

Loading…
Cancel
Save