Browse Source

Merge branch 'dev' into pre-production

master
pref_mail@163.com 9 months ago
parent
commit
87864e2bd8
  1. 3
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryListServiceImpl.java

3
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionDeliveryListServiceImpl.java

@ -7287,6 +7287,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
deliveryListEntity.setDeliveryStatus(isAllSignforCompleted(deliveryListEntity.getId())
? DeliveryStatusConstant.yiwancheng.getValue()
: DeliveryStatusConstant.peisongzhong.getValue());
log.debug(">>>>> deliveryListEntity deliveryStatus :{}",deliveryListEntity.getDeliveryStatus());
}
@ -7299,6 +7300,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
private void updateDeliveryListEntity(DistributionDeliveryListEntity deliveryListEntity, DistributionDeliveryListEntity old) {
log.debug(">>>>>> update deliveryListEntity {}",deliveryListEntity);
log.debug(">>>>>> update old {}",old);
// 判断传入的对象是否是否为null
if (Objects.isNull(deliveryListEntity)) {
throw new IllegalArgumentException("deliveryListEntity 不能为空");

Loading…
Cancel
Save