添加配送员管理
This commit is contained in:
parent
fa4e005459
commit
359c015a15
44
app/common/lists/DeliveryServiceLists.php
Normal file
44
app/common/lists/DeliveryServiceLists.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\lists;
|
||||
|
||||
use app\admin\lists\BaseAdminDataLists;
|
||||
use app\common\model\system_store\DeliveryService;
|
||||
|
||||
class DeliveryServiceLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
];
|
||||
}
|
||||
|
||||
public function lists(): array
|
||||
{
|
||||
return DeliveryService::field('id,nickname,type,avatar,phone,status')
|
||||
->when(!empty($this->request->adminInfo['store_id']), function ($query) {
|
||||
$query->where('store_id', '=', $this->request->adminInfo['store_id']);
|
||||
})
|
||||
->when(!empty($this->params['keyword']), function ($query) {
|
||||
$query->where('nickname|phone', 'like', "%{$this->params['keyword']}%");
|
||||
})
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
public function count(): int
|
||||
{
|
||||
return DeliveryService::when(!empty($this->request->adminInfo['store_id']), function ($query) {
|
||||
$query->where('store_id', '=', $this->request->adminInfo['store_id']);
|
||||
})
|
||||
->when(!empty($this->params['keyword']), function ($query) {
|
||||
$query->where('nickname|phone', 'like', "%{$this->params['keyword']}%");
|
||||
})
|
||||
->count();
|
||||
}
|
||||
|
||||
}
|
78
app/common/logic/DeliveryServiceLogic.php
Normal file
78
app/common/logic/DeliveryServiceLogic.php
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\logic;
|
||||
|
||||
use app\common\model\system_store\DeliveryService;
|
||||
use app\common\service\FileService;
|
||||
use Webman\Config;
|
||||
|
||||
class DeliveryServiceLogic extends BaseLogic
|
||||
{
|
||||
|
||||
public function add($params)
|
||||
{
|
||||
try {
|
||||
$model = new DeliveryService();
|
||||
$model->setAttrs($params);
|
||||
$model->store_id = request()->adminInfo['store_id'];
|
||||
$defaultAvatar = config('project.default_image.admin_avatar');
|
||||
$model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar;
|
||||
$model->save();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public function edit($id, $params)
|
||||
{
|
||||
try {
|
||||
$model = DeliveryService::find($id);
|
||||
if (empty($model)) {
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
$model->setAttrs($params);
|
||||
$defaultAvatar = config('project.default_image.admin_avatar');
|
||||
$model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar;
|
||||
$model->save();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public function delete($id)
|
||||
{
|
||||
try {
|
||||
$model = DeliveryService::find($id);
|
||||
if (empty($model)) {
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
$model->delete();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public function detail($id)
|
||||
{
|
||||
$model = DeliveryService::find($id);
|
||||
if (empty($model)) {
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
return $model->toArray();
|
||||
}
|
||||
|
||||
public function status($id)
|
||||
{
|
||||
try {
|
||||
$model = DeliveryService::find($id);
|
||||
if (empty($model)) {
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
$model->status = $model->status == 1 ? 0 : 1;
|
||||
$model->save();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -38,6 +38,12 @@ class SystemStoreStaffLogic extends BaseLogic
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
$model->setAttrs($params);
|
||||
if (!empty($params['pwd'])) {
|
||||
$passwordSalt = Config::get('project.unique_identification');
|
||||
$model->pwd = create_password($params['pwd'], $passwordSalt);
|
||||
}
|
||||
$defaultAvatar = config('project.default_image.admin_avatar');
|
||||
$model->avatar = !empty($model['avatar']) ? FileService::setFileUrl($model['avatar']) : $defaultAvatar;
|
||||
$model->save();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
@ -66,4 +72,18 @@ class SystemStoreStaffLogic extends BaseLogic
|
||||
return $model->toArray();
|
||||
}
|
||||
|
||||
public function status($id)
|
||||
{
|
||||
try {
|
||||
$model = SystemStoreStaff::find($id);
|
||||
if (empty($model)) {
|
||||
throw new \Exception('数据不存在');
|
||||
}
|
||||
$model->status = $model->status == 1 ? 0 : 1;
|
||||
$model->save();
|
||||
} catch (\Exception $exception) {
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
33
app/common/model/system_store/DeliveryService.php
Normal file
33
app/common/model/system_store/DeliveryService.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\model\system_store;
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use app\common\service\FileService;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* Class DeliveryService
|
||||
* @package app\common\model\system_store
|
||||
*/
|
||||
class DeliveryService extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
|
||||
protected $name = 'delivery_service';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
/**
|
||||
* @notes 头像获取器 - 头像路径添加域名
|
||||
* @param $value
|
||||
* @return string
|
||||
* @author Tab
|
||||
* @date 2021/7/13 11:35
|
||||
*/
|
||||
public function getAvatarAttr($value)
|
||||
{
|
||||
return empty($value) ? FileService::getFileUrl(config('project.default_image.admin_avatar')) : FileService::getFileUrl(trim($value, '/'));
|
||||
}
|
||||
|
||||
}
|
129
app/store/controller/DeliveryController.php
Normal file
129
app/store/controller/DeliveryController.php
Normal file
@ -0,0 +1,129 @@
|
||||
<?php
|
||||
|
||||
namespace app\store\controller;
|
||||
|
||||
use app\common\controller\Definitions;
|
||||
use app\common\lists\DeliveryServiceLists;
|
||||
use app\common\logic\DeliveryServiceLogic;
|
||||
use hg\apidoc\annotation as ApiDoc;
|
||||
|
||||
#[ApiDoc\title('配送员管理')]
|
||||
class DeliveryController extends BaseAdminController
|
||||
{
|
||||
|
||||
#[
|
||||
ApiDoc\Title('列表'),
|
||||
ApiDoc\url('/store/delivery/lists'),
|
||||
ApiDoc\Method('GET'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Author('中国队长'),
|
||||
ApiDoc\Query(name: 'keyword', type: 'string', require: false, desc: '名称/手机号'),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Query(ref: [Definitions::class, "page"]),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new DeliveryServiceLists());
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('添加'),
|
||||
ApiDoc\url('/store/delivery/add'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'),
|
||||
ApiDoc\Param(name: 'nickname', type: 'string', require: true, desc: '店员名称'),
|
||||
ApiDoc\Param(name: 'phone', type: 'string', require: true, desc: '手机号'),
|
||||
ApiDoc\Param(name: 'status', type: 'string', require: true, desc: '状态,1启用,0禁用'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function add(DeliveryServiceLogic $logic)
|
||||
{
|
||||
$params = $this->request->post();
|
||||
$logic->add($params);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('编辑'),
|
||||
ApiDoc\url('/store/delivery/edit'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'),
|
||||
ApiDoc\Param(name: 'nickname', type: 'string', require: true, desc: '店员名称'),
|
||||
ApiDoc\Param(name: 'phone', type: 'string', require: true, desc: '手机号'),
|
||||
ApiDoc\Param(name: 'status', type: 'string', require: true, desc: '状态,1启用,0禁用'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function edit(DeliveryServiceLogic $logic)
|
||||
{
|
||||
$id = $this->request->post('id');
|
||||
$params = $this->request->post();
|
||||
$logic->edit($id, $params);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('删除'),
|
||||
ApiDoc\url('/store/delivery/delete'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function delete(DeliveryServiceLogic $logic)
|
||||
{
|
||||
$id = $this->request->post('id');
|
||||
$logic->delete($id);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('详情'),
|
||||
ApiDoc\url('/store/delivery/detail'),
|
||||
ApiDoc\Method('GET'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array", children: [
|
||||
['name' => 'id', 'desc' => 'ID', 'type' => 'int'],
|
||||
['name' => 'account', 'desc' => '账号', 'type' => 'string'],
|
||||
['name' => 'avatar', 'desc' => '头像', 'type' => 'string'],
|
||||
['name' => 'staff_name', 'desc' => '店员名称', 'type' => 'string'],
|
||||
['name' => 'phone', 'desc' => '手机号', 'type' => 'string'],
|
||||
['name' => 'verify_status', 'desc' => '核销开关,1开启,0关闭', 'type' => 'int'],
|
||||
['name' => 'order_status', 'desc' => '订单状态,1开启,0关闭', 'type' => 'int'],
|
||||
['name' => 'is_admin', 'desc' => '是否管理员,1是,0不是', 'type' => 'int'],
|
||||
['name' => 'is_manager', 'desc' => '是否是店长,1是,0不是', 'type' => 'int'],
|
||||
['name' => 'status', 'desc' => '状态,1启用,0禁用', 'type' => 'int'],
|
||||
]),
|
||||
]
|
||||
public function detail(DeliveryServiceLogic $logic)
|
||||
{
|
||||
$id = $this->request->get('id');
|
||||
$data = $logic->detail($id);
|
||||
return $this->data($data);
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('开启/关闭'),
|
||||
ApiDoc\url('/store/delivery/status'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function status(DeliveryServiceLogic $logic)
|
||||
{
|
||||
$id = $this->request->post('id');
|
||||
$logic->status($id);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
|
||||
}
|
@ -64,8 +64,8 @@ class StaffController extends BaseAdminController
|
||||
ApiDoc\url('/store/staff/edit'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\Param(name: 'account', type: 'string', require: true, desc: '账号'),
|
||||
ApiDoc\Param(name: 'pwd', type: 'string', require: true, desc: '密码'),
|
||||
ApiDoc\Param(name: 'avatar', type: 'string', require: true, desc: '头像'),
|
||||
@ -79,7 +79,7 @@ class StaffController extends BaseAdminController
|
||||
]
|
||||
public function edit(SystemStoreStaffLogic $staffLogic)
|
||||
{
|
||||
$id = $this->request->get('id');
|
||||
$id = $this->request->post('id');
|
||||
$params = $this->request->post();
|
||||
$staffLogic->edit($id, $params);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
@ -91,12 +91,12 @@ class StaffController extends BaseAdminController
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Query(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function delete(SystemStoreStaffLogic $staffLogic)
|
||||
{
|
||||
$id = $this->request->get('id');
|
||||
$id = $this->request->post('id');
|
||||
$staffLogic->delete($id);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
@ -128,4 +128,20 @@ class StaffController extends BaseAdminController
|
||||
return $this->data($data);
|
||||
}
|
||||
|
||||
#[
|
||||
ApiDoc\Title('开启/关闭'),
|
||||
ApiDoc\url('/store/staff/status'),
|
||||
ApiDoc\Method('POST'),
|
||||
ApiDoc\NotHeaders(),
|
||||
ApiDoc\Header(ref: [Definitions::class, "token"]),
|
||||
ApiDoc\Param(name: 'id', type: 'int', require: true, desc: 'id'),
|
||||
ApiDoc\ResponseSuccess("data", type: "array"),
|
||||
]
|
||||
public function status(SystemStoreStaffLogic $logic)
|
||||
{
|
||||
$id = $this->request->post('id');
|
||||
$logic->status($id);
|
||||
return $this->success('操作成功', [], 1, 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user