截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ShopLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\GoodsEnum;
  5. use app\common\enum\ShopAdEnum;
  6. use app\common\enum\ShopEnum;
  7. use app\common\logic\QrCodeLogic;
  8. use app\common\model\dev\DevRegion;
  9. use app\common\model\shop\ShopAd;
  10. use app\common\server\ConfigServer;
  11. use app\common\server\UrlServer;
  12. use app\common\model\goods\Goods;
  13. use app\common\model\shop\Shop;
  14. use app\common\model\shop\ShopFollow;
  15. use think\facade\Event;
  16. class ShopLogic extends Logic
  17. {
  18. /**
  19. * 获取店铺信息
  20. */
  21. public static function getShopInfo($shopId, $userId, $params = [])
  22. {
  23. // 记录统计信息(访问商铺用户量)
  24. Event::listen('ShopStat', 'app\common\listener\ShopStat');
  25. event('ShopStat', $shopId);
  26. $where = [
  27. 'del' => 0,
  28. 'id' => $shopId
  29. ];
  30. $field = [
  31. 'id', 'create_time', 'name', 'logo', 'background',
  32. 'type', 'score', 'star', 'intro',
  33. 'visited_num', 'cover', 'banner', 'is_freeze',
  34. 'is_run', 'expire_time',
  35. 'province_id', 'city_id', 'district_id', 'address',
  36. 'run_start_time', 'run_end_time', 'weekdays',
  37. ];
  38. $shop = Shop::field($field)
  39. ->where($where)
  40. ->append([ 'type_desc', 'is_expire' ])
  41. ->findOrEmpty();
  42. if($shop->isEmpty()) {
  43. return [];
  44. }else{
  45. $shop = $shop->toArray();
  46. }
  47. //
  48. $shop['logo'] = UrlServer::getFileUrl($shop['logo'] ? : ShopEnum::DEFAULT_LOGO);
  49. $shop['background'] = UrlServer::getFileUrl($shop['background'] ? : ShopEnum::DEFAULT_BG);
  50. $shop['cover'] = UrlServer::getFileUrl($shop['cover'] ? :ShopEnum::DEFAULT_COVER);
  51. $shop['banner'] = UrlServer::getFileUrl($shop['banner'] ? : ShopEnum::DEFAULT_BANNER);
  52. $shop['run_start_time'] = $shop['run_start_time'] ? date('H:i:s', $shop['run_start_time']) : '';
  53. $shop['run_end_time'] = $shop['run_end_time'] ? date('H:i:s', $shop['run_end_time']) : '';
  54. $shop['province'] = DevRegion::getAreaName($shop['province_id']);
  55. $shop['city'] = DevRegion::getAreaName($shop['city_id']);
  56. $shop['district'] = DevRegion::getAreaName($shop['district_id']);
  57. $shop['qr_code'] = (new QrCodeLogic)->shopQrCode($shop['id'], $params['terminal'] ?? '');
  58. // 在售商品
  59. // 销售中商品:未删除/审核通过/已上架
  60. $onSaleWhere = [
  61. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  62. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  63. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  64. ];
  65. $shop['on_sale_count'] = Goods::where($onSaleWhere)->where('shop_id', $shopId)->count();
  66. // 店铺推荐商品
  67. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  68. ->where($onSaleWhere)
  69. ->where([
  70. 'shop_id' => $shop['id'],
  71. 'is_recommend' => 1, // 推荐商品
  72. ])
  73. ->limit(9)
  74. ->select()
  75. ->toArray();
  76. // 用户是否关注店铺
  77. $shop['shop_follow_status'] = 0;
  78. if($userId) { // 用户已登录
  79. $shopFollow = ShopFollow::where(['user_id'=>$userId, 'shop_id'=>$shopId])->findOrEmpty();
  80. if(!$shopFollow->isEmpty()) {
  81. $shop['shop_follow_status'] = $shopFollow['status'];
  82. }
  83. }
  84. $shop['follow_num'] = ShopFollow::where(['shop_id' => $shopId,'status' => 1])->count('id');
  85. $image = ConfigServer::get('shop_customer_service', 'image', '', $shopId);
  86. $shop['customer_image'] = $image ? UrlServer::getFileUrl($image) : '';
  87. $shop['customer_wechat'] = ConfigServer::get('shop_customer_service', 'wechat', '', $shopId);
  88. $shop['customer_phone'] = ConfigServer::get('shop_customer_service', 'phone', '', $shopId);
  89. // 店铺广告
  90. $adWhere = [
  91. [ 'shop_id', '=', $shopId ],
  92. [ 'status', '=', 1 ],
  93. ];
  94. $shop['ad'] = [
  95. 'pc' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_PC)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  96. 'mobile' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_MOBILE)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  97. ];
  98. return $shop;
  99. }
  100. /**
  101. * 店铺列表
  102. */
  103. public static function getShopList($get)
  104. {
  105. $where = [
  106. ['is_freeze', '=', 0], // 未冻结
  107. ['del', '=', 0], // 未删除
  108. ['is_run', '=', 1], // 未暂停营业
  109. ];
  110. // 店铺名称
  111. if(isset($get['name']) && !empty($get['name'])) {
  112. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  113. }
  114. // 主营类目
  115. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  116. $where[] = ['cid', '=', $get['shop_cate_id']];
  117. }
  118. $order = [
  119. 'weight' => 'asc',
  120. 'score' => 'desc',
  121. 'id' => 'desc'
  122. ];
  123. $list = Shop::field('id,type,name,logo,background,visited_num,cover,banner')
  124. ->where($where)
  125. // 无限期 或 未到期
  126. ->whereRaw('expire_time =0 OR expire_time > '. time())
  127. ->order($order)
  128. ->page($get['page_no'], $get['page_size'])
  129. ->select()
  130. ->toArray();
  131. $count = Shop::where($where)
  132. // 无限期 或 未到期
  133. ->whereRaw('expire_time =0 OR expire_time > '. time())
  134. ->count();
  135. $onSaleWhere = [
  136. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  137. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  138. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  139. ];
  140. foreach($list as &$shop) {
  141. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  142. ->where($onSaleWhere)
  143. ->where([
  144. 'shop_id' => $shop['id'],
  145. ])
  146. ->limit(10)
  147. ->select()
  148. ->toArray();
  149. $shop['on_sale_goods'] = count($shop['goods_list']);
  150. // logo及背景图
  151. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  152. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  153. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  154. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  155. }
  156. $more = is_more($count, $get['page_no'], $get['page_size']);
  157. $data = [
  158. 'list' => $list,
  159. 'count' => $count,
  160. 'more' => $more,
  161. 'page_no' => $get['page_no'],
  162. 'page_isze' => $get['page_size']
  163. ];
  164. return $data;
  165. }
  166. /**
  167. * @notes 附近店铺列表
  168. * @param $get
  169. * @return array
  170. * @throws \think\db\exception\DataNotFoundException
  171. * @throws \think\db\exception\DbException
  172. * @throws \think\db\exception\ModelNotFoundException
  173. * @author ljj
  174. * @date 2022/9/20 4:29 下午
  175. */
  176. public static function getNearbyShops($get)
  177. {
  178. $where = [
  179. ['is_freeze', '=', 0], // 未冻结
  180. ['del', '=', 0], // 未删除
  181. ['is_run', '=', 1], // 未暂停营业
  182. ['city_id', '=', $get['city_id']],
  183. ];
  184. // 店铺名称
  185. if(isset($get['name']) && !empty($get['name'])) {
  186. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  187. }
  188. // 主营类目
  189. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  190. $where[] = ['cid', '=', $get['shop_cate_id']];
  191. }
  192. $city = DevRegion::where('id',$get['city_id'])->field('db09_lng,db09_lat')->findOrEmpty()->toArray();
  193. $list = Shop::field('id,name,logo,background,visited_num,cover,banner,st_distance_sphere(point('.$city['db09_lng'].','.$city['db09_lat'].'),point(longitude, latitude)) as distance')
  194. ->where($where)
  195. // 无限期 或 未到期
  196. ->whereRaw('expire_time =0 OR expire_time > '. time())
  197. ->order('distance asc')
  198. ->page($get['page_no'], $get['page_size'])
  199. ->select()
  200. ->toArray();
  201. $count = Shop::where($where)
  202. // 无限期 或 未到期
  203. ->whereRaw('expire_time =0 OR expire_time > '. time())
  204. ->count();
  205. $onSaleWhere = [
  206. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  207. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  208. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  209. ];
  210. foreach($list as &$shop) {
  211. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  212. ->where($onSaleWhere)
  213. ->where([
  214. 'shop_id' => $shop['id'],
  215. ])
  216. ->select()
  217. ->toArray();
  218. $shop['on_sale_goods'] = count($shop['goods_list']);
  219. // logo及背景图
  220. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  221. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  222. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  223. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  224. //转换距离单位
  225. if ($shop['distance'] < 1000) {
  226. $shop['distance'] = round($shop['distance']).'m';
  227. }else {
  228. $shop['distance'] = round($shop['distance'] / 1000,2).'km';
  229. }
  230. }
  231. $more = is_more($count, $get['page_no'], $get['page_size']);
  232. $data = [
  233. 'list' => $list,
  234. 'count' => $count,
  235. 'more' => $more,
  236. 'page_no' => $get['page_no'],
  237. 'page_isze' => $get['page_size']
  238. ];
  239. return $data;
  240. }
  241. }