mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-28 22:50:18 +00:00
278 lines
11 KiB
PHP
278 lines
11 KiB
PHP
<?php
|
||
|
||
|
||
namespace app\services\agent;
|
||
|
||
|
||
use app\dao\agent\DivisionAgentApplyDao;
|
||
use app\services\BaseServices;
|
||
use app\services\order\StoreOrderServices;
|
||
use app\services\other\QrcodeServices;
|
||
use app\services\system\attachment\SystemAttachmentServices;
|
||
use app\services\user\UserServices;
|
||
use crmeb\exceptions\AdminException;
|
||
use crmeb\services\FormBuilder as Form;
|
||
use crmeb\services\UploadService;
|
||
use think\exception\ValidateException;
|
||
use think\facade\Route;
|
||
|
||
class DivisionAgentApplyServices extends BaseServices
|
||
{
|
||
/**
|
||
* DivisionAgentApplyServices constructor.
|
||
* @param DivisionAgentApplyDao $dao
|
||
*/
|
||
public function __construct(DivisionAgentApplyDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* 申请详情
|
||
* @param $uid
|
||
* @return array|\think\Model|null
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function applyInfo($uid)
|
||
{
|
||
$data = $this->dao->get(['uid' => $uid, 'is_del' => 0]);
|
||
if (!$data) return ['status' => -1];
|
||
$data = $data->toArray();
|
||
$data['images'] = json_decode($data['images'], true);
|
||
$data['add_time'] = date('Y-m-d H:i:s', $data['add_time']);
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* 代理商申请
|
||
* @param $data
|
||
* @param int $id
|
||
* @return bool
|
||
*/
|
||
public function applyAgent($data, $id = 0)
|
||
{
|
||
$data['images'] = json_encode($data['images']);
|
||
$data['add_time'] = time();
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
$divisionId = $userServices->value(['division_invite' => $data['division_invite']], 'division_id');
|
||
if (!$divisionId) throw new ValidateException('邀请码无效');
|
||
$data['division_id'] = $divisionId;
|
||
if ($id) {
|
||
$data['status'] = 0;
|
||
$res = $this->dao->update(['id' => $id], $data);
|
||
} else {
|
||
$this->dao->update(['uid' => $data['uid']], ['is_del' => 1]);
|
||
$res = $this->dao->save($data);
|
||
}
|
||
if (!$res) throw new ValidateException('提交失败');
|
||
return true;
|
||
}
|
||
|
||
|
||
/**
|
||
* 管理端代理商申请列表
|
||
* @param $where
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function AdminApplyList($where)
|
||
{
|
||
$where['is_del'] = 0;
|
||
[$page, $limit] = $this->getPageValue();
|
||
$list = $this->dao->getList($where, $page, $limit);
|
||
foreach ($list as &$item) {
|
||
$item['images'] = json_decode($item['images'], true);
|
||
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
|
||
}
|
||
$count = $this->dao->count($where);
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* 删除代理商审核
|
||
* @param $id
|
||
* @return bool
|
||
*/
|
||
public function delApply($id)
|
||
{
|
||
$res = $this->dao->update($id, ['is_del' => 1]);
|
||
if (!$res) throw new AdminException('删除失败');
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* 审核表单
|
||
* @param $id
|
||
* @param $type
|
||
* @return array
|
||
* @throws \FormBuilder\Exception\FormBuilderException
|
||
*/
|
||
public function examineApply($id, $type)
|
||
{
|
||
if (!$id) throw new AdminException('参数错误,找不到用户');
|
||
$field = [];
|
||
$field[] = Form::hidden('type', $type);
|
||
$field[] = Form::hidden('id', $id);
|
||
if ($type) {
|
||
$field[] = Form::number('division_percent', '佣金比例', '')->placeholder('代理商佣金比例1-100')->info('填写1-100,如填写50代表返佣50%,但是不能高于上级事业部的比例')->style(['width' => '173px'])->min(0)->max(100)->required();
|
||
$field[] = Form::date('division_end_time', '到期时间', '')->placeholder('代理商代理到期时间')->required();
|
||
$field[] = Form::radio('division_status', '代理状态', 1)->options([['label' => '开通', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
|
||
$title = '同意申请';
|
||
} else {
|
||
$field[] = Form::textarea('refusal_reason', '拒绝原因', '')->rows(5);
|
||
$title = '拒绝申请';
|
||
}
|
||
return create_form($title, $field, Route::buildUrl('/agent/division/apply_agent/save'), 'POST');
|
||
}
|
||
|
||
/**
|
||
* 审核代理商
|
||
* @param $data
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function applyAgentSave($data)
|
||
{
|
||
$applyInfo = $this->dao->get($data['id']);
|
||
return $this->transaction(function () use ($applyInfo, $data) {
|
||
if ($data['type'] == 1) {
|
||
$agentData = [
|
||
'division_id' => $applyInfo['division_id'],
|
||
'agent_id' => $applyInfo['uid'],
|
||
'division_type' => 2,
|
||
'division_status' => $data['division_status'],
|
||
'is_agent' => 1,
|
||
'is_staff' => 0,
|
||
'division_percent' => $data['division_percent'],
|
||
'division_change_time' => time(),
|
||
'division_end_time' => strtotime($data['division_end_time'])
|
||
];
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
$division_info = $userServices->getUserInfo($applyInfo['division_id'], 'division_end_time,division_percent');
|
||
if ($applyInfo['division_id'] != 0) {
|
||
if ($agentData['division_percent'] > $division_info['division_percent']) throw new AdminException('代理商佣金比例不能大于事业部佣金比例');
|
||
if ($agentData['division_end_time'] > $division_info['division_end_time']) throw new AdminException('代理商到期时间不能大于事业部到期时间');
|
||
}
|
||
$applyInfo->status = 1;
|
||
$res = $applyInfo->save();
|
||
$res = $res && $userServices->update($applyInfo['uid'], $agentData);
|
||
} else {
|
||
$applyInfo->status = 2;
|
||
$applyInfo->refusal_reason = $data['refusal_reason'];
|
||
$res = $applyInfo->save();
|
||
}
|
||
if (!$res) throw new AdminException('审核错误');
|
||
return true;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 获取员工列表
|
||
* @param $userInfo
|
||
* @param $where
|
||
* @param string $field
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getStaffList($userInfo, $where, $field = '*')
|
||
{
|
||
/** @var UserServices $userService */
|
||
$userService = app()->make(UserServices::class);
|
||
/** @var StoreOrderServices $orderService */
|
||
$orderService = app()->make(StoreOrderServices::class);
|
||
[$page, $limit] = $this->getPageValue();
|
||
$count = $userService->getCount(['agent_id' => $where['agent_id'], 'is_staff' => 1]);
|
||
$list = $userService->getList(['agent_id' => $where['agent_id'], 'is_staff' => 1], $field, $page, $limit);
|
||
foreach ($list as &$item) {
|
||
$item['division_change_time'] = date('Y-m-d', $item['division_change_time']);
|
||
$item['division_end_time'] = date('Y-m-d', $item['division_end_time']);
|
||
$item['childCount'] = $userService->getCount(['agent_id' => $where['agent_id'], 'spread_uid' => $item['uid']]);
|
||
$item['orderCount'] = $item['pay_count'];
|
||
$item['numberCount'] = $orderService->sum(['uid' => $item['uid']], 'pay_price');
|
||
}
|
||
/** @var SystemAttachmentServices $systemAttachment */
|
||
$systemAttachment = app()->make(SystemAttachmentServices::class);
|
||
$name = 'agent_' . $where['agent_id'] . '.jpg';
|
||
$siteUrl = sys_config('site_url', '');
|
||
$imageInfo = $systemAttachment->getInfo(['name' => $name]);
|
||
if (!$imageInfo) {
|
||
/** @var QrcodeServices $qrCode */
|
||
$qrCode = app()->make(QrcodeServices::class);
|
||
//公众号
|
||
$resCode = $qrCode->getForeverQrcode('agent', $where['agent_id']);
|
||
if ($resCode) {
|
||
$res = ['res' => $resCode, 'id' => $resCode['id']];
|
||
} else {
|
||
$res = false;
|
||
}
|
||
if (!$res) throw new AdminException('二维码生成失败');
|
||
$imageInfo = $this->downloadImage($resCode['url'], $name);
|
||
$systemAttachment->attachmentAdd($name, $imageInfo['size'], $imageInfo['type'], $imageInfo['att_dir'], $imageInfo['att_dir'], 1, $imageInfo['image_type'], time(), 2);
|
||
}
|
||
$codeUrl = strpos($imageInfo['att_dir'], 'http') === false ? $siteUrl . $imageInfo['att_dir'] : $imageInfo['att_dir'];
|
||
return compact('list', 'count', 'codeUrl');
|
||
}
|
||
|
||
/**
|
||
* 下载图片
|
||
* @param string $url
|
||
* @param string $name
|
||
* @param int $type
|
||
* @param int $timeout
|
||
* @param int $w
|
||
* @param int $h
|
||
* @return string
|
||
*/
|
||
public function downloadImage($url = '', $name = '', $type = 0, $timeout = 30, $w = 0, $h = 0)
|
||
{
|
||
if (!strlen(trim($url))) return '';
|
||
//TODO 获取远程文件所采用的方法
|
||
if ($type) {
|
||
$ch = curl_init();
|
||
curl_setopt($ch, CURLOPT_URL, $url);
|
||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
|
||
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
|
||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //TODO 跳过证书检查
|
||
if (stripos($url, "https://") !== FALSE) curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); //TODO 从证书中检查SSL加密算法是否存在
|
||
curl_setopt($ch, CURLOPT_HTTPHEADER, array('user-agent:' . $_SERVER['HTTP_USER_AGENT']));
|
||
if (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off')) curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);//TODO 是否采集301、302之后的页面
|
||
$content = curl_exec($ch);
|
||
curl_close($ch);
|
||
} else {
|
||
try {
|
||
ob_start();
|
||
readfile($url);
|
||
$content = ob_get_contents();
|
||
ob_end_clean();
|
||
} catch (\Exception $e) {
|
||
return $e->getMessage();
|
||
}
|
||
}
|
||
$size = strlen(trim($content));
|
||
if (!$content || $size <= 2) return '图片流获取失败';
|
||
$upload_type = sys_config('upload_type', 1);
|
||
$upload = UploadService::init();
|
||
if ($upload->to('attach/spread/agent')->setAuthThumb(false)->stream($content, $name) === false) {
|
||
return $upload->getError();
|
||
}
|
||
$imageInfo = $upload->getUploadInfo();
|
||
$data['att_dir'] = $imageInfo['dir'];
|
||
$data['name'] = $imageInfo['name'];
|
||
$data['size'] = $imageInfo['size'];
|
||
$data['type'] = $imageInfo['type'];
|
||
$data['image_type'] = $upload_type;
|
||
$data['is_exists'] = false;
|
||
return $data;
|
||
}
|
||
}
|