You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

187 lines
5.1 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. <?php
  2. namespace App\Http\Model;
  3. class Cart extends BaseModel
  4. {
  5. //购物车模型
  6. /**
  7. * 关联到模型的数据表
  8. *
  9. * @var string
  10. */
  11. protected $table = 'cart';
  12. public $timestamps = false;
  13. //购物车商品类型
  14. const CART_GENERAL_GOODS = 0; // 普通商品
  15. const CART_GROUP_BUY_GOODS = 1; // 团购商品
  16. const CART_AUCTION_GOODS = 2; // 拍卖商品
  17. const CART_SNATCH_GOODS = 3; // 夺宝奇兵
  18. const CART_EXCHANGE_GOODS = 4; // 积分商城
  19. //获取列表
  20. public static function getList(array $param)
  21. {
  22. extract($param); //参数:limit,offset
  23. $model = self::join('goods', 'goods.id', '=', 'cart.goods_id')
  24. ->where('cart.user_id', $user_id)
  25. ->where('goods.status', Goods::STATUS)
  26. ->select('cart.*','goods.id as goods_id','goods.title','goods.sn','goods.price as goods_price','goods.market_price','goods.litpic','goods.goods_number as stock','goods.promote_start_date','goods.promote_price','goods.promote_end_date');
  27. $res['count'] = $model->count();
  28. $res['list'] = array();
  29. if($res['count']>0)
  30. {
  31. $res['list'] = $model->get();
  32. foreach ($res['list'] as $k => $v)
  33. {
  34. $res['list'][$k]->is_promote = 0;
  35. if(Goods::bargain_price($v->goods_price,$v->promote_start_date,$v->promote_end_date) > 0){$res['list'][$k]->is_promote = 1;}
  36. //订货数量大于0
  37. if ($v->goods_number > 0)
  38. {
  39. $res['list'][$k]->final_price = Goods::get_final_price($v->goods_id); //商品最终价格
  40. $res['list'][$k]->goods_detail_url = route('weixin_goods_detail',array('id'=>$v->goods_id));
  41. //更新购物车中的商品数量
  42. //self::where('id', $v->id)->update(array('price' => $goods_price));
  43. }
  44. }
  45. }
  46. else
  47. {
  48. return false;
  49. }
  50. return $res;
  51. }
  52. public static function getOne($where)
  53. {
  54. $goods = self::where($where)->first();
  55. return $goods;
  56. }
  57. public static function add(array $data)
  58. {
  59. if ($id = self::insertGetId($data))
  60. {
  61. return $id;
  62. }
  63. return false;
  64. }
  65. public static function modify($where, array $data)
  66. {
  67. if (self::where($where)->update($data))
  68. {
  69. return true;
  70. }
  71. return false;
  72. }
  73. //删除一条记录
  74. public static function remove($id,$user_id)
  75. {
  76. if(!is_array($id)){$id = explode(',', $id);}
  77. if (self::whereIn('id', $id)->where('user_id',$user_id)->delete() === false)
  78. {
  79. return false;
  80. }
  81. return true;
  82. }
  83. /**
  84. * 添加商品到购物车
  85. *
  86. * @access public
  87. * @param integer $goods_id 商品编号
  88. * @param integer $num 商品数量
  89. * @param json $property 规格值对应的id json数组
  90. * @return boolean
  91. */
  92. public static function cartAdd(array $attributes)
  93. {
  94. extract($attributes);
  95. //获取商品信息
  96. $goods = Goods::where(['id' => $goods_id, 'status' => Goods::STATUS])->first();
  97. if (!$goods)
  98. {
  99. return '商品不存在';
  100. }
  101. //判断库存 是否足够
  102. if($goods['goods_number']<$goods_number)
  103. {
  104. return '库存不足';
  105. }
  106. //判断购物车商品数
  107. if(Cart::where(['user_id'=>$user_id])->count() >= 20)
  108. {
  109. return '购物车商品最多20件';
  110. }
  111. //查看是否已经有购物车插入记录
  112. $where = array(
  113. 'user_id' => $user_id,
  114. 'goods_id' => $goods_id
  115. );
  116. $cart = Cart::where($where)->first();
  117. if($cart)
  118. {
  119. //更新购物车
  120. $updateArr = array(
  121. 'goods_number' => $goods_number,
  122. 'add_time' => time(),
  123. );
  124. self::where(array('id'=>$cart->id))->update($updateArr);
  125. }
  126. else
  127. {
  128. //添加购物车
  129. $cartInsert = array(
  130. 'user_id' => $user_id,
  131. 'goods_id' => $goods_id,
  132. 'goods_number' => $goods_number,
  133. 'add_time' => time(),
  134. );
  135. self::insertGetId($cartInsert);
  136. }
  137. return true;
  138. }
  139. /**
  140. * 清空购物车
  141. *
  142. * @param int $type 类型:默认普通商品
  143. */
  144. public static function clearCart($user_id)
  145. {
  146. self::where('user_id',$user_id)->delete();
  147. return true;
  148. }
  149. //购物车商品总数量
  150. public static function TotalGoodsCount($user_id)
  151. {
  152. return self::where('user_id',$user_id)->sum('goods_number');
  153. }
  154. }