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

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