Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/work/Client.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

163 lines
4.6 KiB
PHP
Raw 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~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\work;
use think\annotation\Inject;
use app\controller\admin\AuthController;
use app\services\user\UserServices;
use app\services\work\WorkClientServices;
use crmeb\services\wechat\config\WorkConfig;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
/**
* 客户管理
* Class Client
* @package app\controller\admin\v1\work
*/
class Client extends AuthController
{
/**
* @var WorkClientServices
*/
#[Inject]
protected WorkClientServices $services;
/**
* 企微客户列表
* @param WorkConfig $config
* @return mixed
*/
public function index(WorkConfig $config)
{
$where = $this->request->getMore([
['time', ''],//添加时间
['userid', []],//所属客服
['label', []],//客户标签
['name', ''],
['field_key', ''],//客户搜索
['gender', 0],//性别
['status', 0],//客户状态
['state', 0],//0=扫码1=自行添加
]);
$where['corp_id'] = $config->corpId;
$where['timeKey'] = 'create_time';
return $this->success($this->services->getList($where));
}
/**
* 非企微客户列表
* @param UserServices $services
* @return mixed
*/
public function userList(UserServices $services)
{
$where = $this->request->getMore([
['time', '', '', 'user_time'],//添加时间
['name', '', '', 'nickname'],
['field_key', ''],//客户搜索
['gender', 0, '', 'sex'],//性别
]);
return $this->success($services->index($where));
}
/**
* 同步客户
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function synch()
{
if (!sys_config('wechat_work_corpid', '')) {
return $this->fail('请先配置企微信息');
}
$this->services->delete([["id", "<>", 0]]);
$this->services->authGetExternalcontact();
return $this->success('已加入消息队列,请稍后查看');
}
/**
* 修改客户
* @param $id
* @return mixed
*/
public function update($id)
{
$data = $this->request->postMore([
['remark', '']
]);
if (!$id) {
return $this->fail('缺少参数');
}
$this->services->update($id, $data);
return $this->success('修改成功');
}
/**
* 批量设置标签
* @return mixed
*/
public function batchLabel()
{
[$labelId, $removeTag, $userId, $isAll] = $this->request->postMore([
['add_tag', []],
['removeTag', []],
['userid', []],
['is_all', 0]
], true);
if (!$labelId) {
return $this->fail('请选择标签');
}
if (!$isAll && !$userId) {
return $this->fail('请选择客户');
}
$where = $this->request->getMore([
['time', ''],//添加时间
['userid', []],//所属客服
['label', []],//客户标签
['name', ''],
['field_key', ''],//客户搜索
['gender', 0],//性别
['status', 0],//客户状态
['state', 0],//0=扫码1=自行添加
]);
$this->services->synchBatchLabel($labelId, $removeTag, $userId, $where, (int)$isAll);
return $this->success('已加入消息队列');
}
/**
* @return mixed
*/
public function count()
{
$where = $this->request->postMore([
['userid', []],
['time', ''],
['label', []],
['notLabel', []],
['is_all', 0]
]);
return $this->success([
'sum_count' => $this->services->getUserIdsByCount($where)
]);
}
}