截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

CartLogic.php 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\logic;
  20. use app\common\{
  21. enum\GoodsEnum,
  22. model\Cart,
  23. basics\Logic,
  24. model\goods\Goods,
  25. enum\FootprintEnum
  26. };
  27. /**
  28. * 购物车逻辑层
  29. * Class CartLogic
  30. * @package app\api\logic
  31. */
  32. class CartLogic extends Logic
  33. {
  34. /**
  35. * @notes 购物车列表
  36. * @param $user_id
  37. * @return array
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\DbException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @author cjhao
  42. * @date 2021/9/7 10:23
  43. */
  44. public static function lists($user_id)
  45. {
  46. $carts = Cart::with(['goods', 'goods_item', 'shop'])
  47. ->where('user_id', $user_id)
  48. ->order('id desc')
  49. ->select()->toArray();
  50. $goods_num = 0;
  51. $total = 0;
  52. $lists = [];
  53. $shop_ids = array_unique(array_column($carts, 'shop_id'));
  54. foreach ($shop_ids as $shop_id) {
  55. $lists[$shop_id]['is_selected'] = 1;
  56. $shop_info = $cart_lists = [];
  57. foreach ($carts as $k => $cart) {
  58. if ($shop_id != $cart['shop_id']) {
  59. continue;
  60. }
  61. if (empty($cart['goods']['id']) || $cart['goods']['del'] != 0) {
  62. continue;
  63. }
  64. if (empty($shop_info)) {
  65. $shop_info = [
  66. 'shop_id' => $cart['shop']['id'],
  67. 'shop_name' => $cart['shop']['name'],
  68. 'type' => $cart['shop']['type'],
  69. 'is_pay' => $cart['shop']['is_pay'],
  70. ];
  71. }
  72. $sub_price = 0; // 已选中 && 上架 && 未删除 && 规格信息不为空 && 商家支付功能开启
  73. if ($cart['selected'] == 1 && $cart['goods']['status'] == 1 && $cart['goods']['del'] == 0
  74. && !empty($cart['goods_item']) && $cart['shop']['is_pay'])
  75. {
  76. $goods_num += $cart['goods_num'];
  77. $total += $cart['goods_item']['price'] * $cart['goods_num'];
  78. $sub_price = round($cart['goods_item']['price'] * $cart['goods_num'], 2);
  79. } else {
  80. $cart['selected'] = 0;
  81. }
  82. // 设置商家选中状态; 满足条件(未选中的商品,上架,未删除,有规格信息,商家支付功能开启) 才影响商家选中状态
  83. if(!$cart['selected']) {
  84. if ($cart['goods']['status'] == 1 && $cart['goods']['del'] == 0
  85. && !empty($cart['goods_item']) && $cart['shop']['is_pay']) {
  86. $lists[$shop_id]['is_selected'] = 0;
  87. }
  88. }
  89. $cart_lists[] = [
  90. 'cart_id' => $cart['id'],
  91. 'goods_id' => $cart['goods_id'],
  92. 'goods_name' => $cart['goods']['name'],
  93. 'image' => empty($cart['goods_item']['image']) ? $cart['goods']['image'] : $cart['goods_item']['image'],
  94. 'goods_num' => $cart['goods_num'],
  95. 'goods_status' => $cart['goods']['status'],
  96. 'goods_del' => $cart['goods']['del'],
  97. 'spec_value_str' => $cart['goods_item']['spec_value_str'] ?? '请重新选择规格',
  98. 'price' => $cart['goods_item']['price'],
  99. 'stock' => $cart['goods_item']['stock'],
  100. 'selected' => intval($cart['selected']),
  101. 'item_id' => $cart['item_id'],
  102. 'sub_price' => $sub_price,
  103. 'is_pay' => $cart['shop']['is_pay'],
  104. 'has_item' => empty($cart['goods_item']) ? 0 : 1, //是否有规格信息
  105. ];
  106. }
  107. if (empty($shop_info)) {
  108. unset($lists[$shop_id]);
  109. continue;
  110. }
  111. $lists[$shop_id]['shop'] = $shop_info;
  112. $lists[$shop_id]['cart'] = $cart_lists;
  113. }
  114. return [
  115. 'lists' => array_values($lists),
  116. 'total_amount' => round($total, 2),
  117. 'total_num' => $goods_num,
  118. ];
  119. }
  120. /**
  121. * Notes: 添加
  122. * @param $post
  123. * @param $user_id
  124. * @return bool
  125. * @author 段誉(2021/5/10 19:03)
  126. */
  127. public static function add($post, $user_id)
  128. {
  129. try {
  130. $item_id = $post['item_id'];
  131. $goods_num = $post['goods_num'];
  132. $cart = Cart::where(['user_id' => $user_id, 'item_id' => $item_id])->find();
  133. $cart_num = $post['goods_num'] + (isset($cart) ? $cart['goods_num'] : 0);
  134. $goods = self::checkCartGoods($item_id, $cart_num);
  135. if (false === $goods) {
  136. throw new \Exception(self::getError() ?: '商品信息错误');
  137. }
  138. if ($cart) {
  139. //购物车内已有该商品
  140. Cart::where(['id' => $cart['id'], 'shop_id' => $goods['shop_id']])
  141. ->update(['goods_num' => $goods_num + $cart['goods_num']]);
  142. } else {
  143. //新增购物车记录
  144. Cart::create([
  145. 'user_id' => $user_id,
  146. 'goods_id' => $goods['id'],
  147. 'goods_num' => $goods_num,
  148. 'item_id' => $item_id,
  149. 'shop_id' => $goods['shop_id'],
  150. ]);
  151. }
  152. // 记录访问足迹
  153. event('Footprint', [
  154. 'type' => FootprintEnum::ADD_CART,
  155. 'user_id' => $user_id,
  156. 'foreign_id' => $goods['id']
  157. ]);
  158. return true;
  159. } catch (\Exception $e) {
  160. self::$error = $e->getMessage();
  161. return false;
  162. }
  163. }
  164. /**
  165. * Notes: 变动数量
  166. * @param $cart_id
  167. * @param $goods_num
  168. * @author 段誉(2021/5/11 11:59)
  169. * @return bool
  170. * @throws \think\db\exception\DataNotFoundException
  171. * @throws \think\db\exception\DbException
  172. * @throws \think\db\exception\ModelNotFoundException
  173. */
  174. public static function change($cart_id, $goods_num)
  175. {
  176. $cart = Cart::find($cart_id);
  177. $goods_num = ($goods_num <= 0) ? 1 : $goods_num;
  178. if (false === self::checkCartGoods($cart['item_id'], $goods_num)) {
  179. return false;
  180. }
  181. Cart::update(['goods_num' => $goods_num], ['id' => $cart_id]);
  182. return true;
  183. }
  184. /**
  185. * Notes: 删除
  186. * @param $cart_id
  187. * @param $user_id
  188. * @author 段誉(2021/5/11 12:02)
  189. * @return bool
  190. */
  191. public static function del($cart_id, $user_id)
  192. {
  193. return Cart::where(['id' => $cart_id, 'user_id' => $user_id])->delete();
  194. }
  195. /**
  196. * Notes: 更改选中状态
  197. * @param $post
  198. * @param $user_id
  199. * @author 段誉(2021/5/11 15:49)
  200. * @return Cart
  201. */
  202. public static function selected($post, $user_id)
  203. {
  204. return Cart::where(['user_id' => $user_id, 'id' => $post['cart_id']])
  205. ->update(['selected' => $post['selected']]);
  206. }
  207. /**
  208. * Notes: 购物车数量
  209. * @param $user_id
  210. * @author 段誉(2021/5/11 12:07)
  211. * @return array
  212. */
  213. public static function cartNum($user_id)
  214. {
  215. $cart = new Cart();
  216. $num = $cart->alias('c')
  217. ->join('goods g', 'g.id = c.goods_id')
  218. ->join('goods_item i', 'i.id = c.item_id')
  219. ->where(['g.status' => 1, 'g.del' => 0, 'c.user_id' => $user_id])
  220. ->sum('goods_num');
  221. return ['num' => $num ?? 0];
  222. }
  223. /**
  224. * Notes: 验证商品
  225. * @param $item_id
  226. * @param $goods_num
  227. * @author 段誉(2021/5/11 11:59)
  228. * @return bool
  229. */
  230. public static function checkCartGoods($item_id, $goods_num)
  231. {
  232. $goodsModel = new Goods();
  233. $goods = $goodsModel->alias('g')
  234. ->with('shop')
  235. ->field('g.id, g.status, g.del, g.shop_id, g.type,i.stock')
  236. ->join('goods_item i', 'i.goods_id = g.id')
  237. ->where('i.id', $item_id)
  238. ->find();
  239. if (!$goods['shop']['is_pay']) {
  240. self::$error = '该商家支付功能已关闭';
  241. return false;
  242. }
  243. if (empty($goods) || $goods['status'] == 0 || $goods['del'] != 0) {
  244. self::$error = '商品不存在或已下架';
  245. return false;
  246. }
  247. if ($goods['stock'] < $goods_num) {
  248. self::$error = '很抱歉,库存不足';
  249. return false;
  250. }
  251. if ($goods['type'] == GoodsEnum::TYPE_VIRTUAL) {
  252. self::$error = '虚拟商品不可加入购物车';
  253. return false;
  254. }
  255. return $goods;
  256. }
  257. }