|
@@ -3146,6 +3146,7 @@ public class KwtWaybillOrderV1Service {
|
|
|
});
|
|
});
|
|
|
}).exceptionally(ex -> {
|
|
}).exceptionally(ex -> {
|
|
|
log.error("查询贸易订单合同失败", ex);
|
|
log.error("查询贸易订单合同失败", ex);
|
|
|
|
|
+ return List.of();
|
|
|
// throw new BusinessException("查询贸易订单合同失败");
|
|
// throw new BusinessException("查询贸易订单合同失败");
|
|
|
});
|
|
});
|
|
|
|
|
|
|
@@ -3169,6 +3170,7 @@ public class KwtWaybillOrderV1Service {
|
|
|
}).thenApply(goods -> Optional.ofNullable(goods).orElse(List.of()))
|
|
}).thenApply(goods -> Optional.ofNullable(goods).orElse(List.of()))
|
|
|
.exceptionally(ex -> {
|
|
.exceptionally(ex -> {
|
|
|
log.error("查询贸易订单商品失败", ex);
|
|
log.error("查询贸易订单商品失败", ex);
|
|
|
|
|
+ return List.of();
|
|
|
// throw new BusinessException("查询贸易订单商品失败");
|
|
// throw new BusinessException("查询贸易订单商品失败");
|
|
|
});
|
|
});
|
|
|
|
|
|