231 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			231 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Author: CRMEB Team <admin@crmeb.com>
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
 | 
						||
namespace app\services\message\notice;
 | 
						||
 | 
						||
use app\jobs\TemplateJob;
 | 
						||
use app\services\message\NoticeService;
 | 
						||
use app\services\kefu\service\StoreServiceServices;
 | 
						||
use app\services\user\UserServices;
 | 
						||
use app\services\wechat\WechatUserServices;
 | 
						||
use think\facade\Log;
 | 
						||
 | 
						||
 | 
						||
/**
 | 
						||
 * 微信模版消息列表
 | 
						||
 * Created by PhpStorm.
 | 
						||
 * User: xurongyao <763569752@qq.com>
 | 
						||
 * Date: 2021/9/22 1:23 PM
 | 
						||
 */
 | 
						||
class WechatTemplateListService extends NoticeService
 | 
						||
{
 | 
						||
    /**
 | 
						||
     * 根据UID获取openid
 | 
						||
     * @param int $uid
 | 
						||
     * @return mixed
 | 
						||
     */
 | 
						||
    public function getOpenidByUid(int $uid)
 | 
						||
    {
 | 
						||
        $isDel = app()->make(UserServices::class)->value(['uid' => $uid], 'is_del');
 | 
						||
        if ($isDel) {
 | 
						||
            $openid = '';
 | 
						||
        } else {
 | 
						||
            $openid = app()->make(WechatUserServices::class)->uidToOpenid($uid, 'wechat');
 | 
						||
        }
 | 
						||
        return $openid;
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 发送模板消息
 | 
						||
     * @param int $uid
 | 
						||
     * @param array $data
 | 
						||
     * @param string|null $link
 | 
						||
     * @param string|null $color
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendTemplate(int $uid, array $data, string $link = null, string $color = null)
 | 
						||
    {
 | 
						||
        try {
 | 
						||
            if ($this->noticeInfo['is_wechat'] === 1) {
 | 
						||
                $openid = $this->getOpenidByUid($uid);
 | 
						||
                if ($openid != '') {
 | 
						||
                    //放入队列执行
 | 
						||
                    TemplateJob::dispatch('doJob', ['wechat', $openid, $this->noticeInfo['wechat_tempid'], $data, $link, $color]);
 | 
						||
                }
 | 
						||
            }
 | 
						||
        } catch (\Exception $e) {
 | 
						||
            Log::error($e->getMessage());
 | 
						||
            return true;
 | 
						||
        }
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 支付成功发送模板消息
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderPaySuccess($uid, $order)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string2' => $order['order_id'],
 | 
						||
            'time4' => date('Y-m-d H:i:s', $order['pay_time']),
 | 
						||
            'thing3' => $order['storeName'],
 | 
						||
            'amount5' => $order['pay_price'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 订单配送通知
 | 
						||
     * @param $uid
 | 
						||
     * @param string $goodsName
 | 
						||
     * @param $order
 | 
						||
     * @param array $data
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderDeliver($uid, string $goodsName, $order)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string1' => $order['order_id'],
 | 
						||
            'time8' => date('Y-m-d H:i:s', time()),
 | 
						||
            'thing5' => $goodsName,
 | 
						||
            'thing9' => $order['delivery_name'],
 | 
						||
            'phone_number10' => $order['delivery_id'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 订单发货
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @param $storeTitle
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderPostage($uid, $order, $storeTitle)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string2' => $order['order_id'],
 | 
						||
            'time12' => date('Y-m-d H:i:s', time()),
 | 
						||
            'thing4' => $storeTitle,
 | 
						||
            'thing13' => $order['delivery_name'],
 | 
						||
            'character_string14' => $order['delivery_id'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 确认收货发送模板消息
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @param $title
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderTakeSuccess($uid, $order, $title)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string2' => $order['order_id'],
 | 
						||
            'character_string7' => date('Y-m-d H:i:s', time()),
 | 
						||
            'thing4' => $title,
 | 
						||
            'amount9' => $order['pay_price'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['order_id']);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 发送退款模板消息
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @param $title
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderRefund($uid, $order, $title)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string1' => $order['refund_no'],
 | 
						||
            'time5' => date('Y-m-d H:i:s', time()),
 | 
						||
            'thing2' => $title,
 | 
						||
            'amount3' => $order['refund_price'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['refund_no'] . '&isReturen=1');
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 发送退款模板消息
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @param $title
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendOrderNoRefund($uid, $order, $title)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'character_string1' => $order['refund_no'],
 | 
						||
            'thing2' => $title,
 | 
						||
            'amount3' => $order['refund_price'],
 | 
						||
            'thing4' => $order['refuse_reason'],
 | 
						||
        ], '/pages/goods/order_details/index?order_id=' . $order['refund_no'] . '&isReturen=1');
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 充值成功
 | 
						||
     * @param $uid
 | 
						||
     * @param $order
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendRechargeSuccess($uid, $order)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'time1' => date('Y-m-d H:i:s', $order['add_time']),
 | 
						||
            'amount3' => $order['price'],
 | 
						||
            'amount4' => $order['give_price'],
 | 
						||
            'amount5' => $order['now_money'],
 | 
						||
        ]);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 提现成功
 | 
						||
     * @param $uid
 | 
						||
     * @param $extractNumber
 | 
						||
     * @return bool|void
 | 
						||
     */
 | 
						||
    public function sendUserExtract($uid, $extractNumber)
 | 
						||
    {
 | 
						||
        return $this->sendTemplate((int)$uid, [
 | 
						||
            'time3' => date('Y-m-d H:i:s', time()),
 | 
						||
            'amount2' => $extractNumber,
 | 
						||
        ]);
 | 
						||
    }
 | 
						||
    /**
 | 
						||
     * 订单给客服提醒
 | 
						||
     * @param $orderId
 | 
						||
     * @param $storeName
 | 
						||
     * @param $title
 | 
						||
     * @param $status
 | 
						||
     * @param $link
 | 
						||
     * @return bool
 | 
						||
     */
 | 
						||
    public function sendAdminOrder($orderId, $storeName, $title, $status, $link)
 | 
						||
    {
 | 
						||
        /** @var StoreServiceServices $StoreServiceServices */
 | 
						||
        $StoreServiceServices = app()->make(StoreServiceServices::class);
 | 
						||
        $adminList = $StoreServiceServices->getStoreServiceOrderNotice();
 | 
						||
        foreach ($adminList as $item) {
 | 
						||
            $this->sendTemplate((int)$item['uid'],
 | 
						||
                [
 | 
						||
                    'first' => $title,
 | 
						||
                    'keyword1' => $orderId,
 | 
						||
                    'keyword2' => $storeName,
 | 
						||
                    'keyword3' => $status,
 | 
						||
                    'keyword4' => date('Y-m-d H:i:s', time()),
 | 
						||
                    'remark' => '点击查看订单详情'
 | 
						||
                ], $link);
 | 
						||
        }
 | 
						||
        return true;
 | 
						||
    }
 | 
						||
}
 |