You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.2 KiB
PHTML

8 months ago
<?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\dao\service;
use app\dao\BaseDao;
use app\model\service\StoreService;
/**
* 客服dao
* Class StoreServiceDao
* @package app\dao\service
*/
class StoreServiceDao extends BaseDao
{
/**
* 不存在的用户直接禁止掉
* @param array $uids
* @return bool|\crmeb\basic\BaseModel
*/
public function deleteNonExistentService(array $uids = [])
{
if ($uids) {
return $this->getModel()->whereIn('uid', $uids)->update(['status' => 0]);
} else {
return true;
}
}
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return StoreService::class;
}
/**
* 获取客服列表
* @param array $where
* @param int $page
* @param int $limit
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getServiceList(array $where, int $page, int $limit)
{
return $this->search($where, false)->with('user')->when($page && $limit, function ($query) use ($page, $limit) {
$query->page($page, $limit);
})->when(isset($where['noId']), function ($query) use ($where) {
$query->whereNotIn('uid', $where['noId']);
})->order('id DESC')->field('id,uid,avatar,nickname as wx_name,status,add_time,phone')->select()->toArray();
}
/**
* 获取接受通知的客服
* @return array
*/
public function getStoreServiceOrderNotice(int $customer = 0)
{
return $this->getModel()->where(['status' => 1, 'notify' => 1])->when($customer, function ($query) use ($customer) {
$query->where('customer', $customer);
})->field(['nickname', 'phone', 'uid', 'customer'])->select()->toArray();
}
/**
*
* @param array $where
* @param array $data
* @return \crmeb\basic\BaseModel
*/
public function updateOnline(array $where, array $data)
{
return $this->getModel()->whereNotIn('uid', $where['notUid'])->update($data);
}
/**
* 统计数量
* @param array $where
* @param bool $search
* @return int
* @throws \ReflectionException
* @author 吴汐
* @email 442384644@qq.com
* @date 2023/05/10
*/
public function count(array $where = [], bool $search = true)
{
return $this->search($where, false)->when(isset($where['noId']), function ($query) use ($where) {
$query->whereNotIn('uid', $where['noId']);
})->count();
}
}