|
|
@@ -422,7 +422,7 @@ public class OrderService {
|
|
|
|
|
|
@Transactional
|
|
|
public void notifyOrder(Long orderId, PayMethod payMethod, String transactionId) {
|
|
|
- log.info("订单回调 orderId: {}", orderId);
|
|
|
+ log.info("订单回调 orderId: {}, payMethod: {}, transactionId: {}", orderId, payMethod, transactionId);
|
|
|
Order order = orderRepo.findById(orderId).orElseThrow(new BusinessException("订单不存在"));
|
|
|
Collection collection = collectionRepo.findById(order.getCollectionId())
|
|
|
.orElseThrow(new BusinessException("藏品不存在"));
|