|
@@ -23,7 +23,7 @@ namespace GxPress.Api.WebControllers
|
|
|
[Route("api/web/pay")]
|
|
|
[ApiController]
|
|
|
[Authorize]
|
|
|
- public class PayController : Controller
|
|
|
+ public partial class PayController : Controller
|
|
|
{
|
|
|
private readonly IOrderService orderService;
|
|
|
private IHttpContextAccessor _contextAccessor;
|
|
@@ -47,8 +47,9 @@ namespace GxPress.Api.WebControllers
|
|
|
/// <param name="request"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost()]
|
|
|
- public async Task<string> GetNativePayUrl(PayRequest request)
|
|
|
+ public async Task<PayResult> GetNativePayUrl(PayRequest request)
|
|
|
{
|
|
|
+ var result = new PayResult();
|
|
|
if (request.PayWayType == 0)
|
|
|
throw new BusinessException("支付方式有误");
|
|
|
var userId = _loginContext.AccountId;
|
|
@@ -122,20 +123,42 @@ namespace GxPress.Api.WebControllers
|
|
|
if (request.PayWayType == PayWayTypeConst.AliyPay.GetHashCode())
|
|
|
{
|
|
|
var alipay = new PcPay();
|
|
|
- return alipay.PayRequest(attach, title, price.ToString(), title);
|
|
|
+ result.PayQrCore = alipay.PayRequest(attach, title, price.ToString(), title, request.NotifyUrl);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
var nativePay = new NativePay();
|
|
|
- return nativePay.GetPayUrl(antoNumber, title, attach, Convert.ToInt32(price * 100));
|
|
|
+ result.PayQrCore = nativePay.GetPayUrl(antoNumber, title, attach, Convert.ToInt32(price * 100));
|
|
|
+ result.AutoNumber = antoNumber;
|
|
|
}
|
|
|
}
|
|
|
else
|
|
|
throw new BusinessException("参数错误");
|
|
|
}
|
|
|
- return string.Empty;
|
|
|
-
|
|
|
-
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 查询订单 是否支付成功
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="antoNumber"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("{antoNumber}")]
|
|
|
+ [AllowAnonymous]
|
|
|
+ public async Task<bool> QueryOrder(string antoNumber)
|
|
|
+ {
|
|
|
+ var order = await orderRepository.GetOrderAsync(antoNumber);
|
|
|
+ WxPayData req = new WxPayData();
|
|
|
+ req.SetValue("transaction_id", order.TransactionId);
|
|
|
+ WxPayData res = WxPayApi.OrderQuery(req);
|
|
|
+ if (res.GetValue("return_code").ToString() == "SUCCESS" &&
|
|
|
+ res.GetValue("result_code").ToString() == "SUCCESS")
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|