123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?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\adminapi\controller\v1\merchant;
- use app\services\system\store\SystemStoreServices;
- use app\services\system\store\SystemStoreStaffServices;
- use think\facade\App;
- use app\adminapi\controller\AuthController;
- /**
- * 店员
- * Class SystemStoreStaff
- * @package app\adminapi\controller\v1\merchant
- */
- class SystemStoreStaff extends AuthController
- {
- /**
- * 构造方法
- * SystemStoreStaff constructor.
- * @param App $app
- * @param SystemStoreStaffServices $services
- */
- public function __construct(App $app, SystemStoreStaffServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 获取店员列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $where = $this->request->getMore([
- [['store_id', 'd'], 0],
- ]);
- return app('json')->success($this->services->getStoreStaffList($where));
- }
- /**
- * 门店列表
- * @param SystemStoreServices $services
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function store_list(SystemStoreServices $services)
- {
- return app('json')->success($services->getStore());
- }
- /**
- * 店员新增表单
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function create()
- {
- return app('json')->success($this->services->createForm());
- }
- /**
- * 店员修改表单
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function edit()
- {
- [$id] = $this->request->getMore([
- [['id', 'd'], 0],
- ], true);
- return app('json')->success($this->services->updateForm($id));
- }
- /**
- * 保存店员信息
- * @param int $id
- * @return mixed
- */
- public function save($id = 0)
- {
- $data = $this->request->postMore([
- ['image', ''],
- ['uid', 0],
- ['avatar', ''],
- ['store_id', ''],
- ['staff_name', ''],
- ['phone', ''],
- ['verify_status', 1],
- ['status', 1],
- ]);
- if (!$id) {
- if ($data['image'] == '') {
- return app('json')->fail(400250);
- }
- if ($this->services->count(['uid' => $data['image']['uid']])) {
- return app('json')->fail(400126);
- }
- $data['uid'] = $data['image']['uid'];
- $data['avatar'] = $data['image']['image'];
- } else {
- $data['avatar'] = $data['image'];
- }
- if ($data['uid'] == 0) {
- return app('json')->fail(400250);
- }
- if ($data['store_id'] == '') {
- return app('json')->fail(400127);
- }
- if ($data['staff_name'] == ''){
- return app('json')->fail(400128);
- }
- if ($data['phone'] == ''){
- return app('json')->fail(400129);
- }
- unset($data['image']);
- if ($id) {
- $res = $this->services->update($id, $data);
- if ($res) {
- return app('json')->success(100001);
- } else {
- return app('json')->fail(100007);
- }
- } else {
- $data['add_time'] = time();
- $res = $this->services->save($data);
- if ($res) {
- return app('json')->success(400130);
- } else {
- return app('json')->fail(400131);
- }
- }
- }
- /**
- * 设置单个店员是否开启
- * @param string $is_show
- * @param string $id
- * @return mixed
- */
- public function set_show($is_show = '', $id = '')
- {
- if ($is_show == '' || $id == '') {
- app('json')->fail(100100);
- }
- $res = $this->services->update($id, ['status' => (int)$is_show]);
- if ($res) {
- return app('json')->success(100014);
- } else {
- return app('json')->fail(100015);
- }
- }
- /**
- * 删除店员
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if (!$id) return app('json')->fail(100100);
- if (!$this->services->delete($id))
- return app('json')->fail(100008);
- else
- return app('json')->success(100002);
- }
- }
|