31 lines
831 B
PHP
31 lines
831 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace app\event;
|
|
|
|
use app\model\system\SiteOrder;
|
|
|
|
/**
|
|
* 系统订单自动关闭
|
|
*/
|
|
class CronSysOrderClose
|
|
{
|
|
// 行为扩展的执行入口必须是run
|
|
public function handle($data)
|
|
{
|
|
$order_model = new SiteOrder();
|
|
$condition = array(
|
|
['order_status', '=', 0],
|
|
['order_id', '=', $data['order_id']]
|
|
);
|
|
$result = $order_model->orderClose($condition);
|
|
return $result;
|
|
}
|
|
} |