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.
85 lines
2.9 KiB
85 lines
2.9 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\dao\message\service;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\message\service\StoreService;
|
|
|
|
/**
|
|
* 客服dao
|
|
* Class StoreServiceDao
|
|
* @package app\dao\message\service
|
|
*/
|
|
class StoreServiceDao extends BaseDao
|
|
{
|
|
|
|
/**
|
|
* 不存在的用户直接禁止掉
|
|
* @param array $uids
|
|
* @return bool
|
|
*/
|
|
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)->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']);
|
|
})->with(['workMember' => function ($query) {
|
|
$query->field(['uid', 'name', 'position', 'qr_code', 'external_position']);
|
|
}])->order('id DESC')->field('id,uid,avatar,nickname as wx_name,status,add_time,phone,account_status')->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* 获取接受通知的客服
|
|
* @param int $customer
|
|
* @param string $field
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getStoreServiceOrderNotice(int $customer = 0, string $field = 'nickname,phone,uid,customer')
|
|
{
|
|
return $this->getModel()->where(['account_status' => 1, 'status' => 1, 'notify' => 1])->when($customer, function ($query) use ($customer) {
|
|
$query->where('customer', $customer);
|
|
})->field($field)->select()->toArray();
|
|
}
|
|
|
|
}
|
|
|