28 lines
771 B
PHP
28 lines
771 B
PHP
<?php
|
|
/**
|
|
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
|
|
* =========================================================
|
|
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
|
|
* ----------------------------------------------
|
|
* 官方网址: https://www.gobuysaas.com
|
|
* =========================================================
|
|
*/
|
|
namespace addon\printer\event;
|
|
|
|
use addon\printer\model\PrinterOrder;
|
|
use app\model\system\Cron;
|
|
|
|
/**
|
|
* 订单打印
|
|
*/
|
|
class MemberRechargeOrderPayPrinter
|
|
{
|
|
public function handle($param)
|
|
{
|
|
$printer_order_model = new PrinterOrder();
|
|
return $printer_order_model->printer([
|
|
'order_id' => $param['relate_id'],
|
|
'type' => 'recharge',
|
|
]);
|
|
}
|
|
} |