You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/common/service/message/dealer/Withdraw.php

139 lines
4.7 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\common\service\message\dealer;
use app\common\service\message\Basics;
use app\common\model\store\Setting as SettingModel;
use app\common\enum\dealer\withdraw\ApplyStatus as ApplyStatusEnum;
/**
* 消息通知服务 [分销商提现]
* Class Withdraw
* @package app\common\service\message\dealer
*/
class Withdraw extends Basics
{
/**
* 参数列表
* @var array
*/
protected $param = [
'withdraw' => [], // 提现记录
];
/**
* 发送消息通知
* @param array $param
* @return mixed|void
* @throws \cores\exception\BaseException
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function send(array $param)
{
// 记录参数
$this->param = $param;
// 微信订阅消息通知用户
// $this->onSendWxSubMsg();
}
/**
* 微信订阅消息通知用户
* @return false|mixed
* @throws \cores\exception\BaseException
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
private function onSendWxSubMsg()
{
$withdrawInfo = $this->param['withdraw'];
$userInfo = $this->param['user'];
// 根据提现状态获取对应的消息模板
$template = $this->getTemplateByStatus($withdrawInfo);
if ($template === false) {
return false;
}
// 发送订阅消息
return $this->sendWxSubMsg( [
'touser' => $userInfo['open_id'],
'template_id' => $template['template_id'],
'page' => 'pages/dealer/index/index',
'data' => $this->getTemplateData($withdrawInfo, $template)
]);
}
/**
* 生成消息内容
* @param $withdrawInfo
* @param $template
* @return array
*/
private function getTemplateData($withdrawInfo, $template)
{
if ($withdrawInfo['apply_status'] == ApplyStatusEnum::PASS) {
return [
// 提现金额
$template['keywords'][0] => ['value' => $withdrawInfo['money']],
// 打款方式
$template['keywords'][1] => ['value' => $withdrawInfo['pay_type']['text']],
// 打款原因
$template['keywords'][2] => ['value' => '分销商提现'],
];
}
if ($withdrawInfo['apply_status'] == ApplyStatusEnum::REJECT) {
return [
// 提现金额
$template['keywords'][0] => ['value' => $withdrawInfo['money']],
// 申请时间
$template['keywords'][1] => ['value' => $withdrawInfo['create_time']],
// 原因
$template['keywords'][2] => ['value' => $this->getSubstr($withdrawInfo['reject_reason'])],
];
}
return [];
}
/**
* 根据提现状态获取对应的消息模板
* @param $withdrawInfo
* @return false|mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
private function getTemplateByStatus($withdrawInfo)
{
// 获取订阅消息配置
$templateGroup = SettingModel::getItem('submsg', $this->storeId)['dealer'];
if (
$withdrawInfo['apply_status'] == ApplyStatusEnum::PASS
&& !empty($templateGroup['withdraw_01']['template_id'])
) {
return $templateGroup['withdraw_01'];
}
if (
$withdrawInfo['apply_status'] == ApplyStatusEnum::REJECT
&& !empty($templateGroup['withdraw_02']['template_id'])
) {
return $templateGroup['withdraw_02'];
}
return false;
}
}