Groupon.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <?php
  2. namespace app\admin\controller\shopro\activity;
  3. use addons\shopro\library\traits\Groupon as TraitsGroupon;
  4. use app\common\controller\Backend;
  5. /**
  6. *
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Groupon extends Backend
  11. {
  12. use TraitsGroupon;
  13. /**
  14. * Groupon模型对象
  15. * @var \app\admin\model\shopro\activity\Groupon
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\shopro\activity\Groupon;
  22. $this->view->assign("statusList", $this->model->getStatusList());
  23. }
  24. /**
  25. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  26. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  27. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  28. */
  29. /**
  30. * 团列表
  31. */
  32. public function index()
  33. {
  34. //当前是否为关联查询
  35. $this->relationSearch = false;
  36. //设置过滤方法
  37. $this->request->filter(['strip_tags', 'trim']);
  38. if ($this->request->isAjax())
  39. {
  40. // 检测队列
  41. checkEnv('queue');
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField'))
  44. {
  45. return $this->selectpage();
  46. }
  47. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  48. $order = $this->request->get("order", "DESC");
  49. $offset = $this->request->get("offset", 0);
  50. $limit = $this->request->get("limit", 0);
  51. $total = $this->buildSearch()
  52. ->order($sort, $order)
  53. ->count();
  54. $list = $this->buildSearch()
  55. ->with(['goods', 'user', 'grouponLog'])
  56. ->order($sort, $order)
  57. ->limit($offset, $limit)
  58. ->select();
  59. $list = collection($list)->toArray();
  60. $result = array("total" => $total, "rows" => $list);
  61. return $this->success('操作成功', null, $result);
  62. return json($result);
  63. }
  64. return $this->view->fetch();
  65. }
  66. public function detail($id = null) {
  67. if ($this->request->isAjax()){
  68. $row = $this->model->with(['goods', 'user', 'grouponLog'])
  69. ->where('id', $id)
  70. ->find();
  71. if (!$row) {
  72. $this->error(__('No Results were found'));
  73. }
  74. return $this->success('获取成功', null, $row);
  75. }
  76. $this->assignconfig('id', $id);
  77. return $this->view->fetch();
  78. }
  79. // 增加虚拟成团人数
  80. public function addFictitious($id = null) {
  81. $row = $this->model->where('id', $id)->find();
  82. $avatar = $this->request->post('avatar', '');
  83. $nickname = $this->request->post('nickname', '');
  84. if (!$row) {
  85. $this->error(__('No Results were found'));
  86. }
  87. if ($row['status'] != 'ing' || $row['current_num'] > $row['num']) {
  88. $this->error('团已完成或已失效');
  89. }
  90. // 增加人数
  91. $user = ['avatar' => $avatar, 'nickname' => $nickname];
  92. $this->finishFictitiousGroupon($row, 1, [$user]);
  93. // 重新获取团信息
  94. $row = $this->model->with(['goods', 'user', 'grouponLog'])
  95. ->where('id', $id)
  96. ->find();
  97. return $this->success('操作成功', null, $row);
  98. }
  99. // 解散团
  100. public function invalidGroupon ($id = null) {
  101. $row = $this->model->where('id', $id)->find();
  102. if (!$row) {
  103. $this->error(__('No Results were found'));
  104. }
  105. if ($row['status'] != 'ing') {
  106. $this->error('团已完成或已失效');
  107. }
  108. // 解散团,并退款
  109. $this->invalidRefundGroupon($row);
  110. // 重新获取团信息
  111. $row = $this->model->with(['goods', 'user', 'grouponLog'])
  112. ->where('id', $id)
  113. ->find();
  114. return $this->success('解散成功', null, $row);
  115. }
  116. // 构建查询条件
  117. private function buildSearch()
  118. {
  119. $search = $this->request->get("search", ''); // 关键字
  120. $status = $this->request->get("status", 'all');
  121. $activity_id = $this->request->get("activity_id", 0);
  122. $name = $this->model->getQuery()->getTable();
  123. $tableName = $name . '.';
  124. $groupon = $this->model;
  125. if ($search) {
  126. // 模糊搜索字段
  127. $groupon = $groupon->where(function ($query) use ($search, $tableName) {
  128. $query->where(function ($query) use ($search, $tableName) {
  129. $query->whereExists(function ($query) use ($search, $tableName) {
  130. $goodsName = (new \app\admin\model\shopro\goods\Goods())->getQuery()->getTable();
  131. $query->table($goodsName)->where($goodsName . '.id=' . $tableName . 'goods_id')
  132. ->where('title', 'like', "%{$search}%");
  133. });
  134. })
  135. ->whereOr(function ($query) use ($search, $tableName) { // 用户
  136. $query->whereExists(function ($query) use ($search, $tableName) {
  137. $userTableName = (new \app\admin\model\User())->getQuery()->getTable();
  138. $query->table($userTableName)->where($userTableName . '.id=' . $tableName . 'user_id')
  139. ->where(function ($query) use ($search) {
  140. $query->where('nickname', 'like', "%{$search}%")
  141. ->whereOr('mobile', 'like', "%{$search}%");
  142. });
  143. });
  144. });
  145. });
  146. }
  147. // 活动类型
  148. if ($activity_id) {
  149. $groupon = $groupon->where('activity_id', $activity_id);
  150. }
  151. // 活动状态
  152. if ($status != 'all') {
  153. $status = $status == 'finish' ? ['finish', 'finish-fictitious'] : [$status];
  154. $groupon = $groupon->where('status', 'in', $status);
  155. }
  156. return $groupon;
  157. }
  158. }