CouponList.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\mall\controller;
  15. use library\Controller;;
  16. use think\Db;
  17. /**
  18. * 会员优惠券
  19. * Class CouponList
  20. * @package app\mall\controller
  21. */
  22. class CouponList extends Controller
  23. {
  24. /**
  25. * 绑定数据表
  26. * @var string
  27. */
  28. protected $table = 'UserCouponList';
  29. /**
  30. * 优惠券管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\Exception
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. * @throws \think\exception\PDOException
  38. */
  39. public function index()
  40. {
  41. $this->title = '优惠券';
  42. $coupon_id=$this->request->get('coupon_id');
  43. $this->byWhere(1)
  44. ->field('a.*,b.name,b.headimg')
  45. ->where('a.config_id',$coupon_id)
  46. ->order('a.id desc')
  47. ->page();
  48. }
  49. /**
  50. * 搜索条件
  51. * @return \library\helper\QueryHelper
  52. */
  53. protected function byWhere($type)
  54. {
  55. if ($type == 1) {
  56. $query = $this->_query($this->table);
  57. } elseif ($type == 2) {
  58. $query = Db::name($this->table);
  59. }
  60. $query = $query->alias('a')
  61. ->join('store_member b', 'a.user_id=b.id');
  62. if (isset($_GET['status']) && $_GET['status']) {
  63. $query->where('a.status', $_GET['status']);
  64. }
  65. if (isset($_GET['title']) && $_GET['title']) {
  66. $query->where('a.title', 'like','%'.$_GET['title'].'%');
  67. }
  68. if (isset($_GET['user_info']) && $_GET['user_info']) {
  69. $query->where('b.name|b.phone', 'like', '%' . $_GET['user_info'] . '%');
  70. }
  71. return $query;
  72. }
  73. /**
  74. * 数据列表处理
  75. * @param array $data
  76. * @throws \think\db\exception\DataNotFoundException
  77. * @throws \think\db\exception\ModelNotFoundException
  78. * @throws \think\exception\DbException
  79. */
  80. protected function _index_page_filter(&$data)
  81. {
  82. foreach ($data as $k=>&$v) {
  83. $coupon=Db::name('coupon_config')->where('id',$this->request->get('coupon_id'))->find();
  84. if ($coupon['coupon_type'] == 1) {
  85. if ($coupon['goods_id']) {
  86. $v['goods_name']=Db::name('store_goods')->where('id',$v['goods_id'])->value('name');
  87. }
  88. }
  89. $v['coupon_type']=$coupon['coupon_type'];
  90. $v['member'] = Db::name('store_member')->where('id',$v['user_id'])->find();
  91. }
  92. }
  93. /**
  94. * 添加优惠券
  95. * @auth true
  96. * @throws \think\Exception
  97. * @throws \think\db\exception\DataNotFoundException
  98. * @throws \think\db\exception\ModelNotFoundException
  99. * @throws \think\exception\DbException
  100. * @throws \think\exception\PDOException
  101. */
  102. public function add()
  103. {
  104. $this->title = '添加优惠券';
  105. if($this->request->isPost()){
  106. if($this->request->post('user')==0){
  107. $user_ids=explode(',',$this->request->post('user_ids'));
  108. //指定用户发放
  109. }else{
  110. //全部用户发方
  111. $user_ids=Db::name('store_member')->where('status',1)->column('id');
  112. }
  113. $coupon=Db::name('coupon_config')->where('id',$this->request->post('coupon_id'))->where('status',1)->where('is_deleted',0)->find();
  114. if(empty($coupon)){
  115. $this->error('优惠券不存在或已禁用');
  116. }
  117. $error=[];
  118. foreach ($user_ids as $k=>$v){
  119. $data=[];
  120. $count=Db::name('user_coupon_list')->where('config_id',$coupon['id'])->where('user_id',$v)->count();
  121. if($count+1>$coupon['user_num']){
  122. array_push($error,$v);
  123. }else{
  124. $data['config_id']=$coupon['id'];
  125. $data['user_id']=$v;
  126. $data['goods_id']=$coupon['goods_id'];
  127. $data['title']=$coupon['title'];
  128. $data['low_amount']=$coupon['low_amount'];
  129. $data['amount']=$coupon['amount'];
  130. if($coupon['time_type']==0){
  131. if($coupon['low_day']==0){
  132. $data['type']=0;
  133. }else{
  134. $data['type']=1;
  135. $data['start']=date('Y-m-d');
  136. $data['end']=date('Y-m-d', strtotime('+'.$coupon['low_day'].' days') );;
  137. }
  138. }else{
  139. $data['type']=1;
  140. $data['start']=$coupon['start_tm'];
  141. $data['end']=$coupon['end_tm'];
  142. }
  143. $data['status']=0;
  144. $data['create_at']=time();
  145. $data['coupon_type']=$coupon['coupon_type'];
  146. Db::name('user_coupon_list')->insert($data);
  147. }
  148. }
  149. $msg='发放成功';
  150. if($error){
  151. $nickname=Db::name('store_member')->where('id','in',$error)->column('name');
  152. $nickname=implode(',',$nickname);
  153. $msg='发放成功'.$nickname.'等用户因规则原因,发放失败';
  154. }
  155. $this->success($msg);
  156. }else{
  157. $this->_form($this->table, 'form');
  158. }
  159. }
  160. /**
  161. * 编辑优惠券
  162. * @auth true
  163. * @throws \think\Exception
  164. * @throws \think\db\exception\DataNotFoundException
  165. * @throws \think\db\exception\ModelNotFoundException
  166. * @throws \think\exception\DbException
  167. * @throws \think\exception\PDOException
  168. */
  169. public function edit()
  170. {
  171. $this->title = '编辑优惠券';
  172. $this->_form($this->table, 'form');
  173. }
  174. /**
  175. * 表单数据处理
  176. * @param array $data
  177. * @throws \think\Exception
  178. * @throws \think\db\exception\DataNotFoundException
  179. * @throws \think\db\exception\ModelNotFoundException
  180. * @throws \think\exception\DbException
  181. * @throws \think\exception\PDOException
  182. */
  183. protected function _form_filter(&$data)
  184. {
  185. if($this->request->isPost()){
  186. }else{
  187. $coupon_id=$this->request->get('coupon_id');
  188. $this->coupon_id=$coupon_id;
  189. $this->member=Db::name('store_member')->field('id,phone,name')->where('status',1)->select();
  190. $this->member_count=count($this->member);
  191. }
  192. }
  193. /**
  194. * 禁用优惠券
  195. * @auth true
  196. * @throws \think\Exception
  197. * @throws \think\exception\PDOException
  198. */
  199. public function forbid()
  200. {
  201. $this->_save($this->table, ['status' => '0']);
  202. }
  203. /**
  204. * 启用优惠券
  205. * @auth true
  206. * @throws \think\Exception
  207. * @throws \think\exception\PDOException
  208. */
  209. public function resume()
  210. {
  211. $this->_save($this->table, ['status' => '1']);
  212. }
  213. /**
  214. * 删除优惠券
  215. * @auth true
  216. * @throws \think\Exception
  217. * @throws \think\exception\PDOException
  218. */
  219. public function remove()
  220. {
  221. $this->_delete($this->table);
  222. }
  223. }