截流自动化的商城平台
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.

StoreLogic.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <?php
  2. namespace app\admin\logic\shop;
  3. use app\common\basics\Logic;
  4. use app\common\enum\ShopEnum;
  5. use app\common\model\shop\Shop;
  6. use app\common\model\shop\ShopAdmin;
  7. use app\common\model\shop\ShopGoods;
  8. use app\common\server\UrlServer;
  9. use Exception;
  10. use think\facade\Db;
  11. class StoreLogic extends Logic
  12. {
  13. /**
  14. * NOTE: 商家列表
  15. * @author: 张无忌
  16. * @param $get
  17. * @return array|bool
  18. */
  19. public static function lists($get)
  20. {
  21. try {
  22. $where = [
  23. ['del', '=', 0]
  24. ];
  25. if (!empty($get['name']) and $get['name'])
  26. $where[] = ['name', 'like', '%'.$get['name'].'%'];
  27. if (!empty($get['type']) and is_numeric($get['type']))
  28. $where[] = ['type', '=', $get['type']];
  29. if (!empty($get['cid']) and is_numeric($get['cid']))
  30. $where[] = ['cid', '=', $get['cid']];
  31. if (isset($get['is_recommend']) && $get['is_recommend'] != '')
  32. $where[] = ['is_recommend', '=', $get['is_recommend']];
  33. if (isset($get['is_run']) && $get['is_run'] != '')
  34. $where[] = ['is_run', '=', $get['is_run']];
  35. if (isset($get['is_freeze']) and $get['is_freeze'] != '')
  36. $where[] = ['is_freeze', '=', $get['is_freeze']];
  37. if (!empty($get['expire_start_time']) and $get['expire_start_time'])
  38. $where[] = ['expire_time', '>=', strtotime($get['expire_start_time'])];
  39. if (!empty($get['expire_end_time']) and $get['expire_end_time'])
  40. $where[] = ['expire_time', '<=', strtotime($get['expire_end_time'])];
  41. $condition = 'del=0';
  42. // 到期状态
  43. if (isset($get['expire_status']) and $get['expire_status'] != '') {
  44. if ($get['expire_status']) {
  45. // 已到期
  46. $where[] = ['expire_time', '<', time()];
  47. $where[] = ['expire_time', '>', 0];
  48. } else {
  49. // 未到期
  50. $condition = "expire_time=0 OR expire_time >". time();
  51. }
  52. }
  53. $model = new Shop();
  54. $lists = $model->field(true)
  55. ->where($where)
  56. ->whereRaw($condition)
  57. ->order('id', 'desc')
  58. ->order('weight', 'asc')
  59. ->with(['category', 'admin'])
  60. ->append(['expire_desc'])
  61. ->paginate([
  62. 'page' => $get['page'],
  63. 'list_rows' => $get['limit'],
  64. 'var_page' => 'page'
  65. ])
  66. ->toArray();
  67. foreach ($lists['data'] as &$item) {
  68. $item['category'] = $item['category']['name'] ?? '未知';
  69. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  70. $item['is_run'] = ShopEnum::getShopIsRunDesc($item['is_run']);
  71. $item['is_freeze'] = ShopEnum::getShopFreezeDesc($item['is_freeze']);
  72. $item['is_recommend'] = ShopEnum::getShopIsRecommendDesc($item['is_recommend']);
  73. $item['account'] = $item['admin']['account'] ?? '';
  74. }
  75. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  76. } catch (Exception $e) {
  77. return ['error'=>$e->getMessage()];
  78. }
  79. }
  80. /**
  81. * NOTE: 商家详细
  82. * @author: 张无忌
  83. * @param $id
  84. * @return array
  85. */
  86. public static function detail($id)
  87. {
  88. $model = new Shop();
  89. $detail = $model->json(['other_qualifications'],true)->findOrEmpty($id)->toArray();
  90. $detail['expire_time'] = $detail['expire_time'] == '无期限' ? 0 : $detail['expire_time'];
  91. $detail['business_license'] = $detail['business_license'] ? UrlServer::getFileUrl($detail['business_license']) : '';
  92. if (!empty($detail['other_qualifications'])) {
  93. foreach ($detail['other_qualifications'] as &$val) {
  94. $val = UrlServer::getFileUrl($val);
  95. }
  96. }
  97. return $detail;
  98. }
  99. public static function getServerGoods($id)
  100. {
  101. $model = new ShopGoods();
  102. $where = [
  103. ['del', '=', 0]
  104. ];
  105. $lists = $model->field(true)
  106. ->where($where)
  107. ->order('sort', 'desc')
  108. ->select()
  109. ->toArray();
  110. return $lists;
  111. }
  112. public static function getAccountInfo($id)
  113. {
  114. $detail = ShopAdmin::field('id,account')->where(['shop_id' => $id, 'root' => 1])->findOrEmpty()->toArray();
  115. return $detail;
  116. }
  117. /**
  118. * NOTE: 新增商家
  119. * @author: 张无忌
  120. * @param $post
  121. * @return bool
  122. */
  123. public static function add($post)
  124. {
  125. Db::startTrans();
  126. try {
  127. // 校验配送方式
  128. self::checkDeliveryType($post);
  129. // 创建商家
  130. $shop = Shop::create([
  131. 'cid' => $post['cid'],
  132. 'type' => $post['type'],
  133. 'name' => $post['name'],
  134. 'nickname' => $post['nickname'],
  135. 'mobile' => $post['mobile'],
  136. 'logo' => $post['logo'] ?? '',
  137. 'background' => $post['background'] ?? '',
  138. 'license' => $post['license'] ?? '',
  139. 'keywords' => $post['keywords'] ?? '',
  140. 'intro' => $post['intro'] ?? '',
  141. 'weight' => $post['weight'] ?? 0,
  142. 'trade_service_fee' => $post['trade_service_fee'],
  143. 'is_run' => $post['is_run'],
  144. 'is_freeze' => $post['is_freeze'],
  145. 'is_product_audit' => $post['is_product_audit'],
  146. 'is_recommend' => $post['is_recommend'] ?? 0,
  147. 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
  148. 'province_id' => $post['province_id'] ?? 0,
  149. 'city_id' => $post['city_id'] ?? 0,
  150. 'district_id' => $post['district_id'] ?? 0,
  151. 'address' => $post['address'] ?? '',
  152. 'longitude' => $post['longitude'] ?? '',
  153. 'latitude' => $post['latitude'] ?? '',
  154. 'delivery_type' => $post['delivery_type'] ?? [1]
  155. ]);
  156. // 创建账号
  157. // 新增商家登录账号
  158. $time = time();
  159. $salt = substr(md5($time . $post['name']), 0, 4);//随机4位密码盐
  160. ShopAdmin::create([
  161. 'root' => 1,
  162. 'shop_id' => $shop->id,
  163. 'name' => '超级管理员',
  164. 'account' => $post['account'],
  165. 'password' => generatePassword($post['password'], $salt),
  166. 'salt' => $salt,
  167. 'role_id' => 0,
  168. 'create_time' => $time,
  169. 'update_time' => $time,
  170. 'disable' => 0,
  171. 'del' => 0
  172. ]);
  173. Db::commit();
  174. return true;
  175. } catch (Exception $e) {
  176. Db::rollback();
  177. static::$error = $e->getMessage();
  178. return false;
  179. }
  180. }
  181. /**
  182. * NOTE: 编辑商家
  183. * @author: 张无忌
  184. * @param $post
  185. * @return bool
  186. */
  187. public static function edit($post)
  188. {
  189. try {
  190. // 校验配送方式
  191. self::checkDeliveryType($post);
  192. Shop::update([
  193. 'cid' => $post['cid'],
  194. 'type' => $post['type'],
  195. 'name' => $post['name'],
  196. 'nickname' => $post['nickname'],
  197. 'mobile' => $post['mobile'],
  198. 'logo' => $post['logo'] ?? '',
  199. 'keywords' => $post['keywords'] ?? '',
  200. 'intro' => $post['intro'] ?? '',
  201. 'trade_service_fee' => $post['trade_service_fee'],
  202. 'is_run' => $post['is_run'],
  203. 'is_freeze' => $post['is_freeze'],
  204. 'is_product_audit' => $post['is_product_audit'],
  205. 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
  206. 'province_id' => $post['province_id'] ?? 0,
  207. 'city_id' => $post['city_id'] ?? 0,
  208. 'district_id' => $post['district_id'] ?? 0,
  209. 'address' => $post['address'] ?? '',
  210. 'longitude' => $post['longitude'] ?? '',
  211. 'latitude' => $post['latitude'] ?? '',
  212. 'delivery_type' => $post['delivery_type'] ?? [1],
  213. 'business_license' => empty($post['business_license']) ? '' : UrlServer::setFileUrl($post['business_license']),
  214. 'other_qualifications' => isset($post['other_qualifications']) ? json_encode($post['other_qualifications'], JSON_UNESCAPED_UNICODE) : '',
  215. ], ['id'=>$post['id']]);
  216. return true;
  217. } catch (Exception $e) {
  218. static::$error = $e->getMessage();
  219. return false;
  220. }
  221. }
  222. /**
  223. * NOTE: 设置商家
  224. * @author: 张无忌
  225. * @param $post
  226. * @return bool
  227. */
  228. public static function set($post)
  229. {
  230. try {
  231. Shop::update([
  232. 'is_distribution' => $post['is_distribution'] ?? 0,
  233. 'is_recommend' => $post['is_recommend'] ?? 0,
  234. 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
  235. 'weight' => $post['weight'],
  236. 'tid' => $post['tid']
  237. ], ['id'=>$post['id']]);
  238. return true;
  239. } catch (Exception $e) {
  240. static::$error = $e->getMessage();
  241. return false;
  242. }
  243. }
  244. /**
  245. * NOTE: 更新账号密码
  246. * @author: 张无忌
  247. * @param $post
  248. * @return bool
  249. */
  250. public static function account($post)
  251. {
  252. Db::startTrans();
  253. try {
  254. if(!isset($post['account']) || empty($post['account'])) {
  255. throw new \think\Exception('账户不能为空');
  256. }
  257. $shopAdmin = ShopAdmin::where([
  258. ['account', '=', trim($post['account'])],
  259. ['shop_id', '<>', $post['id']]
  260. ])->findOrEmpty();
  261. if(!$shopAdmin->isEmpty()) {
  262. throw new \think\Exception('账户已存在,请更换其他名称重试');
  263. }
  264. $shopAdmin = ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->findOrEmpty();
  265. $shopAdminUpdateData = [
  266. 'account' => $post['account'],
  267. 'update_time' => time()
  268. ];
  269. if (!empty($post['password'])) {
  270. $shopAdminUpdateData['password'] = generatePassword($post['password'], $shopAdmin->salt);
  271. }
  272. ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->update($shopAdminUpdateData);
  273. Db::commit();
  274. return true;
  275. } catch (Exception $e) {
  276. Db::rollback();
  277. static::$error = $e->getMessage();
  278. return false;
  279. }
  280. }
  281. /**
  282. * @notes 批量更新商家营业状态或冻结状态
  283. * @param $ids
  284. * @param $field
  285. * @param $value
  286. * @return Shop|false
  287. * @author 段誉
  288. * @date 2022/3/17 10:42
  289. */
  290. public static function batchOperation($ids, $field, $value)
  291. {
  292. try {
  293. $result = Shop::whereIn('id', $ids)->update([
  294. $field => $value,
  295. 'update_time' => time()
  296. ]);
  297. return $result;
  298. } catch (\Exception $e) {
  299. self::$error = $e->getMessage();
  300. return false;
  301. }
  302. }
  303. /**
  304. * @notes 校验配送方式
  305. * @param $post
  306. * @return bool
  307. * @throws \Exception
  308. * @author 段誉
  309. * @date 2022/11/1 11:30
  310. */
  311. public static function checkDeliveryType($post)
  312. {
  313. // 校验配送方式
  314. if (empty($post['delivery_type'])) {
  315. throw new \Exception('至少选择一种配送方式');
  316. }
  317. // 线下自提时,商家地址必填
  318. if (in_array(ShopEnum::DELIVERY_SELF, $post['delivery_type'])) {
  319. if (empty($post['province_id']) || empty($post['city_id']) || empty($post['district_id']) || empty($post['address'])) {
  320. throw new \Exception('线下自提需完善商家地址');
  321. }
  322. }
  323. return true;
  324. }
  325. }