- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
111 lines
3.4 KiB
PHP
111 lines
3.4 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\dao\store;
|
|
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\store\SystemStoreStaff;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
/**
|
|
* 门店店员
|
|
* Class SystemStoreStaffDao
|
|
* @package app\dao\system\store
|
|
*/
|
|
class SystemStoreStaffDao extends BaseDao
|
|
{
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return SystemStoreStaff::class;
|
|
}
|
|
|
|
/**
|
|
* @return BaseModel
|
|
*/
|
|
public function getWhere()
|
|
{
|
|
return $this->getModel();
|
|
}
|
|
|
|
/**
|
|
* 门店店员搜索器
|
|
* @param array $where
|
|
* @param bool $search
|
|
* @return BaseModel
|
|
* @throws \ReflectionException
|
|
*/
|
|
public function search(array $where = [], bool $search = false)
|
|
{
|
|
return parent::search($where, $search)->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();
|
|
}
|
|
}
|