CRMEB_PRO_M/app/jobs/notice/SmsAdminJob.php

100 lines
3.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\jobs\notice;
use app\services\message\sms\SmsSendServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
use think\facade\Log;
/**
* 短信通知管理员
* Class SmsAdminJob
* @package app\jobs
*/
class SmsAdminJob extends BaseJobs
{
use QueueTrait;
/**
* 退款发送管理员消息任务
* @param $switch
* @param $adminList
* @param $order
* @return bool
*/
public function sendAdminRefund($switch, $adminList, $order)
{
if (!$switch) {
return true;
}
try {
/** @var SmsSendServices $smsServices */
$smsServices = app()->make(SmsSendServices::class);
foreach ($adminList as $item) {
$data = ['order_id' => $order['order_id'], 'admin_name' => $item['nickname']];
$smsServices->send(true, $item['phone'], $data, 'ADMIN_RETURN_GOODS_CODE');
}
} catch (\Throwable $e) {
Log::error('退款发送管理员消息失败,原因:' . $e->getMessage());
}
return true;
}
/**
* 用户确认收货管理员短信提醒
* @param $switch
* @param $adminList
* @param $order
* @return bool
*/
public function sendAdminConfirmTakeOver($switch, $adminList, $order)
{
if (!$switch) {
return true;
}
try {
/** @var SmsSendServices $smsServices */
$smsServices = app()->make(SmsSendServices::class);
foreach ($adminList as $item) {
$data = ['order_id' => $order['order_id'], 'admin_name' => $item['nickname']];
$smsServices->send(true, $item['phone'], $data, 'ADMIN_TAKE_DELIVERY_CODE');
}
} catch (\Throwable $e) {
Log::error('用户确认收货管理员短信提醒失败,原因:' . $e->getMessage());
}
return true;
}
/**
* 下单成功给客服管理员发送短信
* @param $switch
* @param $adminList
* @param $order
* @return bool
*/
public function sendAdminPaySuccess($switch, $adminList, $order)
{
if (!$switch) {
return true;
}
/** @var SmsSendServices $smsServices */
$smsServices = app()->make(SmsSendServices::class);
foreach ($adminList as $item) {
$data = ['order_id' => $order['order_id'], 'admin_name' => $item['nickname']];
$smsServices->send(true, $item['phone'], $data, 'ADMIN_PAY_SUCCESS_CODE');
}
return true;
}
}