Explorar o código

fix 修改接口

DYH2020 %!s(int64=2) %!d(string=hai) anos
pai
achega
cc8144c661

+ 4 - 2
src/main/java/com/ywt/mg/domain/entities/OrderPaymentRepository.java

@@ -14,6 +14,8 @@ public interface OrderPaymentRepository extends JpaRepository<OrderPayment, Inte
     @Query(value = "select * from order_payment where order_no = ? order by id desc limit 1;", nativeQuery = true)
     OrderPayment getOrderPaymentByOrderNo(String orderNo);
 
-    @Query(value = "select * from order_payment where ( transaction_id = ? or alipay_trade_no = ? ) order by id desc limit 1;", nativeQuery = true)
-    OrderPayment getOrderPaymentByTransactionId(String transactionId, String alipayTradeNo);
+    // 本来想去搜索 alipay_trade_no 字段,后面发现 alipay_trade_no 字段里面的值(如果有的话)和 payment_no 的值一样,故进行替换
+    // @Query(value = "select * from order_payment where (transaction_id = ? or alipay_trade_no = ?) order by id desc limit 1;", nativeQuery = true)
+    @Query(value = "select * from order_payment where (transaction_id = ? or payment_no = ?) order by id desc limit 1;", nativeQuery = true)
+    OrderPayment getOrderPaymentByTransactionId(String transactionId, String paymentNo);
 }

+ 12 - 5
src/main/java/com/ywt/mg/services/OrderPaymentService.java

@@ -3,6 +3,7 @@ package com.ywt.mg.services;
 import com.ywt.mg.core.utils.Checker;
 import com.ywt.mg.domain.entities.*;
 import com.ywt.mg.domain.mealEntities.UserMealOrderView;
+import com.ywt.mg.domain.models.enums.PaymentChannelEnum;
 import com.ywt.mg.domain.models.enums.PaymentStatusEnum;
 import com.ywt.mg.domain.models.nutrimeal.MealOrderInfo;
 import com.ywt.mg.domain.ywtDrugEntities.PrescriptionInfo;
@@ -47,7 +48,7 @@ public class OrderPaymentService extends ServiceBase {
      * @return {@link List<OrderPayment>}
      */
     public List<OrderPayment> getOrderPaymentListByOrderIds(List<Integer> orderIds) {
-        orderIds = orderIds.stream().filter(p-> !Checker.isNone(p) && Checker.getIntegerValue(p) > 0).collect(Collectors.toList());
+        orderIds = orderIds.stream().filter(p -> !Checker.isNone(p) && Checker.getIntegerValue(p) > 0).collect(Collectors.toList());
         int size = orderIds.size();
         if (!Checker.isNone(orderIds)) {
             // payment_status:2 表示支付成功
@@ -170,8 +171,11 @@ public class OrderPaymentService extends ServiceBase {
             if (orderPayment != null && !Checker.isNone(orderPayment.getTransactionId())) {
                 return orderPayment.getTransactionId();
             }
-            if (orderPayment != null && !Checker.isNone(orderPayment.getAlipayTradeNo())) {
-                return orderPayment.getAlipayTradeNo();
+            if (orderPayment != null
+                    && Checker.getIntegerValue(orderPayment.getPaymentChannel()) != PaymentChannelEnum.WeChat.getValue()
+                    && Checker.getIntegerValue(orderPayment.getPaymentStatus()) == PaymentStatusEnum.Success.getValue()
+                    && !Checker.isNone(orderPayment.getPaymentNo())) {
+                return orderPayment.getPaymentNo();
             }
         }
         return "";
@@ -201,8 +205,11 @@ public class OrderPaymentService extends ServiceBase {
             if (orderPayment != null && !Checker.isNone(orderPayment.getTransactionId())) {
                 return orderPayment.getTransactionId();
             }
-            if (orderPayment != null && !Checker.isNone(orderPayment.getAlipayTradeNo())) {
-                return orderPayment.getAlipayTradeNo();
+            if (orderPayment != null
+                    && Checker.getIntegerValue(orderPayment.getPaymentChannel()) != PaymentChannelEnum.WeChat.getValue()
+                    && Checker.getIntegerValue(orderPayment.getPaymentStatus()) == PaymentStatusEnum.Success.getValue()
+                    && !Checker.isNone(orderPayment.getPaymentNo())) {
+                return orderPayment.getPaymentNo();
             }
         }
         return "";