30 lines
952 B
PHP
30 lines
952 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
* =========================================================
|
|
*/
|
|
|
|
namespace app\event;
|
|
|
|
use app\model\message\Message;
|
|
|
|
/**
|
|
* 核销商品临期提醒
|
|
*/
|
|
class VerifyOrderOutTime
|
|
{
|
|
// 行为扩展的执行入口必须是run
|
|
public function handle($data)
|
|
{
|
|
// 商品表
|
|
$goods_virtual_info = model('goods_virtual')->getInfo([ ["order_id", "=", $data["relate_id"] ] ]);
|
|
if(!empty($goods_virtual_info)){
|
|
(new Message())->sendMessage(['keywords' => 'ORDER_VERIFY_OUT_TIME', 'order_id' => $data['relate_id'], 'site_id' => $goods_virtual_info['site_id'] ]);
|
|
}
|
|
return success();
|
|
}
|
|
} |