From 46f7c2ef3abc235e44c59be9b3c5396befc64888 Mon Sep 17 00:00:00 2001
From: 彭雪彬 <1724387007@qq.com>
Date: Tue, 15 Jul 2025 18:33:09 +0800
Subject: [PATCH] Merge branch 'xin' into pxb

---
 oying-system/src/main/java/com/oying/modules/sh/service/impl/OrderOperationLogServiceImpl.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/sh/service/impl/OrderOperationLogServiceImpl.java b/oying-system/src/main/java/com/oying/modules/sh/service/impl/OrderOperationLogServiceImpl.java
index 3a1afcf..b878a17 100644
--- a/oying-system/src/main/java/com/oying/modules/sh/service/impl/OrderOperationLogServiceImpl.java
+++ b/oying-system/src/main/java/com/oying/modules/sh/service/impl/OrderOperationLogServiceImpl.java
@@ -52,7 +52,7 @@
 
     @Override
     @Transactional(rollbackFor = Exception.class)
-    public void create(OrderResponse response, OrderStatusEnum statusEnum) {
+    public void create(OrderResponse response, OrderStatusEnum statusEnum, String cardName) {
         String userType = ConstantsKey.BUYER;
         switch (statusEnum) {
             case ZERO:
@@ -66,6 +66,7 @@
                 userType = ConstantsKey.MERCHANT;
                 break;
             case THREE:
+                orderMapper.updateRider(response.getOrder().getOrderNum(), SecurityUtils.getCurrentUserId(), SecurityUtils.getCurrentUsername(), cardName);
             case FIVE:
             case SIX:
             case SEVEN:

--
Gitblit v1.9.3