123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?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]);
- }
- }
|