截流自动化的商城平台
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.

ShopCouponLogic.php 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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\admin\logic\coupon;
  20. use app\common\server\UrlServer;
  21. use app\common\basics\Logic;
  22. use app\common\model\coupon\Coupon;
  23. use app\common\model\coupon\CouponGoods;
  24. use app\common\model\coupon\CouponList;
  25. use app\common\model\user\UserLevel;
  26. class ShopCouponLogic extends Logic{
  27. public static function lists($get)
  28. {
  29. $where = [
  30. ['c.del','=',0]
  31. ];
  32. if(empty($get['type'])) {
  33. // 已下架
  34. $where[] = ['c.status', '=', '0'];
  35. }else{
  36. $where[] = ['c.status', '=', '1'];
  37. }
  38. // 商家名称
  39. if(isset($get['shop_name']) && !empty($get['shop_name'])) {
  40. $where[] = ['s.name', 'like', '%'.trim($get['shop_name']).'%' ];
  41. }
  42. // 优惠券名称
  43. if(isset($get['name']) && !empty($get['name'])) {
  44. $where[] = ['c.name', 'like', '%'.trim($get['name']).'%' ];
  45. }
  46. // 领取方式
  47. if(isset($get['get_type']) && !empty($get['get_type'])) {
  48. $where[] = ['c.get_type', '=', $get['get_type'] ];
  49. }
  50. // 创建时间
  51. if(isset($get['start_time']) && !empty($get['start_time'])) {
  52. $where[] = ['c.create_time', '>=', strtotime($get['start_time']) ];
  53. }
  54. if(isset($get['end_time']) && !empty($get['end_time'])) {
  55. $where[] = ['c.create_time', '<=', strtotime($get['end_time']) ];
  56. }
  57. $coupon_count = Coupon::alias('c')
  58. ->leftJoin('shop s', 's.id=c.shop_id')
  59. ->where($where)->count();
  60. $coupon_list = Coupon::alias('c')
  61. ->leftJoin('shop s', 's.id=c.shop_id')
  62. ->field('c.id,c.name,c.money,c.use_goods_type,c.use_goods_type as use_goods_type_desc,c.condition_type,c.condition_money,c.condition_type as condition_type_desc,c.send_total_type,c.send_total_type as send_total_type_desc,c.send_total,c.get_type,c.get_type as get_type_desc,c.status,c.status as statusDesc,c.send_time_start,c.send_time_end,c.send_time_start as send_time,c.use_time_type,c.use_time_start,c.use_time_end,c.use_time,c.use_time_type as use_time_desc,c.create_time,s.id as shop_id,s.name as shop_name,s.logo as shop_logo,s.type as shop_type')
  63. ->where($where)
  64. ->page($get['page'], $get['limit'])
  65. ->order('id desc')
  66. ->select()
  67. ->toArray();
  68. $shopTypeDesc = [1=>'官方自营', 2=>'入驻商家'];
  69. foreach($coupon_list as &$item) {
  70. $item['shop_type_desc'] = $shopTypeDesc[$item['shop_type']];
  71. $item['logo'] = UrlServer::getFileUrl($item['shop_logo']);
  72. }
  73. return ['count' => $coupon_count, 'list' => $coupon_list];
  74. }
  75. public static function getCoupon($id,$get_data = false)
  76. {
  77. $coupon = Coupon::findOrEmpty($id);
  78. $coupon['goods_coupon'] = [];
  79. if($get_data) {
  80. $coupon = $coupon->getData();
  81. $coupon['send_time_start'] = date('Y-m-d H:i:s',$coupon['send_time_start']);
  82. $coupon['send_time_end'] = date('Y-m-d H:i:s',$coupon['send_time_end']);
  83. if($coupon['use_goods_type'] != 1){ // 非全部商品
  84. $goods_coupon= CouponGoods::alias('cg')
  85. ->join('goods g','cg.goods_id = g.id')
  86. ->where(['coupon_id'=>$id])
  87. ->field('g.id,name,max_price,min_price,stock')
  88. ->select();
  89. foreach ($goods_coupon as &$item){
  90. $item['price'] = '¥'.$item['min_price'].'~'.'¥'.$item['max_price'];
  91. if($item['max_price'] == $item['min_price']){
  92. $item['price'] = '¥'.$item['min_price'];
  93. }
  94. }
  95. $coupon['goods_coupon'] = $goods_coupon;
  96. }
  97. if($coupon['use_time_start']){
  98. $coupon['use_time_start'] = date('Y-m-d H:i:s',$coupon['use_time_start']);
  99. $coupon['use_time_end'] = date('Y-m-d H:i:s',$coupon['use_time_end']);
  100. }
  101. }
  102. return $coupon;
  103. }
  104. /*
  105. * 发放记录
  106. */
  107. public static function record($get)
  108. {
  109. $where[] = ['cl.del','=',0];
  110. $where[] = ['cl.coupon_id','=',$get['id']];
  111. if(isset($get['keyword']) && $get['keyword']){
  112. switch($get['search_type']) {
  113. case 'sn';
  114. $where[] = ['u.sn', '=', $get['keyword']];
  115. break;
  116. case 'nickname';
  117. $where[] = ['u.nickname', '=', $get['keyword']];
  118. break;
  119. case 'mobile';
  120. $where[] = ['u.mobile', '=', $get['keyword']];
  121. break;
  122. }
  123. }
  124. if(isset($get['status']) && $get['status'] != '') {
  125. $where[] = ['cl.status', '=', $get['status']];
  126. }
  127. $log_count = CouponList::alias('cl')
  128. ->join('user u','cl.user_id = u.id')
  129. ->where($where)
  130. ->count();
  131. $log_list = CouponList::alias('cl')
  132. ->join('user u','cl.user_id = u.id')
  133. ->where($where)
  134. ->field('cl.coupon_id,cl.status as cl_status,coupon_code,cl.create_time as cl_create_time,cl.use_time,u.nickname,u.avatar,u.mobile,u.sn,u.level')
  135. ->page($get['page'], $get['limit'])
  136. ->select();
  137. $coupon = Coupon::find($get['id']);
  138. $coupon_list = Coupon::where(['del'=>0])->column('name','id');
  139. $level_name = UserLevel::where(['del'=>0])->column('name','id');
  140. foreach ($log_list as &$item)
  141. {
  142. // 计算过期时间
  143. switch($coupon->use_time_type) {
  144. case 1:
  145. $item['expired_time_desc'] = date('Y-m-d H:i:s', $coupon['use_time_end']);
  146. break;
  147. case 2: // 领券当天起
  148. $datatime = '+'.$coupon['use_time']. ' day';
  149. $expired_time = strtotime($datatime, $item['cl_create_time']);
  150. $item['expired_time_desc'] = date('Y-m-d H:i:s', $expired_time);
  151. break;
  152. case 3: // 领券次日起
  153. $datatime = '+'.($coupon['use_time'] + 1). ' day';
  154. $expired_time = strtotime($datatime, $item['cl_create_time']);
  155. $item['expired_time_desc'] = date('Y-m-d H:i:s', $expired_time);
  156. break;
  157. }
  158. $item['coupon_name'] = $coupon_list[$item['coupon_id']] ?? '';
  159. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  160. $item['level_name'] = $level_name[$item['level']] ?? '';
  161. $item['status_desc'] = $item['cl_status'] ? '已使用' : '未使用';
  162. $item['cl_create_time'] = date('Y-m-d H:i:s',$item['cl_create_time']);
  163. $item['use_time_desc'] = $item['use_time'] ? date('Y-m-d H:i:s',$item['use_time']) : '';
  164. }
  165. return ['count'=>$log_count , 'lists'=>$log_list];
  166. }
  167. }