소스 검색

feat(payment): 实现信联支付功能并优化支付流程

- 添加获取支付记录信息的API接口
- 新增信联支付确认页面及跳转逻辑
- 优化支付参数错误处理机制- 调整随机立减金额计算逻辑,避免为0- 更新开发环境API基础地址配置- 注册信联支付确认页面路由
- 移除无效的支付管理器调用代码
runphp 5 달 전
부모
커밋
c71bb88fce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Controller/RecordController.php

+ 1 - 1
src/Controller/RecordController.php

@@ -13,7 +13,7 @@ class RecordController
     {
     {
         $entity = $extensionPaymentEntity->read($id);
         $entity = $extensionPaymentEntity->read($id);
 
 
-        $paymentManager->query($entity->pay_type, $entity->id);
+        //$paymentManager->query($entity->pay_type, $entity->id);
         return success_response($entity);
         return success_response($entity);
     }
     }
 }
 }