截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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\activity_area;
  20. use app\common\model\activity_area\ActivityAreaGoods;
  21. use app\common\basics\Logic;
  22. use app\common\server\UrlServer;
  23. use think\facade\Db;
  24. /**
  25. * Class GoodsLogic
  26. * @package app\admin\logic\activity_area
  27. */
  28. class GoodsLogic extends Logic
  29. {
  30. /**
  31. * @notes 活动专区商品列表
  32. * @param $get
  33. * @return array
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @author suny
  38. * @date 2021/7/14 9:54 上午
  39. */
  40. public static function lists($get)
  41. {
  42. $where[] = ['AG.del', '=', 0];
  43. if (!isset($get['type'])) {
  44. $get['type'] = 1;
  45. }
  46. switch ($get['type']) {
  47. case 1:
  48. $audit_status = ActivityAreaGoods::AUDIT_STATUS_PASS;
  49. break;
  50. case 0:
  51. $audit_status = ActivityAreaGoods::AUDIT_STATUS_WAIT;
  52. break;
  53. case 2:
  54. $audit_status = ActivityAreaGoods::AUDIT_STATUS_REFUSE;
  55. break;
  56. }
  57. $where[] = ['AG.audit_status', '=', $audit_status];
  58. if (isset($get['shop_name']) && $get['shop_name']) {
  59. $where[] = ['S.name', 'like', '%' . $get['shop_name'] . '%'];
  60. }
  61. if (isset($get['goods_name']) && $get['goods_name']) {
  62. $where[] = ['G.name', 'like', '%' . $get['goods_name'] . '%'];
  63. }
  64. if (isset($get['activity_area']) && $get['activity_area']) {
  65. $where[] = ['AA.id', '=', $get['activity_area']];
  66. }
  67. $count = ActivityAreaGoods::alias('AG')
  68. ->join('activity_area AA', 'AG.activity_area_id = AA.id')
  69. ->join('shop S', 'S.id = AG.shop_id')
  70. ->join('goods G', 'AG.Goods_id = G.id')
  71. ->where($where)
  72. ->count();
  73. $lists = ActivityAreaGoods::alias('AG')
  74. ->join('activity_area AA', 'AG.activity_area_id = AA.id')
  75. ->join('goods G', 'AG.Goods_id = G.id')
  76. ->join('shop S', 'S.id = AG.shop_id')
  77. ->where($where)
  78. ->field('AG.id,AG.goods_id,AG.activity_area_id,AG.audit_status,AG.audit_remark,AA.name as activity_area_name,G.id as gid,G.name,G.image,G.min_price,G.max_price,S.id as sid,S.name as shop_name,S.type')
  79. ->order('AG.id desc')
  80. ->page($get['page'], $get['limit'])
  81. ->select();
  82. return ['count' => $count, 'lists' => $lists];
  83. }
  84. /**
  85. * @notes 获取活动专区商品
  86. * @param $id
  87. * @return \think\Collection
  88. * @throws \think\db\exception\DataNotFoundException
  89. * @throws \think\db\exception\DbException
  90. * @throws \think\db\exception\ModelNotFoundException
  91. * @author suny
  92. * @date 2021/7/14 9:55 上午
  93. */
  94. public static function getActivityAreaGoods($id)
  95. {
  96. return ActivityAreaGoods::where(['del' => 0, 'id' => $id])
  97. ->select();
  98. }
  99. /**
  100. * @notes 审核
  101. * @param $post
  102. * @return ActivityAreaGoods
  103. * @author suny
  104. * @date 2021/7/14 9:55 上午
  105. */
  106. public static function audit($post)
  107. {
  108. $data = [
  109. 'audit_status' => $post['review_status'],
  110. 'audit_remark' => $post['description'],
  111. ];
  112. return ActivityAreaGoods::where(['id' => $post['id']])
  113. ->update($data);
  114. }
  115. /**
  116. * @notes 违规重审
  117. * @param $post
  118. * @return ActivityAreaGoods
  119. * @author suny
  120. * @date 2021/7/14 9:55 上午
  121. */
  122. public static function violation($post)
  123. {
  124. $data = [
  125. 'audit_status' => 2,
  126. 'audit_remark' => $post['description'],
  127. ];
  128. return ActivityAreaGoods::where(['id' => $post['id']])
  129. ->update($data);
  130. }
  131. /**
  132. * @notes 活动专区商品详情
  133. * @param $get
  134. * @return array
  135. * @throws \think\db\exception\DataNotFoundException
  136. * @throws \think\db\exception\DbException
  137. * @throws \think\db\exception\ModelNotFoundException
  138. * @author suny
  139. * @date 2021/7/14 9:55 上午
  140. */
  141. public static function detail($get)
  142. {
  143. $where = [];
  144. $where['AG.id'] = $get['id'];
  145. $info = ActivityAreaGoods::alias('AG')
  146. ->join('activity_area AA', 'AG.activity_area_id = AA.id')
  147. ->join('goods G', 'AG.Goods_id = G.id')
  148. ->join('shop S', 'S.id = AG.shop_id')
  149. ->where($where)
  150. ->field('AG.id,AG.goods_id,AG.activity_area_id,AG.audit_status,AG.audit_remark,AA.name as activity_area_name,AA.image as aimage,G.id as gid,G.name,G.image,G.min_price,G.max_price,S.id as sid,S.name as shop_name,S.type')
  151. ->find()->toArray();
  152. $info['aimage'] = UrlServer::getFileUrl($info['aimage']);
  153. return $info;
  154. }
  155. /**
  156. * @notes 获取各列表数量
  157. * @return array
  158. * @author suny
  159. * @date 2021/7/14 9:55 上午
  160. */
  161. public static function getNum()
  162. {
  163. $unaudit = ActivityAreaGoods::where(['audit_status' => 0, 'del' => 0])->count('id');
  164. $audit_pass = ActivityAreaGoods::where(['audit_status' => 1, 'del' => 0])->count('id');
  165. $audit_refund = ActivityAreaGoods::where(['audit_status' => 2, 'del' => 0])->count('id');
  166. $num = [
  167. 'unaudit' => $unaudit,
  168. 'audit_pass' => $audit_pass,
  169. 'audit_refund' => $audit_refund
  170. ];
  171. return $num;
  172. }
  173. }