CouponConfig.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 library\tools\Data;
  17. use think\Db;
  18. /**
  19. * 优惠券配置
  20. * Class CouponConfig
  21. * @package app\mall\controller
  22. */
  23. class CouponConfig extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'CouponConfig';
  30. /**
  31. * 优惠券管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '优惠券配置';
  43. $query = $this->_query($this->table)->like('title')->equal('status');
  44. $query->where(['is_deleted' => '0'])->order('id desc')->page();
  45. }
  46. /**
  47. * 数据列表处理
  48. * @param array $data
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. */
  53. protected function _index_page_filter(&$data)
  54. {
  55. foreach ($data as $k=>&$v) {
  56. if ($v['coupon_type'] == 1) {
  57. if ($v['goods_id']) {
  58. $v['goods_name']=Db::name('store_goods')->where('id',$v['goods_id'])->value('name');
  59. }
  60. }
  61. $v['sheng']=Db::name('user_coupon_list')->where('config_id',$v['id'])->count();
  62. }
  63. }
  64. /**
  65. * 添加优惠券
  66. * @auth true
  67. * @throws \think\Exception
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. * @throws \think\exception\DbException
  71. * @throws \think\exception\PDOException
  72. */
  73. public function add()
  74. {
  75. $this->title = '添加优惠券';
  76. $this->_form($this->table, 'form');
  77. }
  78. /**
  79. * 编辑优惠券
  80. * @auth true
  81. * @throws \think\Exception
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * @throws \think\exception\PDOException
  86. */
  87. public function edit()
  88. {
  89. $this->title = '编辑优惠券';
  90. $this->_form($this->table, 'form');
  91. }
  92. /**
  93. * 表单数据处理
  94. * @param array $data
  95. * @throws \think\Exception
  96. * @throws \think\db\exception\DataNotFoundException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. * @throws \think\exception\DbException
  99. * @throws \think\exception\PDOException
  100. */
  101. protected function _form_filter(&$data)
  102. {
  103. if($this->request->isPost()){
  104. if($data['time_type']==1){
  105. if(empty($data['time'])){
  106. $this->error('请选择优惠券限定日期');
  107. }
  108. $time=explode('~',$data['time']);
  109. $data['start_tm']=$time[0];
  110. $data['end_tm']=$time[1];
  111. }
  112. if($data['coupon_type']==1){
  113. if(empty($data['goods_id'])){
  114. $this->error('请选择优惠券商品');
  115. }
  116. }
  117. if($data['low_amount']<=0){
  118. $data['low_amount']=$data['amount']+0.01;
  119. }
  120. if($data['amount']>$data['low_amount']){
  121. $this->error('对不起,优惠金额不能大于限制金额');
  122. }
  123. }else{
  124. $this->goods=Db::name('store_goods')->where('is_deleted',0)->where('status',1)->field('id,name')->select();
  125. }
  126. }
  127. /**
  128. * 禁用优惠券
  129. * @auth true
  130. * @throws \think\Exception
  131. * @throws \think\exception\PDOException
  132. */
  133. public function forbid()
  134. {
  135. $this->_save($this->table, ['status' => '0']);
  136. }
  137. /**
  138. * 启用优惠券
  139. * @auth true
  140. * @throws \think\Exception
  141. * @throws \think\exception\PDOException
  142. */
  143. public function resume()
  144. {
  145. $this->_save($this->table, ['status' => '1']);
  146. }
  147. /**
  148. * 删除优惠券
  149. * @auth true
  150. * @throws \think\Exception
  151. * @throws \think\exception\PDOException
  152. */
  153. public function remove()
  154. {
  155. $this->_delete($this->table);
  156. }
  157. }