Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/merchant/SystemStoreStaff.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

171 lines
4.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\merchant;
use app\services\store\SystemStoreServices;
use app\services\store\SystemStoreStaffServices;
use FormBuilder\Exception\FormBuilderException;
use think\annotation\Inject;
use app\controller\admin\AuthController;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
/**
* 店员
* Class SystemStoreStaff
* @package app\controller\admin\v1\merchant
*/
class SystemStoreStaff extends AuthController
{
/**
* @var SystemStoreStaffServices
*/
#[Inject]
protected SystemStoreStaffServices $services;
/**
* 获取店员列表
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function index()
{
$where = $this->request->getMore([
[['store_id', 'd'], 0],
]);
return $this->success($this->services->getStoreStaffList($where, ['store', 'user']));
}
/**
* 门店列表
* @return mixed
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function store_list(SystemStoreServices $services)
{
return $this->success($services->getStore());
}
/**
* 店员新增表单
* @return mixed
* @throws FormBuilderException
*/
public function create()
{
return $this->success($this->services->createForm());
}
/**
* 店员修改表单
* @return mixed
* @throws FormBuilderException
*/
public function edit()
{
[$id] = $this->request->getMore([
[['id', 'd'], 0],
], true);
return $this->success($this->services->updateForm($id));
}
/**
* 保存店员信息
*/
public function save($id = 0)
{
$data = $this->request->postMore([
['image', ''],
['uid', 0],
['avatar', ''],
['store_id', ''],
['staff_name', ''],
['phone', ''],
['verify_status', 1],
['status', 1],
]);
if ($data['store_id'] == '') {
return $this->fail('请选择所属提货点');
}
if ($data['staff_name'] == '') {
return $this->fail('请填写核销员名称');
}
if ($data['phone'] == '') {
return $this->fail('请填写核销员电话');
}
if ($data['uid'] == 0) {
return $this->fail('请选择用户');
}
if (!$id) {
if ($data['image'] == '') {
return $this->fail('请选择用户');
}
if ($this->services->count(['uid' => $data['uid'], 'store_id' => $data['store_id'], 'is_del' => 0])) {
return $this->fail('添加的核销员用户已存在!');
}
$data['uid'] = $data['image']['uid'];
$data['avatar'] = $data['image']['image'];
} else {
$data['avatar'] = $data['image'];
}
unset($data['image']);
if ($id) {
$res = $this->services->update($id, $data);
if ($res) {
return $this->success('编辑成功');
} else {
return $this->fail('编辑失败');
}
} else {
$data['add_time'] = time();
$res = $this->services->save($data);
if ($res) {
return $this->success('核销员添加成功');
} else {
return $this->fail('核销员添加失败,请稍后再试');
}
}
}
/**
* 设置单个店员是否开启
* @param string $is_show
* @param string $id
* @return mixed
*/
public function set_show($is_show = '', $id = '')
{
if ($is_show == '' || $id == '') {
$this->fail('缺少参数');
}
$res = $this->services->update($id, ['status' => (int)$is_show]);
if ($res) {
return $this->success($is_show == 1 ? '开启成功' : '关闭成功');
} else {
return $this->fail($is_show == 1 ? '开启失败' : '关闭失败');
}
}
/**
* 删除店员
* @param $id
*/
public function delete($id)
{
if (!$id) return $this->fail('数据不存在');
if (!$this->services->delete($id))
return $this->fail('删除失败,请稍候再试!');
else
return $this->success('删除成功!');
}
}