Browse Source

fix(service): 修改签收时推送节点数据给志邦时报错问题

1 修改获取当前登录人为司机
pull/18/head
zhaoqiaobo 11 months ago
parent
commit
bbccb0d9bc
  1. 2
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionAsyncServiceImpl.java

2
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionAsyncServiceImpl.java

@ -1657,7 +1657,7 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
NodePushMsg msg = new NodePushMsg(); NodePushMsg msg = new NodePushMsg();
msg.setNode(NodeEnums.CLERK_REVIEW); msg.setNode(NodeEnums.CLERK_REVIEW);
msg.setBrand(BrandEnums.ZB); msg.setBrand(BrandEnums.ZB);
msg.setOperator(AuthUtil.getUser().getNickName()); msg.setOperator(distributionSignforEntity.getDeliveryDriverName());
msg.setOperatorTime(new Date()); msg.setOperatorTime(new Date());
msg.setContent(contents); msg.setContent(contents);
log.info("推送工厂数据:{}", JSONUtil.toJsonStr(msg)); log.info("推送工厂数据:{}", JSONUtil.toJsonStr(msg));

Loading…
Cancel
Save