From d1c648fac7d32c1b837363c6d5fe2e03cb162535 Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Sat, 1 Jun 2024 17:22:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=AD=E7=89=A9=E8=BD=A6=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/order/CartController.php | 69 ++++++++++++ app/api/lists/order/CartList.php | 100 ++++++++++++++++++ app/api/logic/order/CartLogic.php | 98 +++++++++++++++++ app/api/validate/CartValidate.php | 90 ++++++++++++++++ app/common/model/order/Cart.php | 23 ++++ .../StoreProductAttrValue.php | 7 ++ 6 files changed, 387 insertions(+) create mode 100644 app/api/controller/order/CartController.php create mode 100644 app/api/lists/order/CartList.php create mode 100644 app/api/logic/order/CartLogic.php create mode 100644 app/api/validate/CartValidate.php create mode 100644 app/common/model/order/Cart.php diff --git a/app/api/controller/order/CartController.php b/app/api/controller/order/CartController.php new file mode 100644 index 00000000..83cf27ef --- /dev/null +++ b/app/api/controller/order/CartController.php @@ -0,0 +1,69 @@ +dataLists(new CartList()); + } + + /** + * @notes 添加购物车 + */ + public function create(){ + $params = (new CartValidate())->post()->goCheck('add'); + $params['uid']=$this->request->userId; + $result=Cart::where(['uid'=>$params['uid'],'product_attr_unique'=>$params['product_attr_unique'],'is_fail'=>0,'is_del'=>0])->find(); + $count=Cart::where(['uid'=>$params['uid'],'is_del'=>0,'is_pay'=>0])->count(); + if($count>100){ + return $this->fail('购物车商品不能大于100个,请先结算'); + } + if($result){ + $res=CartLogic::edit($params); + }else{ + $res=CartLogic::add($params); + } + if($res){ + return $this->success('添加成功'); + }else{ + return $this->fail(CartLogic::getError()); + } + } + + /** + * @notes 修改购物车 + */ + public function change(){ + $params = (new CartValidate())->post()->goCheck('change'); + $params['uid']=$this->request->userId; + $res=CartLogic::edit($params,'dec'); + if($res){ + return $this->success('修改成功'); + }else{ + return $this->fail(CartLogic::getError()); + } + } + /** + * @notes 删除购物车 + */ + public function delete(){ + $params = (new CartValidate())->post()->goCheck('delete'); + $params['uid']=$this->request->userId; + $res=CartLogic::delete($params); + if($res){ + return $this->success('删除成功'); + }else{ + return $this->fail(CartLogic::getError()); + } + } + + + +} \ No newline at end of file diff --git a/app/api/lists/order/CartList.php b/app/api/lists/order/CartList.php new file mode 100644 index 00000000..7030e8ff --- /dev/null +++ b/app/api/lists/order/CartList.php @@ -0,0 +1,100 @@ +request->userId; + if (!$userId) return []; + $where=[ + 'uid'=>$userId, + 'is_pay'=>0 + ]; + $list = Cart::where($this->searchWhere)->where($where) + ->limit($this->limitOffset, $this->limitLength) + ->order(['cart_id' => 'desc']) + ->select()->each(function ($item) { + + return $item; + }) + ->toArray(); + + foreach ($list as $key => &$item) { + $find = StoreProductAttrValue::where('unique',$item['product_attr_unique']) + ->field('product_id,image,purchase') + ->with(['storeName']) + ->find(); + if($find){ + $item['goods_total_price'] = bcmul($item['cart_num'], $find['purchase'], 2); + $this->total_price=bcadd($this->total_price,$item['goods_total_price'],2); + $item['imgs'] = $find['image']; + $item['sell'] = $find['purchase']; + $item['goods_name'] = $find['store_name']; + $item['unit_name'] = StoreProductUnit::where('id',$find['unit'])->value('name'); + + } + + } + return $list; + } + + + /** + * @notes 购物车数量 + * @return int + * @date 2024/04/27 11:26 + */ + public function count(): int + { + $userId = $this->request->userId; + if (!$userId) return 0; + $where=[ + 'uid'=>$userId, + 'is_pay'=>0 + ]; + return Cart::where($this->searchWhere)->where($where)->count(); + } + + public function extend() + { + return ['total_price'=>$this->total_price]; + } +} diff --git a/app/api/logic/order/CartLogic.php b/app/api/logic/order/CartLogic.php new file mode 100644 index 00000000..249b47dd --- /dev/null +++ b/app/api/logic/order/CartLogic.php @@ -0,0 +1,98 @@ + $params['uid'], + 'type' => $params['type']??'', + 'product_id' => $params['product_id'], + 'store_id' => $params['store_id']??0, + 'staff_id' => $params['staff_id']??0, + 'product_attr_unique' => $params['product_attr_unique'], + 'cart_num' => $params['cart_num'], + 'add_time' => \Qiniu\time(), + 'is_new' => $params['is_new']??0, + ]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑购物车表 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public static function edit(array $params,$type='inc'): bool + { + Db::startTrans(); + try { + Cart::where(['uid'=>$params['uid'],'product_id'=>$params['product_id']])->update(['cart_num'=>$params['cart_num']]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除购物车表 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public static function delete(array $params): bool + { + return Cart::destroy($params['id']); + } + + + /** + * @notes 获取购物车表详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public static function detail($params): array + { + return Cart::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/api/validate/CartValidate.php b/app/api/validate/CartValidate.php new file mode 100644 index 00000000..95aa10e1 --- /dev/null +++ b/app/api/validate/CartValidate.php @@ -0,0 +1,90 @@ + 'require|number', + 'product_attr_unique' => 'require', + 'store_id' => 'require|number', + 'staff_id' => 'require|number', + 'product_id' => 'require|number', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'cart_num' => '数量', + 'store_id' => '店铺id', + 'staff_id' => '员工id', + 'product_id' => '商品id', + 'product_attr_unique' => '商品规格', + ]; + + + /** + * @notes 添加场景 + * @return CartValidate + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public function sceneAdd() + { + return $this->only(['cart_num','product_attr_unique','store_id','product_id']); + } + + + /** + * @notes 编辑场景 + * @return CartValidate + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public function sceneEdit() + { + return $this->only(['']); + } + + + /** + * @notes 删除场景 + * @return CartValidate + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public function sceneDelete() + { + return $this->only(['']); + } + + + /** + * @notes 详情场景 + * @return CartValidate + * @author likeadmin + * @date 2024/04/24 10:37 + */ + public function sceneDetail() + { + return $this->only(['']); + } + +} \ No newline at end of file diff --git a/app/common/model/order/Cart.php b/app/common/model/order/Cart.php new file mode 100644 index 00000000..59b12b49 --- /dev/null +++ b/app/common/model/order/Cart.php @@ -0,0 +1,23 @@ +belongsTo(StoreProduct::class, 'product_id', 'id') + ->bind(['store_name','unit']); + } + } \ No newline at end of file