From f51c9174b65d95c75b4f05618e7fc41886975f89 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 22 Jun 2024 17:04:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E8=AE=B0=E5=BD=95=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/logic/user/UserLogic.php | 7 ++ app/api/controller/store/StoreController.php | 9 +++ .../user_create_log/UserCreateLogLists.php | 70 +++++++++++++++++++ .../model/user_create_log/UserCreateLog.php | 22 ++++++ 4 files changed, 108 insertions(+) create mode 100644 app/api/lists/user_create_log/UserCreateLogLists.php create mode 100644 app/common/model/user_create_log/UserCreateLog.php diff --git a/app/admin/logic/user/UserLogic.php b/app/admin/logic/user/UserLogic.php index 5f6e4314..8ee754de 100644 --- a/app/admin/logic/user/UserLogic.php +++ b/app/admin/logic/user/UserLogic.php @@ -23,6 +23,7 @@ use app\common\model\store_order\StoreOrder; use app\common\model\user\User; use app\common\model\user\UserAddress; use app\common\model\user\UserRecharge; +use app\common\model\user_create_log\UserCreateLog; use app\common\model\user_label\UserLabel; use app\common\model\user_sign\UserSign; use app\common\model\vip_flow\VipFlow; @@ -94,6 +95,12 @@ class UserLogic extends BaseLogic ]; $res=User::create($data); + UserCreateLog::create([ + 'uid' => $res['id'], + 'create_uid' => $params['create_uid']??0, + 'store_id' => $params['store_id']??0, + 'staff_id' => $params['staff_id']??0, + ]); UserAddress::create([ 'uid' => $res['id'], 'real_name' => $params['real_name']??"", diff --git a/app/api/controller/store/StoreController.php b/app/api/controller/store/StoreController.php index 0817407a..56109736 100644 --- a/app/api/controller/store/StoreController.php +++ b/app/api/controller/store/StoreController.php @@ -5,6 +5,7 @@ namespace app\api\controller\store; use app\admin\logic\user\UserLogic as UserUserLogic; use app\api\lists\store\SystemStoreLists; use app\api\controller\BaseApiController; +use app\api\lists\user_create_log\UserCreateLogLists; use app\api\logic\store\StoreLogic; use app\api\logic\user\UserLogic; use app\api\validate\UserValidate; @@ -23,6 +24,13 @@ class StoreController extends BaseApiController return $this->dataLists(new SystemStoreLists()); } + /** + * 创建用户记录列表 + */ + public function create_lists() + { + return $this->dataLists(new UserCreateLogLists()); + } /** * 门店信息 @@ -57,6 +65,7 @@ class StoreController extends BaseApiController $recharge_type = $this->request->post('recharge_type',''); //微信支付条码 $find=User::where('mobile',$params['mobile'])->find(); if(!$find){ + $params['create_uid']=$this->userId; $find=UserUserLogic::StoreAdd($params); }else{ $find['real_name']=$params['real_name']; diff --git a/app/api/lists/user_create_log/UserCreateLogLists.php b/app/api/lists/user_create_log/UserCreateLogLists.php new file mode 100644 index 00000000..9b1a89ef --- /dev/null +++ b/app/api/lists/user_create_log/UserCreateLogLists.php @@ -0,0 +1,70 @@ + ['store_id'], + + ]; + } + + + /** + * @notes 获取用户前端添加记录列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author admin + * @date 2024/05/31 17:45 + */ + public function lists(): array + { + $data = UserCreateLog::where($this->searchWhere) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select()->each(function ($item){ + $item['system_store_name'] = SystemStore::where('id',$item['store_id'])->value('name'); + $item['nickname'] = User::where('id',$item['uid'])->value('real_name'); + $item['create_nickname'] = User::where('id',$item['create_uid'])->value('real_name'); + }) + ->toArray(); + return $data; + } + + + /** + * @notes 获取用户前端添加记录数量 + * @return int + * @author admin + * @date 2024/05/31 17:45 + */ + public function count(): int + { + return UserCreateLog::where($this->searchWhere)->count(); + } +} diff --git a/app/common/model/user_create_log/UserCreateLog.php b/app/common/model/user_create_log/UserCreateLog.php new file mode 100644 index 00000000..f323d562 --- /dev/null +++ b/app/common/model/user_create_log/UserCreateLog.php @@ -0,0 +1,22 @@ +