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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  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\model\shop\ShopHkLog;
  9. use app\common\server\UrlServer;
  10. use Exception;
  11. use think\facade\Db;
  12. class StoreLogic extends Logic
  13. {
  14. /**
  15. * NOTE: 商家列表
  16. * @author: 张无忌
  17. * @param $get
  18. * @return array|bool
  19. */
  20. public static function lists($get)
  21. {
  22. try {
  23. $where = [
  24. ['del', '=', 0]
  25. ];
  26. if (!empty($get['name']) and $get['name'])
  27. $where[] = ['name', 'like', '%'.$get['name'].'%'];
  28. if (!empty($get['type']) and is_numeric($get['type']))
  29. $where[] = ['type', '=', $get['type']];
  30. if (!empty($get['cid']) and is_numeric($get['cid']))
  31. $where[] = ['cid', '=', $get['cid']];
  32. if (isset($get['is_recommend']) && $get['is_recommend'] != '')
  33. $where[] = ['is_recommend', '=', $get['is_recommend']];
  34. if (isset($get['hksy_type']) && $get['hksy_type'] != '')
  35. $where[] = ['hksy_type', '=', $get['hksy_type']];
  36. if (isset($get['is_run']) && $get['is_run'] != '')
  37. $where[] = ['is_run', '=', $get['is_run']];
  38. if (isset($get['is_freeze']) and $get['is_freeze'] != '')
  39. $where[] = ['is_freeze', '=', $get['is_freeze']];
  40. if (!empty($get['expire_start_time']) and $get['expire_start_time'])
  41. $where[] = ['expire_time', '>=', strtotime($get['expire_start_time'])];
  42. if (!empty($get['expire_end_time']) and $get['expire_end_time'])
  43. $where[] = ['expire_time', '<=', strtotime($get['expire_end_time'])];
  44. $condition = 'del=0';
  45. // 到期状态
  46. if (isset($get['expire_status']) and $get['expire_status'] != '') {
  47. if ($get['expire_status']) {
  48. // 已到期
  49. $where[] = ['expire_time', '<', time()];
  50. $where[] = ['expire_time', '>', 0];
  51. } else {
  52. // 未到期
  53. $condition = "expire_time=0 OR expire_time >". time();
  54. }
  55. }
  56. $model = new Shop();
  57. $lists = $model->field(true)
  58. ->where($where)
  59. ->whereRaw($condition)
  60. ->order('id', 'desc')
  61. ->order('weight', 'asc')
  62. ->with(['category', 'admin'])
  63. ->append(['expire_desc'])
  64. ->paginate([
  65. 'page' => $get['page'],
  66. 'list_rows' => $get['limit'],
  67. 'var_page' => 'page'
  68. ])
  69. ->toArray();
  70. foreach ($lists['data'] as &$item) {
  71. $item['category'] = $item['category']['name'] ?? '未知';
  72. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  73. $item['is_run'] = ShopEnum::getShopIsRunDesc($item['is_run']);
  74. $item['is_freeze'] = ShopEnum::getShopFreezeDesc($item['is_freeze']);
  75. $item['is_recommend'] = ShopEnum::getShopIsRecommendDesc($item['is_recommend']);
  76. $item['account'] = $item['admin']['account'] ?? '';
  77. }
  78. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  79. } catch (Exception $e) {
  80. return ['error'=>$e->getMessage()];
  81. }
  82. }
  83. /**
  84. * NOTE: 商家详细
  85. * @author: 张无忌
  86. * @param $id
  87. * @return array
  88. */
  89. public static function detail($id)
  90. {
  91. $model = new Shop();
  92. $detail = $model->json(['other_qualifications'],true)->findOrEmpty($id)->toArray();
  93. $detail['expire_time'] = $detail['expire_time'] == '无期限' ? 0 : $detail['expire_time'];
  94. $detail['business_license'] = $detail['business_license'] ? UrlServer::getFileUrl($detail['business_license']) : '';
  95. if (!empty($detail['other_qualifications'])) {
  96. foreach ($detail['other_qualifications'] as &$val) {
  97. $val = UrlServer::getFileUrl($val);
  98. }
  99. }
  100. return $detail;
  101. }
  102. public static function getServerGoods($id)
  103. {
  104. $model = new ShopGoods();
  105. $where = [
  106. ['del', '=', 0]
  107. ];
  108. $lists = $model->field(true)
  109. ->where($where)
  110. ->order('sort', 'desc')
  111. ->select()
  112. ->toArray();
  113. return $lists;
  114. }
  115. public static function getAccountInfo($id)
  116. {
  117. $detail = ShopAdmin::field('id,account')->where(['shop_id' => $id, 'root' => 1])->findOrEmpty()->toArray();
  118. return $detail;
  119. }
  120. /**
  121. * NOTE: 新增商家
  122. * @author: 张无忌
  123. * @param $post
  124. * @return bool
  125. */
  126. public static function add($post)
  127. {
  128. Db::startTrans();
  129. try {
  130. // 校验配送方式
  131. self::checkDeliveryType($post);
  132. $hksy_type = $post['hksy_type'] ?? 1;
  133. $hksy_count = $post['hksy_count'] ?? 0;
  134. $op_count = $post['months'] ?? 0;
  135. if ($hksy_type == 1) {
  136. $op_count = 12;
  137. } else {
  138. $hksy_count = 0;
  139. }
  140. $di = \DateInterval::createFromDateString(strval($op_count) . ' months');
  141. $dt = date_create_from_format('Y-m-d H:i:s', date('Y-m-d 00:00:00', time()))->add($di);
  142. $expire_time = $dt->getTimestamp();
  143. // 创建商家
  144. $shop = Shop::create([
  145. 'cid' => $post['cid'],
  146. 'type' => $post['type'],
  147. 'name' => $post['name'],
  148. 'nickname' => $post['nickname'],
  149. 'mobile' => $post['mobile'],
  150. 'logo' => $post['logo'] ?? '',
  151. 'background' => $post['background'] ?? '',
  152. 'license' => $post['license'] ?? '',
  153. 'keywords' => $post['keywords'] ?? '',
  154. 'intro' => $post['intro'] ?? '',
  155. 'weight' => $post['weight'] ?? 0,
  156. 'trade_service_fee' => $post['trade_service_fee'],
  157. 'is_run' => $post['is_run'],
  158. 'is_freeze' => $post['is_freeze'],
  159. 'is_product_audit' => $post['is_product_audit'],
  160. 'is_recommend' => $post['is_recommend'] ?? 0,
  161. // 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
  162. 'expire_time' => $expire_time,
  163. 'province_id' => $post['province_id'] ?? 0,
  164. 'city_id' => $post['city_id'] ?? 0,
  165. 'district_id' => $post['district_id'] ?? 0,
  166. 'address' => $post['address'] ?? '',
  167. 'longitude' => $post['longitude'] ?? '',
  168. 'latitude' => $post['latitude'] ?? '',
  169. 'delivery_type' => $post['delivery_type'] ?? [1],
  170. 'hksy_type' => $hksy_type,
  171. 'hksy_count' => $hksy_count,
  172. ]);
  173. // 创建账号
  174. // 新增商家登录账号
  175. $time = time();
  176. $salt = substr(md5($time . $post['name']), 0, 4);//随机4位密码盐
  177. ShopAdmin::create([
  178. 'root' => 1,
  179. 'shop_id' => $shop->id,
  180. 'name' => '超级管理员',
  181. 'account' => $post['account'],
  182. 'password' => generatePassword($post['password'], $salt),
  183. 'salt' => $salt,
  184. 'role_id' => 0,
  185. 'create_time' => $time,
  186. 'update_time' => $time,
  187. 'disable' => 0,
  188. 'del' => 0
  189. ]);
  190. // 添加用户套餐时间或者数量日志 ZMH 2025-03-24
  191. if ($hksy_type >= 0) {
  192. // 添加用户套餐时间或者数量
  193. $hk = new ShopHkLog();
  194. $hk->shop_id = $shop['id'];
  195. $hk->source_id = 0;
  196. if ($hksy_type == 1) {
  197. $hk->source_type = 100;
  198. $hk->change_count = $hksy_count;
  199. $hk->left_count = $hksy_count;
  200. $hk->remark = '[初始化],赠送操作数量:' . $hksy_count;
  201. } else {
  202. $hk->source_type = 200;
  203. $hk->change_count = $op_count;
  204. $hk->before_date = date('Y-m-d H:i:s', time());
  205. $hk->after_date = date('Y-m-d H:i:s', $dt->getTimestamp());
  206. $hk->remark = '[初始化],赠送月份数量:' . $op_count;
  207. }
  208. $hk->save();
  209. }
  210. Db::commit();
  211. return true;
  212. } catch (Exception $e) {
  213. Db::rollback();
  214. static::$error = $e->getMessage();
  215. return false;
  216. }
  217. }
  218. /**
  219. * NOTE: 编辑商家
  220. * @author: 张无忌
  221. * @param $post
  222. * @return bool
  223. */
  224. public static function edit($post)
  225. {
  226. try {
  227. // 校验配送方式
  228. self::checkDeliveryType($post);
  229. Shop::update([
  230. 'cid' => $post['cid'],
  231. 'type' => $post['type'],
  232. 'name' => $post['name'],
  233. 'nickname' => $post['nickname'],
  234. 'mobile' => $post['mobile'],
  235. 'logo' => $post['logo'] ?? '',
  236. 'keywords' => $post['keywords'] ?? '',
  237. 'intro' => $post['intro'] ?? '',
  238. 'trade_service_fee' => $post['trade_service_fee'],
  239. 'is_run' => $post['is_run'],
  240. 'is_freeze' => $post['is_freeze'],
  241. 'is_product_audit' => $post['is_product_audit'],
  242. 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
  243. 'province_id' => $post['province_id'] ?? 0,
  244. 'city_id' => $post['city_id'] ?? 0,
  245. 'district_id' => $post['district_id'] ?? 0,
  246. 'address' => $post['address'] ?? '',
  247. 'longitude' => $post['longitude'] ?? '',
  248. 'latitude' => $post['latitude'] ?? '',
  249. 'delivery_type' => $post['delivery_type'] ?? [1],
  250. 'business_license' => empty($post['business_license']) ? '' : UrlServer::setFileUrl($post['business_license']),
  251. 'other_qualifications' => isset($post['other_qualifications']) ? json_encode($post['other_qualifications'], JSON_UNESCAPED_UNICODE) : '',
  252. ], ['id'=>$post['id']]);
  253. return true;
  254. } catch (Exception $e) {
  255. static::$error = $e->getMessage();
  256. return false;
  257. }
  258. }
  259. /**
  260. * NOTE: 设置商家
  261. * @author: 张无忌
  262. * @param $post
  263. * @return bool
  264. */
  265. public static function set($post)
  266. {
  267. //判断参数
  268. if((int)$post['number'] < 0){
  269. static::$error = "操作数量不能等于0!";
  270. return false;
  271. }
  272. Db::startTrans();
  273. try {
  274. //操作数大于0
  275. if((int)$post['number'] > 0) {
  276. $number = (int)$post['number'];
  277. //计算
  278. $item = Shop::where(['id' => $post['id']])->find();
  279. if ((int)$item['hksy_type'] === 0) {
  280. //包月
  281. $expire_time = strtotime($item['expire_time']);
  282. if ((int)$post['type'] === 0) {
  283. //增加
  284. $b = $number;
  285. $b_str = '增加';
  286. if ((int)$post['mouth'] === 0) {
  287. //月份
  288. $after_time = strtotime("+" . $number . " months", $expire_time);
  289. $b_str .= $number . '个月';
  290. $b_t = 0;
  291. } else {
  292. //天数
  293. $after_time = strtotime("+" . $number . " day", $expire_time);
  294. $b_str .= $number . '天';
  295. $b_t = 1;
  296. }
  297. } else {
  298. //减少
  299. $b = -$number;
  300. $b_str = '减少';
  301. if ((int)$post['mouth'] === 0) {
  302. //月份
  303. $after_time = strtotime("-" . $number . " months", $expire_time);
  304. $b_str .= $number . '个月';
  305. $b_t = 0;
  306. } else {
  307. //天数
  308. $after_time = strtotime("-" . $number . " day", $expire_time);
  309. $b_str .= $number . '天';
  310. $b_t = 1;
  311. }
  312. }
  313. //操作结果测试
  314. //echo $item['expire_time'].'<br/>';
  315. //echo date("Y-m-d H:i:s",$after_time);die;
  316. } else {
  317. //按量付费
  318. $hksy_count = (int)$item['hksy_count'];
  319. if ((int)$post['type'] === 0) {
  320. //增加
  321. $after_hksy_count = $hksy_count + (int)$number;
  322. $c = $number;
  323. $c_str = '增加次数:' . $number;
  324. } else {
  325. //减少
  326. if ($number > $hksy_count) {
  327. //static::$error = "剩余数量不足于减少!";
  328. //return false;
  329. throw new \think\Exception('剩余数量不足于减少!');
  330. }
  331. $c = -$number;
  332. $c_str = '减少次数:' . $number;
  333. $after_hksy_count = $hksy_count - (int)$number;
  334. }
  335. //测试操作结果
  336. //echo $hksy_count.'<br/>';
  337. //echo $after_hksy_count;die;
  338. }
  339. //增加日志
  340. // 添加用户套餐时间或者数量
  341. $hk = new ShopHkLog();
  342. $hk->shop_id = $item['id'];
  343. $hk->source_id = 0;
  344. if ((int)$item['hksy_type'] === 0) {
  345. //包月
  346. $hk->source_type = 200;
  347. $hk->change_count = $b;
  348. $hk->before_date = date('Y-m-d H:i:s', $expire_time);
  349. $hk->after_date = date('Y-m-d H:i:s', $after_time);
  350. $hk->remark = '[后台操作],' . $b_str;
  351. $hk->dw_type = $b_t; //单位类型
  352. } else {
  353. //按量付费
  354. $hk->source_type = 100;
  355. $hk->change_count = $c;
  356. $hk->left_count = $after_hksy_count;
  357. $hk->remark = '[后台操作],' . $c_str;
  358. $hk->dw_type = 2;
  359. }
  360. $hk->save();
  361. if ((int)$item['hksy_type'] === 0) {
  362. Shop::update([
  363. 'expire_time' => $after_time,
  364. 'is_distribution' => $post['is_distribution'] ?? 0,
  365. 'is_recommend' => $post['is_recommend'] ?? 0,
  366. 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
  367. 'weight' => $post['weight'],
  368. 'tid' => $post['tid']
  369. ], ['id' => $post['id']]);
  370. }else{
  371. Shop::update([
  372. 'hksy_count' => $after_hksy_count,
  373. 'is_distribution' => $post['is_distribution'] ?? 0,
  374. 'is_recommend' => $post['is_recommend'] ?? 0,
  375. 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
  376. 'weight' => $post['weight'],
  377. 'tid' => $post['tid']
  378. ], ['id' => $post['id']]);
  379. }
  380. }else{
  381. Shop::update([
  382. 'is_distribution' => $post['is_distribution'] ?? 0,
  383. 'is_recommend' => $post['is_recommend'] ?? 0,
  384. 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
  385. 'weight' => $post['weight'],
  386. 'tid' => $post['tid']
  387. ], ['id' => $post['id']]);
  388. }
  389. Db::commit();
  390. return true;
  391. } catch (Exception $e) {
  392. Db::rollback();
  393. static::$error = $e->getMessage();
  394. return false;
  395. }
  396. }
  397. /**
  398. * NOTE: 更新账号密码
  399. * @author: 张无忌
  400. * @param $post
  401. * @return bool
  402. */
  403. public static function account($post)
  404. {
  405. Db::startTrans();
  406. try {
  407. if(!isset($post['account']) || empty($post['account'])) {
  408. throw new \think\Exception('账户不能为空');
  409. }
  410. $shopAdmin = ShopAdmin::where([
  411. ['account', '=', trim($post['account'])],
  412. ['shop_id', '<>', $post['id']]
  413. ])->findOrEmpty();
  414. if(!$shopAdmin->isEmpty()) {
  415. throw new \think\Exception('账户已存在,请更换其他名称重试');
  416. }
  417. $shopAdmin = ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->findOrEmpty();
  418. $shopAdminUpdateData = [
  419. 'account' => $post['account'],
  420. 'update_time' => time()
  421. ];
  422. if (!empty($post['password'])) {
  423. $shopAdminUpdateData['password'] = generatePassword($post['password'], $shopAdmin->salt);
  424. }
  425. ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->update($shopAdminUpdateData);
  426. Db::commit();
  427. return true;
  428. } catch (Exception $e) {
  429. Db::rollback();
  430. static::$error = $e->getMessage();
  431. return false;
  432. }
  433. }
  434. /**
  435. * @notes 批量更新商家营业状态或冻结状态
  436. * @param $ids
  437. * @param $field
  438. * @param $value
  439. * @return Shop|false
  440. * @author 段誉
  441. * @date 2022/3/17 10:42
  442. */
  443. public static function batchOperation($ids, $field, $value)
  444. {
  445. try {
  446. $result = Shop::whereIn('id', $ids)->update([
  447. $field => $value,
  448. 'update_time' => time()
  449. ]);
  450. return $result;
  451. } catch (\Exception $e) {
  452. self::$error = $e->getMessage();
  453. return false;
  454. }
  455. }
  456. /**
  457. * @notes 校验配送方式
  458. * @param $post
  459. * @return bool
  460. * @throws \Exception
  461. * @author 段誉
  462. * @date 2022/11/1 11:30
  463. */
  464. public static function checkDeliveryType($post)
  465. {
  466. // 校验配送方式
  467. if (empty($post['delivery_type'])) {
  468. throw new \Exception('至少选择一种配送方式');
  469. }
  470. // 线下自提时,商家地址必填
  471. if (in_array(ShopEnum::DELIVERY_SELF, $post['delivery_type'])) {
  472. if (empty($post['province_id']) || empty($post['city_id']) || empty($post['district_id']) || empty($post['address'])) {
  473. throw new \Exception('线下自提需完善商家地址');
  474. }
  475. }
  476. return true;
  477. }
  478. }