李昊 4 年之前
父节点
当前提交
4223ba1e4d
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      gx_api/GxPress/Api/GxPress.Api/WebControllers/PayController.cs

+ 2 - 0
gx_api/GxPress/Api/GxPress.Api/WebControllers/PayController.cs

@@ -151,6 +151,8 @@ namespace GxPress.Api.WebControllers
         public async Task<bool> QueryOrder(string antoNumber)
         {
             var order = await orderRepository.GetOrderAsync(antoNumber);
+            if (string.IsNullOrEmpty(order.TransactionId))
+                return false;
             WxPayData req = new WxPayData();
             req.SetValue("transaction_id", order.TransactionId);
             WxPayData res = WxPayApi.OrderQuery(req);