26 lines
764 B
PHP
26 lines
764 B
PHP
<?php
|
||
/**
|
||
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
||
* =========================================================
|
||
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
||
* ----------------------------------------------
|
||
* 官方网址: https://www.gobuysaas.com
|
||
* =========================================================
|
||
*/
|
||
namespace addon\ali1688\event;
|
||
use addon\ali1688\model\Order;
|
||
use think\facade\Log;
|
||
class OrderPay
|
||
{
|
||
|
||
public function handle($order)
|
||
{
|
||
try {
|
||
(new Order($order['site_id']))->orderPay($order);
|
||
} catch (\Exception $e) {
|
||
Log::debug('1688 - api请求下单失败:' . $e->getMessage());
|
||
}
|
||
return success(0, '下单触发');
|
||
}
|
||
}
|