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

GoodsLogic.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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\logic\activity_area;
  20. use app\common\model\activity_area\ActivityAreaGoods;
  21. use app\common\basics\Logic;
  22. use think\facade\Db;
  23. /**
  24. * Class GoodsLogic
  25. * @package app\shop\logic\activity_area
  26. */
  27. class GoodsLogic extends Logic
  28. {
  29. /**
  30. * @notes 活动专区商品列表
  31. * @param $get
  32. * @return array
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @author suny
  37. * @date 2021/7/14 10:17 上午
  38. */
  39. public static function lists($get)
  40. {
  41. $where[] = ['AG.del', '=', 0];
  42. $where[] = ['AG.shop_id', '=', $get['shop_id']];
  43. switch ($get['type']) {
  44. case 1:
  45. $audit_status = ActivityAreaGoods::AUDIT_STATUS_PASS;
  46. break;
  47. case 0:
  48. $audit_status = ActivityAreaGoods::AUDIT_STATUS_WAIT;
  49. break;
  50. case 2:
  51. $audit_status = ActivityAreaGoods::AUDIT_STATUS_REFUSE;
  52. break;
  53. }
  54. $where[] = ['AG.audit_status', '=', $audit_status];
  55. if (isset($get['goods_name']) && $get['goods_name']) {
  56. $where[] = ['G.name', 'like', '%' . $get['goods_name'] . '%'];
  57. }
  58. if (isset($get['activity_area']) && $get['activity_area']) {
  59. $where[] = ['AA.id', '=', $get['activity_area']];
  60. }
  61. $count = ActivityAreaGoods::alias('AG')
  62. ->join('activity_area AA', 'AG.activity_area_id = AA.id')
  63. ->join('goods G', 'AG.Goods_id = G.id')
  64. ->where($where)
  65. ->count();
  66. $lists = ActivityAreaGoods::alias('AG')
  67. ->join('activity_area AA', 'AG.activity_area_id = AA.id')
  68. ->join('goods G', 'AG.Goods_id = G.id')
  69. ->where($where)
  70. ->field('AG.id,AG.goods_id,AG.activity_area_id,AG.audit_status,AA.name as activity_area_name,G.name,G.image,G.min_price,G.max_price')
  71. ->order('AG.id desc')
  72. ->select();
  73. return ['count' => $count, 'lists' => $lists];
  74. }
  75. /**
  76. * @notes 获取活动专区商品
  77. * @param $id
  78. * @return \think\Collection
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\DbException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. * @author suny
  83. * @date 2021/7/14 10:18 上午
  84. */
  85. public static function getActivityAreaGoods($id)
  86. {
  87. return ActivityAreaGoods::where(['del' => 0, 'id' => $id])
  88. ->select();
  89. }
  90. /**
  91. * @notes 添加活动商品
  92. * @param $post
  93. * @return int|string
  94. * @author suny
  95. * @date 2021/7/14 10:18 上午
  96. */
  97. public static function add($post)
  98. {
  99. $new = time();
  100. $add_data = [];
  101. $add_data[] = [
  102. 'activity_area_id' => $post['activity_id'],
  103. 'goods_id' => $post['goods_id'][0],
  104. 'item_id' => $post['item_id'][0],
  105. 'shop_id' => $post['shop_id'],
  106. 'audit_status' => 0, //待审核
  107. 'status' => 1, //显示
  108. 'del' => 0,
  109. 'create_time' => $new,
  110. ];
  111. return ActivityAreaGoods::insertAll($add_data);
  112. }
  113. /**
  114. * @notes 删除活动商品
  115. * @param $id
  116. * @return ActivityAreaGoods
  117. * @author suny
  118. * @date 2021/7/14 10:18 上午
  119. */
  120. public static function del($id)
  121. {
  122. $update_data = [
  123. 'update_time' => time(),
  124. 'del' => 1,
  125. ];
  126. return ActivityAreaGoods::where(['id' => $id])->update($update_data);
  127. }
  128. /**
  129. * @notes 编辑活动商品
  130. * @param $post
  131. * @return ActivityAreaGoods
  132. * @author suny
  133. * @date 2021/7/14 10:18 上午
  134. */
  135. public static function edit($post)
  136. {
  137. $new = time();
  138. $update_data = [
  139. 'activity_id' => $post['activity_id'],
  140. 'update_time' => $new,
  141. ];
  142. return ActivityAreaGoods::where(['id' => $post['id'], 'activity_id' => $post['activity_id']])
  143. ->update($update_data);
  144. }
  145. /**
  146. * @notes 获取全部的活动专区
  147. * @return array
  148. * @author suny
  149. * @date 2021/7/14 10:18 上午
  150. */
  151. public static function getActivityList()
  152. {
  153. return Db::name('activity_area')
  154. ->where(['del' => 0])
  155. ->column('name', 'id');
  156. }
  157. /**
  158. * @notes 获取活动商品详情
  159. * @param $goods_id
  160. * @param $activity_id
  161. * @return array|\PDOStatement|string|\think\Collection|\think\model\Collection
  162. * @throws \think\db\exception\DataNotFoundException
  163. * @throws \think\db\exception\ModelNotFoundException
  164. * @throws \think\exception\DbException
  165. * @author suny
  166. * @date 2021/7/14 10:18 上午
  167. */
  168. public static function getActivityGoods($goods_id, $activity_id)
  169. {
  170. $activity_list = Db::name('activity_area_goods')->alias('AG')
  171. ->join('goods_item GI', 'AG.item_id = GI.id')
  172. ->where(['activity_area_id' => $activity_id, 'AG.goods_id' => $goods_id])
  173. ->field('AG.*,GI.price,GI.spec_value_str,GI.image,GI.price')
  174. ->select();
  175. $goods_id = $activity_list[0]['goods_id'];
  176. $goods = Db::name('goods')->where(['del' => 0, 'id' => $goods_id])->field('image,name')->find();
  177. foreach ($activity_list as &$item) {
  178. $item['name'] = $goods['name'];
  179. if (empty($item['image'])) {
  180. $item['image'] = $goods['image'];
  181. }
  182. }
  183. return $activity_list;
  184. }
  185. /**
  186. * @notes 获取各列表数量
  187. * @param $shop_id
  188. * @return array
  189. * @author suny
  190. * @date 2021/7/14 10:18 上午
  191. */
  192. public static function getNum($shop_id)
  193. {
  194. $unaudit = ActivityAreaGoods::where(['audit_status' => 0, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  195. $audit_pass = ActivityAreaGoods::where(['audit_status' => 1, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  196. $audit_refund = ActivityAreaGoods::where(['audit_status' => 2, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  197. $num = [
  198. 'unaudit' => $unaudit,
  199. 'audit_pass' => $audit_pass,
  200. 'audit_refund' => $audit_refund
  201. ];
  202. return $num;
  203. }
  204. }