From de906e51358b814f614fc1b0b595a298640c6e51 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 10 六月 2025 09:22:16 +0800
Subject: [PATCH] fix: 修改CreateOrUpdatePromoter Output

---
 LifePayment/LifePayment.HttpApi/LifePay/WxPayNotifyController.cs |   36 +++++++++++++++++++++++++-----------
 1 files changed, 25 insertions(+), 11 deletions(-)

diff --git a/LifePayment/LifePayment.HttpApi/LifePay/WxPayNotifyController.cs b/LifePayment/LifePayment.HttpApi/LifePay/WxPayNotifyController.cs
index 41be1d0..d5bead3 100644
--- a/LifePayment/LifePayment.HttpApi/LifePay/WxPayNotifyController.cs
+++ b/LifePayment/LifePayment.HttpApi/LifePay/WxPayNotifyController.cs
@@ -2,12 +2,14 @@
 using LifePayment.Domain;
 using LifePayment.Domain.Shared;
 using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Caching.Distributed;
 using Microsoft.Extensions.Logging;
 using Newtonsoft.Json;
 using System;
 using System.Text.RegularExpressions;
 using System.Threading.Tasks;
 using Volo.Abp.AspNetCore.Mvc;
+using Volo.Abp.Caching;
 using Volo.Abp.Uow;
 
 namespace LifePayment.HttpApi
@@ -22,18 +24,21 @@
         private readonly IWxPayApi _wxPayApi;
         private readonly ILifePayService _lifePayService;
         private readonly ILifePayOrderService _lifePayOrderService;
+        private readonly IDistributedCache<string> distributedCache;
         private readonly ILogger<WxPayNotifyController> _logger;
 
         public WxPayNotifyController(
                IWxPayApi wxPayApi,
                ILogger<WxPayNotifyController> logger,
                ILifePayService lifePayService,
-               ILifePayOrderService lifePayOrderService)
+               ILifePayOrderService lifePayOrderService,
+               IDistributedCache<string> distributedCache)
         {
             _wxPayApi = wxPayApi;
             _logger = logger;
             _lifePayService = lifePayService;
             _lifePayOrderService = lifePayOrderService;
+            this.distributedCache = distributedCache;
         }
 
         /// <summary>
@@ -56,17 +61,26 @@
                 {
                     if (wxPayNotice.TradeState == LifePaymentConstant.WxPayStatus.鏀粯鎴愬姛)
                     {
-                        await _lifePayService.LifePaySuccessHandler(wxPayNotice.OutTradeNo, wxPayNotice.TransactionId);
-
-                        // 鎻掑叆鏀舵敮娴佹按
-                        await _lifePayOrderService.AddLifePayExpensesReceipts(new AddLifePayExpensesReceiptsInput()
+                        var key = $"WxRechargeNotify_{wxPayNotice.OutTradeNo}";
+                        if (string.IsNullOrWhiteSpace(distributedCache.Get(key)))
                         {
-                            OrderNo = wxPayNotice.OutTradeNo,
-                            OutOrderNo = wxPayNotice.TransactionId,
-                            LifePayType = LifePayTypeEnum.WxPay,
-                            ExpensesReceiptsType = ExpensesReceiptsTypeEnum.Expenses,
-                            Amount = wxPayNotice.Amount.Total
-                        });
+                            await _lifePayService.LifePaySuccessHandler(wxPayNotice.OutTradeNo, wxPayNotice.TransactionId);
+
+                            // 鎻掑叆鏀舵敮娴佹按
+                            await _lifePayOrderService.AddLifePayExpensesReceipts(new AddLifePayExpensesReceiptsInput()
+                            {
+                                OrderNo = wxPayNotice.OutTradeNo,
+                                OutOrderNo = wxPayNotice.TransactionId,
+                                LifePayType = LifePayTypeEnum.WxPay,
+                                ExpensesReceiptsType = ExpensesReceiptsTypeEnum.Expenses,
+                                Amount = wxPayNotice.Amount.Total
+                            });
+
+                            distributedCache.Set(key, data, new DistributedCacheEntryOptions
+                            {
+                                AbsoluteExpirationRelativeToNow = TimeSpan.FromMinutes(10)
+                            });
+                        }
                     }
                 }
             }

--
Gitblit v1.9.1