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

BargainLogic.php 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <?php
  2. namespace app\shop\logic\bargain;
  3. use app\common\basics\Logic;
  4. use app\common\model\bargain\Bargain;
  5. use app\common\model\bargain\BargainItem;
  6. use app\common\model\bargain\BargainKnife;
  7. use app\common\model\bargain\BargainLaunch;
  8. use app\common\model\goods\Goods as GoodsModel;
  9. use app\common\model\user\User;
  10. use app\common\model\order\Order;
  11. use app\common\enum\BargainEnum;
  12. use app\common\model\team\TeamActivity as TeamActivityModel;
  13. use app\common\server\UrlServer;
  14. use app\common\model\seckill\SeckillGoods;
  15. use think\facade\Db;
  16. use think\Model;
  17. /**
  18. * Class BargainLogic
  19. * @package app\shop\logic\bargain
  20. */
  21. class BargainLogic extends Logic
  22. {
  23. /**
  24. * @notes 砍价活动列表
  25. * @param $get
  26. * @return array
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @author suny
  31. * @date 2021/7/14 10:20 上午
  32. */
  33. public static function activity($get)
  34. {
  35. $where = [
  36. ['del', '=', 0],
  37. ['shop_id', '=', $get['shop_id']]
  38. ];
  39. // 查询条件
  40. if (!empty($get['goods_name']) and $get['goods_name'] !== '') {
  41. $goodsModel = new GoodsModel();
  42. $ids = $goodsModel->field('id,name')->where([
  43. ['name', 'like', '%' . $get['goods_name'] . '%']
  44. ])->column('id');
  45. $where[] = ['goods_id', 'in', $ids];
  46. }
  47. if (isset($get['status']) and is_numeric($get['status'])) {
  48. $where[] = ['status', '=', (int)$get['status']];
  49. }
  50. //审核状态
  51. if (isset($get['type']) && $get['type'] != "") {
  52. $where[] = ['audit_status', '=', $get['type']];
  53. } else if ($get['type'] == "") {
  54. $where[] = ['audit_status', '=', 1];
  55. }
  56. $bargainModel = new Bargain();
  57. $count = $bargainModel->where($where)->count('id');
  58. $lists = $bargainModel->field(true)
  59. ->where($where)
  60. ->with(['goods'])
  61. ->append(['status_text'])
  62. ->withCount(['launchPeopleNumber', 'successKnifePeopleNumber', 'knifePeopleNumber'])
  63. ->page($get['page'], $get['limit'])
  64. ->select()->toArray();
  65. foreach ($lists as &$item) {
  66. $item['info']['launch_people_number_count'] = $item['launch_people_number_count'];
  67. $item['info']['success_knife_people_number_count'] = $item['success_knife_people_number_count'];
  68. $item['info']['knife_people_number_count'] = $item['knife_people_number_count'];
  69. $item['goods']['image'] = UrlServer::getFileUrl($item['goods']['image']);
  70. $item['activity_start_time'] = date('Y-m-d H:i:s', $item['activity_start_time']);
  71. $item['activity_end_time'] = date('Y-m-d H:i:s', $item['activity_end_time']);
  72. }
  73. return ['count' => $count, 'lists' => $lists];
  74. }
  75. /**
  76. * @notes 新增砍价活动
  77. * @param $post
  78. * @return bool
  79. * @throws \think\exception\PDOException
  80. * @author suny
  81. * @date 2021/7/14 10:21 上午
  82. */
  83. public static function add($post)
  84. {
  85. Db::startTrans();
  86. try {
  87. // 校验拼团活动是否存在
  88. $teamActivityModel = new TeamActivityModel();
  89. $team = $teamActivityModel->where([
  90. 'goods_id' => intval($post['goods_id']),
  91. 'del' => 0
  92. ])->find();
  93. if ($team) {
  94. static::$error = '商品正在参与拼团活动, 请先移除活动再添加';
  95. return false;
  96. }
  97. //秒杀验证
  98. $seckill_goods = SeckillGoods::where(['goods_id' => intval($post['goods_id']), 'del' => 0])
  99. ->find();
  100. if ($seckill_goods) {
  101. static::$error = '商品正在参与秒杀活动,无法修改';
  102. return false;
  103. }
  104. // 每刀金额(随机 / 固定)
  105. $knife_price = 0;
  106. if ($post['knife_type'] == 1) {
  107. $knife_price = [$post['min_knife_price'], $post['max_knife_price']];
  108. $knife_price = implode(',', $knife_price);
  109. } else {
  110. $knife_price = $post['fixed_knife_price'];
  111. }
  112. // 查出最大低价和最少价格
  113. $bargain_price = [];
  114. foreach ($post['floor_price'] as $key => $value) {
  115. foreach ($value as $K => $item) {
  116. array_push($bargain_price, $item);
  117. }
  118. }
  119. $bargain_max_price = !empty($bargain_price) ? max($bargain_price) : 0;
  120. $bargain_min_price = !empty($bargain_price) ? min($bargain_price) : 0;
  121. // 新增砍价活动
  122. $bargainModel = new Bargain();
  123. $bargain_id = $bargainModel->insertGetId([
  124. 'goods_id' => $post['goods_id'],
  125. 'shop_id' => $post['shop_id'],
  126. 'audit_status' => 0, //待审核
  127. 'time_limit' => $post['time_limit'],
  128. 'activity_start_time' => strtotime($post['activity_start_time']),
  129. 'activity_end_time' => strtotime($post['activity_end_time']),
  130. 'bargain_min_price' => $bargain_min_price,
  131. 'bargain_max_price' => $bargain_max_price,
  132. 'share_title' => empty($post['share_title']) ? '' : $post['share_title'],
  133. 'share_intro' => empty($post['share_intro']) ? '' : $post['share_intro'],
  134. 'payment_where' => $post['payment_where'],
  135. 'knife_type' => $post['knife_type'],
  136. 'knife_price' => $knife_price,
  137. 'status' => $post['status'],
  138. 'del' => 0,
  139. ]);
  140. // 新增砍价商品SKU
  141. $lists = [];
  142. foreach ($post['floor_price'] as $key => $value) {
  143. foreach ($value as $K => $item) {
  144. $lists[] = [
  145. 'bargain_id' => $bargain_id,
  146. 'goods_id' => $key,
  147. 'item_id' => $K,
  148. 'floor_price' => $item,
  149. 'first_knife_price' => $post['first_knife_price'][$key][$K]
  150. ];
  151. }
  152. }
  153. if (!empty($lists)) {
  154. $bargainItemModel = new BargainItem();
  155. $bargainItemModel->saveAll($lists);
  156. }
  157. Db::commit();
  158. return true;
  159. } catch (\Exception $e) {
  160. static::$error = $e->getMessage();
  161. Db::rollback();
  162. return false;
  163. }
  164. }
  165. /**
  166. * @notes 编辑砍价活动
  167. * @param $post
  168. * @return bool
  169. * @throws \think\exception\PDOException
  170. * @author suny
  171. * @date 2021/7/14 10:21 上午
  172. */
  173. public static function edit($post)
  174. {
  175. Db::startTrans();
  176. try {
  177. // 查询商品信息
  178. $goodsModel = new GoodsModel();
  179. $goods = $goodsModel->field('id,name,image')
  180. ->where(['id' => (int)$post['goods_id']])->find();
  181. if (!$goods) {
  182. static::$error = '选择的商品已不存在,可能已被删除';
  183. return false;
  184. }
  185. // 每刀金额(随机 / 固定)
  186. $knife_price = 0;
  187. if ($post['knife_type'] == 1) {
  188. $knife_price = [$post['min_knife_price'], $post['max_knife_price']];
  189. $knife_price = implode(',', $knife_price);
  190. } else {
  191. $knife_price = $post['fixed_knife_price'];
  192. }
  193. // 查出最大低价和最少价格
  194. $bargain_price = [];
  195. foreach ($post['floor_price'] as $key => $value) {
  196. foreach ($value as $K => $item) {
  197. array_push($bargain_price, $item);
  198. }
  199. }
  200. $bargain_max_price = !empty($bargain_price) ? max($bargain_price) : 0;
  201. $bargain_min_price = !empty($bargain_price) ? min($bargain_price) : 0;
  202. // 更新砍价活动
  203. $bargainModel = new Bargain();
  204. $checkAudit = self::checkAudit((int)$post['id']);
  205. if (false === $checkAudit) {
  206. $audit_status = BargainEnum::TO_BE_REVIEWED; //待审核
  207. } else {
  208. $audit_status = BargainEnum::AUDIT_PASS; //审核通过
  209. }
  210. $bargainModel->where(['id' => (int)$post['id']])->update([
  211. 'goods_id' => $post['goods_id'],
  212. 'time_limit' => $post['time_limit'],
  213. 'activity_start_time' => strtotime($post['activity_start_time']),
  214. 'activity_end_time' => strtotime($post['activity_end_time']),
  215. 'bargain_min_price' => $bargain_min_price,
  216. 'bargain_max_price' => $bargain_max_price,
  217. 'share_title' => empty($post['share_title']) ? '' : $post['share_title'],
  218. 'share_intro' => empty($post['share_intro']) ? '' : $post['share_intro'],
  219. 'payment_where' => $post['payment_where'],
  220. 'knife_type' => $post['knife_type'],
  221. 'knife_price' => $knife_price,
  222. 'status' => $post['status'],
  223. 'audit_status' => $audit_status,
  224. ]);
  225. // 删除旧的SKU
  226. $bargainItemModel = new BargainItem();
  227. $bargainItemModel->where(['bargain_id' => (int)$post['id']])->delete();
  228. // 更新砍价商品SKU
  229. $lists = [];
  230. foreach ($post['floor_price'] as $key => $value) {
  231. foreach ($value as $K => $item) {
  232. $lists[] = [
  233. 'bargain_id' => $post['id'],
  234. 'goods_id' => $key,
  235. 'item_id' => $K,
  236. 'floor_price' => $item,
  237. 'first_knife_price' => $post['first_knife_price'][$key][$K]
  238. ];
  239. }
  240. }
  241. if (!empty($lists)) {
  242. $bargainItemModel->saveAll($lists);
  243. }
  244. Db::commit();
  245. return true;
  246. } catch (\Exception $e) {
  247. static::$error = $e->getMessage();
  248. Db::rollback();
  249. return false;
  250. }
  251. }
  252. /**
  253. * @notes 验证审核状态
  254. * @param $id
  255. * @return bool
  256. * @author suny
  257. * @date 2021/7/14 10:21 上午
  258. */
  259. public static function checkAudit($id)
  260. {
  261. $audit_status = Bargain::where('id', $id)->value('audit_status');
  262. if ($audit_status == BargainEnum::TO_BE_REVIEWED || $audit_status == BargainEnum::AUDIT_REFUND) {
  263. return false;
  264. } else {
  265. return true;
  266. }
  267. }
  268. /**
  269. * @notes 获取砍价活动详情
  270. * @param $id
  271. * @return array|Model|null
  272. * @throws \think\db\exception\DataNotFoundException
  273. * @throws \think\db\exception\DbException
  274. * @throws \think\db\exception\ModelNotFoundException
  275. * @author suny
  276. * @date 2021/7/14 10:21 上午
  277. */
  278. public static function getDetail($id)
  279. {
  280. $bargainModel = new Bargain();
  281. $bargainItemModel = new BargainItem();
  282. $detail = $bargainModel->field(true)
  283. ->where(['id' => (int)$id])
  284. ->with(['goods'])
  285. ->find();
  286. $goodItem = $bargainItemModel->field('t.*,gi.id as spec_item_id,
  287. gi.spec_value_str, gi.price as spec_item_price, gi.stock')
  288. ->where(['bargain_id' => (int)$id])
  289. ->alias('t')
  290. ->rightJoin('goods_item gi', 'gi.id = t.item_id')
  291. ->select();
  292. $detail['min_knife_price'] = 0;
  293. $detail['max_knife_price'] = 0;
  294. $detail['fixed_knife_price'] = 0;
  295. if ($detail['knife_type'] == 1) {
  296. $knife_price_arr = explode(',', $detail['knife_price']);
  297. $detail['min_knife_price'] = empty($knife_price_arr[0]) ? 0 : $knife_price_arr[0];
  298. $detail['max_knife_price'] = empty($knife_price_arr[1]) ? 0 : $knife_price_arr[1];
  299. } else {
  300. $detail['fixed_knife_price'] = $detail['knife_price'];
  301. }
  302. // 处理判断商品规格是否已发生变化, 没变化是true, 否则false
  303. $detail['is_goods_item'] = true;
  304. foreach ($goodItem as $item) {
  305. if (!$item['spec_value_str'] || $item['spec_value_str'] == ''
  306. || $item['spec_item_price'] == '') {
  307. $detail['is_goods_item'] = false;
  308. break;
  309. }
  310. }
  311. $detail['item'] = $goodItem;
  312. $detail['goods']['image'] = UrlServer::getFileUrl($detail['goods']['image']);
  313. $detail['activity_start_time'] = date('Y-m-d H:i:s', $detail['activity_start_time']);
  314. $detail['activity_end_time'] = date('Y-m-d H:i:s', $detail['activity_end_time']);
  315. return $detail;
  316. }
  317. /**
  318. * @notes 停止活动
  319. * @param $post
  320. * @return bool
  321. * @throws \think\exception\PDOException
  322. * @author suny
  323. * @date 2021/7/14 10:21 上午
  324. */
  325. public static function stop($post)
  326. {
  327. Db::startTrans();
  328. try {
  329. $bargainModel = new Bargain();
  330. // 切换状态
  331. $bargainModel->where(['id' => (int)$post['id']])
  332. ->update(['status' => 0]);//停止
  333. // 关闭活动未完成的
  334. $bargainLaunchModel = new BargainLaunch();
  335. $bargainLaunchModel->where(['bargain_id' => $post['id'], 'status' => 0])
  336. ->update(['status' => 2]);//砍价失败
  337. Db::commit();
  338. return true;
  339. } catch (\Exception $e) {
  340. static::$error = $e->getMessage();
  341. Db::rollback();
  342. return false;
  343. }
  344. }
  345. /**
  346. * @notes 开启活动
  347. * @param $post
  348. * @return Bargain
  349. * @author suny
  350. * @date 2021/7/14 10:21 上午
  351. */
  352. public static function start($post)
  353. {
  354. $bargainModel = new Bargain();
  355. // 切换状态
  356. return $bargainModel->where(['id' => (int)$post['id']])
  357. ->update(['status' => 1]);//开启
  358. }
  359. /**
  360. * @notes 切换状态
  361. * @param $post
  362. * @return bool
  363. * @throws \think\exception\PDOException
  364. * @author suny
  365. * @date 2021/7/14 10:22 上午
  366. */
  367. public static function switchStatus($post)
  368. {
  369. Db::startTrans();
  370. try {
  371. $bargainModel = new Bargain();
  372. // 切换状态
  373. $bargainModel->where(['id' => (int)$post['id']])
  374. ->update([$post['field'] => $post['status']]);
  375. // 关闭活动未完成的
  376. if ($post['status']) {
  377. $bargainLaunchModel = new BargainLaunch();
  378. $bargainLaunchModel->where(['bargain_id' => $post['id'], 'status' => 0])
  379. ->update(['status' => 2]);//砍价失败
  380. }
  381. Db::commit();
  382. return true;
  383. } catch (\Exception $e) {
  384. static::$error = $e->getMessage();
  385. Db::rollback();
  386. return false;
  387. }
  388. }
  389. /**
  390. * @notes 砍价列表
  391. * @param $get
  392. * @return array
  393. * @throws \think\db\exception\DataNotFoundException
  394. * @throws \think\db\exception\DbException
  395. * @throws \think\db\exception\ModelNotFoundException
  396. * @throws \think\exception\DbException
  397. * @author suny
  398. * @date 2021/7/14 10:22 上午
  399. */
  400. public static function getLaunch($get)
  401. {
  402. // 查询条件
  403. $where = [];
  404. $where[] = ['shop_id', '=', $get['shop_id']];
  405. if (isset($get['bargain_id']) and $get['bargain_id']) {
  406. $where[] = ['bargain_id', '=', (int)$get['bargain_id']];
  407. }
  408. if (isset($get['goods_name']) and $get['goods_name'] !== '') {
  409. $goodsModel = new GoodsModel();
  410. $ids = $goodsModel->field('id,name')->where([
  411. ['name', 'like', '%' . $get['goods_name'] . '%']
  412. ])->column('id');
  413. $where[] = ['goods_id', 'in', $ids];
  414. }
  415. if (isset($get['status']) and is_numeric($get['status'])) {
  416. $where[] = ['status', '=', (int)$get['status']];
  417. }
  418. if (isset($get['launch_start_time']) and $get['launch_start_time'] !== '') {
  419. $where[] = ['launch_start_time', '>=', strtotime($get['launch_start_time'])];
  420. }
  421. if (isset($get['launch_end_time']) and $get['launch_end_time'] !== '') {
  422. $where[] = ['launch_end_time', '<=', strtotime($get['launch_end_time'])];
  423. }
  424. if (isset($get['keyword_type']) and $get['keyword_type'] !== '') {
  425. if (isset($get['keyword']) and $get['keyword'] !== '') {
  426. switch ($get['keyword_type']) {
  427. case 'sn':
  428. $uid = User::where('sn', '=', $get['keyword'])->column('id');
  429. $where[] = ['user_id', 'in', $uid];
  430. break;
  431. case 'nickname':
  432. $uid = User::where('nickname', 'like', '%' . $get['keyword'] . '%')->column('id');
  433. $where[] = ['user_id', 'in', $uid];
  434. break;
  435. }
  436. }
  437. }
  438. $model = new BargainLaunch();
  439. $count = $model->where($where)->count('id');
  440. $lists = $model->field(true)
  441. ->where($where)
  442. ->with(['user.level'])
  443. ->order('id', 'desc')
  444. ->page($get['page'], $get['limit'])
  445. ->select()->toArray();
  446. foreach ($lists as &$item) {
  447. if (!empty($item['user']['avatar'])) {
  448. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  449. }
  450. $item['launch_start_time'] = date('Y-m-d H:i:s', $item['launch_start_time']);
  451. $item['launch_end_time'] = date('Y-m-d H:i:s', $item['launch_end_time']);
  452. $item['domain'] = UrlServer::getFileUrl('/');
  453. $item['status'] = BargainLaunch::getStatusDesc($item['status']);
  454. $item['goods_image'] = $item['goods_snap']['image'] == "" ? $item['goods_snap']['goods_iamge'] : $item['goods_snap']['image'];
  455. }
  456. return ['count' => $count, 'lists' => $lists];
  457. }
  458. /**
  459. * @notes 砍价订单详情
  460. * @param $id
  461. * @return array
  462. * @throws \think\db\exception\DataNotFoundException
  463. * @throws \think\db\exception\DbException
  464. * @throws \think\db\exception\ModelNotFoundException
  465. * @author suny
  466. * @date 2021/7/14 10:22 上午
  467. */
  468. public static function getLaunchDetail($id)
  469. {
  470. $model = new BargainLaunch();
  471. $detail = $model->field(true)
  472. ->where(['id' => (int)$id])
  473. ->with(['user.level'])
  474. ->find()->toArray();
  475. $detail['domain'] = UrlServer::getFileUrl();
  476. $detail['launch_start_time'] = date('Y-m-d H:i:s', $detail['launch_start_time']);
  477. $detail['launch_end_time'] = date('Y-m-d H:i:s', $detail['launch_end_time']);
  478. $detail['payment_where'] = $detail['bargain_snap']['payment_where'] == 1 ? '砍到底价可购买' : '任意金额可购买';
  479. $detail['status'] = BargainLaunch::getStatusDesc($detail['status']);
  480. return $detail;
  481. }
  482. /**
  483. * @notes 砍价订单
  484. * @param $launch_id
  485. * @param $get
  486. * @return array
  487. * @throws \think\db\exception\DataNotFoundException
  488. * @throws \think\db\exception\DbException
  489. * @throws \think\db\exception\ModelNotFoundException
  490. * @author suny
  491. * @date 2021/7/14 10:22 上午
  492. */
  493. public static function getKnifeOrderRecord($launch_id, $get)
  494. {
  495. $model = new BargainLaunch();
  496. $count = $model->where(['id' => (int)$launch_id])
  497. ->where('order_id', '>', 0)->count('id');
  498. $lists = $model->field(true)
  499. ->where(['id' => (int)$launch_id])
  500. ->where('order_id', '>', 0)
  501. ->with(['user.level', 'order'])
  502. ->page($get['page'], $get['limit'])
  503. ->select();
  504. foreach ($lists as &$item) {
  505. $item['order_status'] = Order::getOrderStatus($item['order']['order_status']);
  506. }
  507. return ['count' => $count, 'lists' => $lists];
  508. }
  509. /**
  510. * @notes 砍价记录
  511. * @param $launch_id
  512. * @param $get
  513. * @return array
  514. * @throws \think\db\exception\DataNotFoundException
  515. * @throws \think\db\exception\DbException
  516. * @throws \think\db\exception\ModelNotFoundException
  517. * @author suny
  518. * @date 2021/7/14 10:22 上午
  519. */
  520. public static function getKnifeRecord($launch_id, $get)
  521. {
  522. $model = new BargainKnife();
  523. $count = $model->where(['launch_id' => (int)$launch_id])->count();
  524. $lists = $model->field(true)
  525. ->where(['launch_id' => (int)$launch_id])
  526. ->with(['user.level'])
  527. ->page($get['page'], $get['limit'])
  528. ->select();
  529. foreach ($lists as &$item) {
  530. $item['help_time'] = date('Y-m-d H:i:s', $item['help_time']);
  531. $item['help_price'] = '¥' . $item['help_price'];
  532. $item['surplus_price'] = '¥' . $item['surplus_price'];
  533. }
  534. return ['count' => $count, 'lists' => $lists];
  535. }
  536. /**
  537. * @notes 砍价详情
  538. * @param $get
  539. * @return array
  540. * @throws \think\db\exception\DataNotFoundException
  541. * @throws \think\db\exception\DbException
  542. * @throws \think\db\exception\ModelNotFoundException
  543. * @author suny
  544. * @date 2021/7/14 10:22 上午
  545. */
  546. public static function detail($get)
  547. {
  548. $where = [];
  549. $where['b.id'] = $get['id'];
  550. $info = Bargain::alias('b')
  551. ->join('goods g', 'b.goods_id = g.id')
  552. ->join('shop s', 's.id = b.shop_id')
  553. ->where($where)
  554. ->field('b.id,b.goods_id,b.audit_status,b.audit_remark,b.time_limit,b.payment_where,b.share_title,b.share_intro,g.image,g.name,g.min_price,g.max_price,s.id as sid,s.name as shop_name,s.type')
  555. ->find()->toArray();
  556. switch ($info['type']) {
  557. case 1 :
  558. $info['type'] = '官方自营';
  559. break;
  560. case 2 :
  561. $info['type'] = '入驻商家';
  562. break;
  563. }
  564. switch ($info['audit_status']) {
  565. case 0 :
  566. $info['audit_status'] = '待审核';
  567. break;
  568. case 1 :
  569. $info['audit_status'] = '审核通过';
  570. break;
  571. case 2 :
  572. $info['audit_status'] = '审核拒绝';
  573. break;
  574. }
  575. $info['image'] = UrlServer::getFileUrl($info['image']);
  576. return $info;
  577. }
  578. /**
  579. * @notes 删除
  580. * @param int $id
  581. * @return bool
  582. * @throws \think\exception\PDOException
  583. * @author suny
  584. * @date 2021/7/14 10:22 上午
  585. */
  586. public static function softDelete(int $id)
  587. {
  588. Db::startTrans();
  589. try {
  590. $bargainModel = new Bargain();
  591. $bargainModel->where(['id' => (int)$id])->update(['del' => 1]);
  592. // 关闭活动未完成的
  593. $bargainLaunchModel = new BargainLaunch();
  594. $bargainLaunchModel->where(['bargain_id' => $id, 'status' => 0])
  595. ->update(['status' => 2]);
  596. Db::commit();
  597. return true;
  598. } catch (\Exception $e) {
  599. Db::rollback();
  600. static::$error = $e->getMessage();
  601. return false;
  602. }
  603. }
  604. /**
  605. * @notes 关闭砍价
  606. * @param $id
  607. * @return BargainLaunch
  608. * @author suny
  609. * @date 2021/7/14 10:22 上午
  610. */
  611. public static function close($id)
  612. {
  613. $data = [
  614. 'launch_end_time' => time(),
  615. 'status' => BargainEnum::STATUS_FAIL,
  616. ];
  617. return BargainLaunch::where('id', $id)->update($data);
  618. }
  619. /**
  620. * @notes 获取各列表数量
  621. * @param $shop_id
  622. * @return array
  623. * @author suny
  624. * @date 2021/7/14 10:23 上午
  625. */
  626. public static function getNum($shop_id)
  627. {
  628. $all = Bargain::where(['del' => 0, 'shop_id' => $shop_id])->count('id');
  629. $unaudit = Bargain::where(['audit_status' => 0, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  630. $audit_pass = Bargain::where(['audit_status' => 1, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  631. $audit_refund = Bargain::where(['audit_status' => 2, 'del' => 0, 'shop_id' => $shop_id])->count('id');
  632. $num = [
  633. 'all' => $all,
  634. 'unaudit' => $unaudit,
  635. 'audit_pass' => $audit_pass,
  636. 'audit_refund' => $audit_refund
  637. ];
  638. return $num;
  639. }
  640. }