12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /*
- * @Author: xiaohai zmhwork@qq.com
- * @Date: 2025-03-17 14:27:51
- * @LastEditors: xiaohai zmhwork@qq.com
- * @LastEditTime: 2025-03-17 18:02:17
- * @FilePath: \opkpm\app\shop\controller\order\Pay.php
- * @Description: 支付回调
- */
-
- namespace app\shop\controller\order;
-
- use app\common\basics\ShopBase;
- use app\common\server\JsonServer;
- use app\shop\logic\order\OrderRenewLogic;
- use think\facade\Log;
-
- class Pay extends ShopBase
- {
- public $like_not_need_login = ['notifyMnp', 'notifyOa', 'notifyApp', 'aliNotify'];
-
- public function aliNotify()
- {
- $post = $this->request->post();
- Log::info('aliNotify 支付宝回调:' . json_encode($post));
- $data = OrderRenewLogic::aliNotify($post);
- if (!$data) {
- Log::error('aliNotify 支付宝回调错误:' . OrderRenewLogic::getError());
- return JsonServer::error(OrderRenewLogic::getError());
- }
-
- return 'success';
- }
- }
|