107 lines
3.4 KiB
PHP
107 lines
3.4 KiB
PHP
|
|
<?php
|
|||
|
|
// +----------------------------------------------------------------------
|
|||
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|||
|
|
// +----------------------------------------------------------------------
|
|||
|
|
// | Copyright (c) 2016~2026 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;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 短信通知管理员
|
|||
|
|
* 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) {
|
|||
|
|
response_log_write([
|
|||
|
|
'message' => '退款发送管理员消息失败,原因:' . $e->getMessage(),
|
|||
|
|
'file' => $e->getFile(),
|
|||
|
|
'line' => $e->getLine()
|
|||
|
|
]);
|
|||
|
|
}
|
|||
|
|
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) {
|
|||
|
|
response_log_write([
|
|||
|
|
'message' => '用户确认收货管理员短信提醒失败,原因:' . $e->getMessage(),
|
|||
|
|
'file' => $e->getFile(),
|
|||
|
|
'line' => $e->getLine()
|
|||
|
|
]);
|
|||
|
|
}
|
|||
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|