Files
ZangShiQi/addon/wechatpay/event/PayTransfer.php
2026-04-04 17:27:12 +08:00

33 lines
1.1 KiB
PHP
Executable File

<?php
/**
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
*/
namespace addon\wechatpay\event;
use addon\wechatpay\model\Pay;
class PayTransfer
{
public function handle(array $params)
{
if ($params[ 'transfer_type' ] == 'wechatpay') {
//TODO 本地测试流程
// if(request()->ip() == '127.0.0.1'){
// $pay_transfer_model = new \app\model\system\PayTransfer();
// return $pay_transfer_model->success([
// 'status' => $pay_transfer_model::STATUS_IN_PROCESS,
// ]);
// }
$is_weapp = $params[ 'is_weapp' ] ?? 0;
$pay = new Pay($is_weapp, $params[ 'site_id' ]);
$res = $pay->transfer($params);
return $res;
}
}
}