CRMEB_PRO_M/app/dao/store/SystemStoreStaffDao.php

124 lines
4.0 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~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\dao\store;
use app\dao\BaseDao;
use app\model\store\SystemStoreStaff;
/**
* 门店店员
* Class SystemStoreStaffDao
* @package app\dao\system\store
*/
class SystemStoreStaffDao extends BaseDao
{
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return SystemStoreStaff::class;
}
/**
* @return \crmeb\basic\BaseModel
*/
public function getWhere()
{
return $this->getModel();
}
/**
* 门店店员搜索器
* @param array $where
* @return \crmeb\basic\BaseModel|mixed|\think\Model
*/
public function search(array $where = [])
{
return parent::search($where)->when(isset($where['keyword']) && $where['keyword'], function ($query) use ($where) {
if (!isset($where['field_key']) || $where['field_key'] == '') {
$query->whereLike('id|uid|staff_name|phone', '%' . $where['keyword'] . '%');
} else {
$query->where($where['field_key'], $where['keyword']);
}
});
}
/**
* 获取门店管理员列表
* @param array $where
* @param int $page
* @param int $limit
* @param array|string[] $with
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getStoreAdminList(array $where, int $page = 0, int $limit = 0, array $with = ['user'])
{
return $this->search($where)->when($with, function ($query) use ($with) {
$query->with($with);
})->when($page && $limit, function ($query) use ($page, $limit) {
$query->page($page, $limit);
})->order('add_time DESC')->select()->toArray();
}
/**
* 获取店员列表
* @param array $where
* @param string $field
* @param int $page
* @param int $limit
* @param array|string[] $with
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getStoreStaffList(array $where, string $field = '*', int $page = 0, int $limit = 0, array $with = ['store', 'user'])
{
return $this->search($where)->field($field)->when($with, function ($query) use ($with) {
$query->with(array_merge($with, ['store', 'user']));
})->when($page && $limit, function ($query) use ($page, $limit) {
$query->page($page, $limit);
})->when(isset($where['notId']), function ($query) use ($where) {
$query->where('id', '<>', $where['notId']);
})->when(isset($where['store_id']), function ($query) use ($where) {
$query->where('store_id', $where['store_id']);
})->order('add_time DESC')->select()->toArray();
}
/**
* 获取店员select
* @param array $where
* @return array
*/
public function getSelectList(array $where)
{
return $this->search($where)->field('id,staff_name')->select()->toArray();
}
/**
* 用户注销删除门店店员
* @param int $uid
* @return \crmeb\basic\BaseModel
*/
public function cancelUserDel(int $uid)
{
return $this->getModel()->where('uid', $uid)->where('level', '>', 0)->update(['is_del' => 1]);
}
}