截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Coupon.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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\shop\controller\coupon;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use app\shop\logic\coupon\CouponLogic;
  23. use app\shop\validate\coupon\CouponValidate;
  24. use think\exception\ValidateException;
  25. class Coupon extends ShopBase{
  26. /**
  27. * note 优惠券列表
  28. */
  29. public function lists(){
  30. if($this->request->isAjax()){
  31. $get = $this->request->get();
  32. $get['shop_id'] = $this->shop_id;
  33. $data = CouponLogic::lists($get);
  34. return JsonServer::success('', $data);
  35. }
  36. return view();
  37. }
  38. /**
  39. * note 添加优惠券
  40. */
  41. public function add(){
  42. if($this->request->isAjax()){
  43. $post = $this->request->post();
  44. try{
  45. validate(CouponValidate::class)->check($post);
  46. }catch(ValidateException $e) {
  47. return JsonServer::error($e->getError());
  48. }
  49. $post['shop_id'] = $this->shop_id;
  50. $result = CouponLogic::add($post);
  51. if($result === true) {
  52. return JsonServer::success('新增成功');
  53. }
  54. return JsonServer::error(CouponLogic::getError());
  55. }
  56. return view();
  57. }
  58. /**
  59. * note 编辑优惠券
  60. */
  61. public function edit(){
  62. if($this->request->isAjax()){
  63. $post = $this->request->post();
  64. try{
  65. validate(CouponValidate::class)->check($post);
  66. }catch(ValidateException $e) {
  67. return JsonServer::error($e->getError());
  68. }
  69. $post['shop_id'] = $this->shop_id;
  70. $result = CouponLogic::edit($post);
  71. if($result === true) {
  72. return JsonServer::success('编辑成功');
  73. }
  74. return JsonServer::error(CouponLogic::getError());
  75. }
  76. $id = $this->request->get('id', '', 'intval');
  77. $detail = CouponLogic::getCoupon($id,true);
  78. return view('', [
  79. 'detail' => json_encode($detail, JSON_UNESCAPED_UNICODE)
  80. ]);
  81. }
  82. /**
  83. * note 优惠券详情
  84. */
  85. public function detail(){
  86. $id = $this->request->get('id');
  87. $detail = CouponLogic::getCoupon($id,true);
  88. return view('', [
  89. 'detail' => json_encode($detail,JSON_UNESCAPED_UNICODE)
  90. ]);
  91. }
  92. /**
  93. * note 优惠券发放记录
  94. */
  95. public function log(){
  96. if($this->request->isAjax()){
  97. $get = $this->request->get();
  98. $data = CouponLogic::log($get);
  99. return JsonServer::success('', $data);
  100. }
  101. $id = $this->request->get('id');
  102. return view('', [
  103. 'id' => $id
  104. ]);
  105. }
  106. /**
  107. * 上下架
  108. */
  109. public function changeStatus()
  110. {
  111. $id = $this->request->post('id');
  112. $result = CouponLogic::changeStatus($id);
  113. if($result === true) {
  114. return JsonServer::success('操作成功');
  115. }
  116. return JsonServer::error(CouponLogic::getError());
  117. }
  118. /**
  119. * note 删除优惠券
  120. */
  121. public function del(){
  122. if($this->request->isAjax()){
  123. $id = $this->request->post('id');
  124. $result = CouponLogic::del($id);
  125. if($result === true){
  126. return JsonServer::success('删除成功');
  127. }
  128. return JsonServer::error(CouponLogic::getError());
  129. }
  130. }
  131. /**
  132. * 发放优惠券
  133. */
  134. public function sendCouponList(){
  135. return view();
  136. }
  137. public function getShopCouponList()
  138. {
  139. $get = $this->request->get();
  140. $get['shop_id'] = $this->shop_id;
  141. $data = CouponLogic::getShopCouponList($get);
  142. return JsonServer::success('', $data);
  143. }
  144. public function sendCoupon(){
  145. if($this->request->isAjax()){
  146. $post = $this->request->post();
  147. $result = CouponLogic::sendCoupon($post);
  148. if($result === true){
  149. return JsonServer::success('发放成功');
  150. }
  151. return JsonServer::error(CouponLogic::getError());
  152. }
  153. }
  154. }