Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/work/Client.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

157 lines
4.1 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
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
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)
]);
}
}