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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\FootprintEnum;
  5. use app\common\model\coupon\Coupon;
  6. use app\common\model\coupon\CouponGoods;
  7. use app\common\model\coupon\CouponList;
  8. use app\common\model\goods\Goods;
  9. use app\common\model\Cart;
  10. use app\common\model\goods\GoodsItem;
  11. class CouponLogic extends Logic
  12. {
  13. public static function getCouponList($get)
  14. {
  15. // 未删除 & 上架中 & 发放时间内
  16. $where = [
  17. ['del', '=', 0],
  18. ['status', '=', 1],
  19. ['send_time_start', '<=', time()],
  20. ['send_time_end', '>=', time()],
  21. ['get_type', '=', 1], // 直接领取
  22. ];
  23. if(isset($get['goods_id'])) {
  24. $shop_id = Goods::where('id', $get['goods_id'])->value('shop_id');
  25. $where[] = ['shop_id', '=', $shop_id];
  26. }
  27. if(isset($get['shop_id'])) {
  28. $where[] = ['shop_id', '=', $get['shop_id']];
  29. }
  30. // 券类型 type all-全部(默认) shop-店铺券 platform-平台通用券
  31. if(isset($get['type']) && !empty($get['type'])) {
  32. switch ($get['type']) {
  33. case 'shop':
  34. $where[] = ['shop_id', '<>', 0];
  35. break;
  36. case 'platform':
  37. $where[] = ['shop_id', '=', 0]; // 0 代表平台券
  38. break;
  39. }
  40. }
  41. $lists = Coupon::field(true)
  42. ->with('shop')
  43. ->where($where)
  44. ->select()
  45. ->toArray();
  46. // 过滤没有库存的优惠券
  47. foreach($lists as $key => &$item) {
  48. if($item['send_total_type'] == 2) { // 限制张数
  49. // 已发放数量
  50. $already_issue = CouponList::where(['del'=>0, 'coupon_id'=>$item['id']])->count();
  51. if($already_issue >= $item['send_total']) {
  52. // 已发完,前端不展示
  53. unset($lists[$key]);
  54. // 下一轮循环
  55. continue;
  56. }
  57. }
  58. // === 拼装信息
  59. // 小数点去0
  60. $item['money'] = clearZero($item['money']);
  61. $item['condition_money'] = clearZero($item['condition_money']);
  62. // 优惠券名称
  63. $item['coupon_name'] = $item['shop']['name'].$item['name'];
  64. // 使用门槛
  65. switch($item['condition_type']) {
  66. case 1:
  67. $item['condition_type_desc'] = '无门槛';
  68. break;
  69. case 2:
  70. $item['condition_type_desc'] = "满{$item['condition_money']}减{$item['money']}";
  71. break;
  72. }
  73. // 用券时间
  74. switch($item['use_time_type']) {
  75. case 1:
  76. $item['user_time_desc'] = date('Y-m-d H:i:s',$item['use_time_start']). ' 至 ' . date('Y-m-d H:i:s', $item['use_time_end']);
  77. break;
  78. case 2:
  79. $item['user_time_desc'] = "领取当天{$item['use_time']}天内可用";
  80. break;
  81. case 3:
  82. $item['user_time_desc'] = "领取次日{$item['use_time']}天内可用";
  83. break;
  84. }
  85. // 使用场景
  86. switch($item['use_goods_type']) {
  87. case 1:
  88. $item['use_scene_desc'] = $item['shop']['name'].'全店通用';
  89. break;
  90. case 2:
  91. $item['use_scene_desc'] = $item['shop']['name'].'部分商品可用';
  92. if(isset($get['goods_id'])) {
  93. $goodsArr = CouponGoods::where(['coupon_id'=>$item['id'], 'goods_id'=>$get['goods_id']])->select()->toArray();
  94. if(!$goodsArr) {
  95. // 该券不适用此商品
  96. unset($lists[$key]);
  97. }
  98. }
  99. break;
  100. case 3:
  101. $item['use_scene_desc'] = $item['shop']['name'].'部分商品不可用';
  102. if(isset($get['goods_id'])) {
  103. $goodsArr = CouponGoods::where(['coupon_id'=>$item['id'], 'goods_id'=>$get['goods_id']])->select()->toArray();
  104. if($goodsArr) {
  105. // 该券不适用此商品
  106. unset($lists[$key]);
  107. }
  108. }
  109. break;
  110. }
  111. // 判断该券用户是否已领取过
  112. $count = CouponList::where([
  113. 'del' => 0,
  114. 'user_id' => $get['user_id'],
  115. 'coupon_id' => $item['id']
  116. ])->count();
  117. $item['is_get'] = $count ? 1: 0;
  118. // 领取次数
  119. switch ($item['get_num_type']) {
  120. case 1:
  121. // 优惠券为不限量领取
  122. // $item['is_get'] = 0;
  123. $item['can_continue_get'] = $item['is_get'];
  124. break;
  125. case 2:
  126. // 优惠券限制次数
  127. // if ($count < $item['get_num']) {
  128. // $item['is_get'] = 0;
  129. // }
  130. $item['can_continue_get'] = $item['is_get'] ? (int) ($count < $item['get_num']) : 0;
  131. break;
  132. case 3:
  133. // 限制当天领取次数
  134. $today_count = CouponList::whereTime('create_time', 'today')->where([
  135. 'del' => 0,
  136. 'user_id' => $get['user_id'],
  137. 'coupon_id' => $item['id']
  138. ])->count();
  139. // if ($today_count < $item['get_num']) {
  140. // $item['is_get'] = 0;
  141. // }
  142. $item['can_continue_get'] = $item['is_get'] ? (int) ($today_count < $item['get_num']) : 0;
  143. break;
  144. }
  145. }
  146. // 分页处理
  147. $count = count($lists);
  148. $index = ($get['page_no'] -1) * $get['page_size'];
  149. $lists = array_slice($lists, $index, $get['page_size']);
  150. return [
  151. 'count' => $count,
  152. 'lists' => $lists,
  153. 'page_no' => $get['page_no'],
  154. 'page_size' => $get['page_size'],
  155. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  156. ];
  157. }
  158. public static function getCoupon($post)
  159. {
  160. try{
  161. // 未删除 & 上架中 & 发放时间内
  162. $where = [
  163. ['del', '=', 0],
  164. ['status', '=', 1],
  165. ['send_time_start', '<=', time()],
  166. ['send_time_end', '>=', time()],
  167. ['id', '=', $post['coupon_id']],
  168. ];
  169. // 校验优惠券信息
  170. $coupon = Coupon::where($where)->findOrEmpty();
  171. if($coupon->isEmpty()) {
  172. throw new \think\Exception('优惠券已失效');
  173. }
  174. // 校验限制数量
  175. if($coupon['send_total_type'] == 2) {
  176. // 已发放数量
  177. $already_issue = CouponList::where(['del'=>0, 'coupon_id'=>$coupon['id']])->count();
  178. if($already_issue >= $coupon['send_total']) {
  179. throw new \think\Exception('优惠券已领取完了');
  180. }
  181. }
  182. // 校验领取次数限制
  183. switch($coupon['get_num_type']) {
  184. case 2: // 限制总领取次数
  185. // 当前用户已领取次数
  186. $already_get = CouponList::where(['del'=>0, 'coupon_id'=>$coupon['id'], 'user_id'=>$post['user_id']])->count();
  187. if($already_get >= $coupon['get_num']) {
  188. throw new \think\Exception('您已超过领取次数');
  189. }
  190. break;
  191. case 3: // 限制每天领取次数
  192. $today_date = date('Y-m-d', time());
  193. $today_time = strtotime($today_date.' 00:00:00');
  194. // 当前用户今天已领取次数
  195. $already_today_get = CouponList::where([
  196. ['del', '=', 0],
  197. ['coupon_id', '=', $coupon['id']],
  198. ['user_id', '=', $post['user_id']],
  199. ['create_time', '>=', $today_time],
  200. ])->count();
  201. if($already_today_get >= $coupon['get_num']) {
  202. throw new \think\Exception('今天您已超过领取次数');
  203. }
  204. break;
  205. }
  206. // 开始领券
  207. $time = time();
  208. $addData = [
  209. 'user_id' => $post['user_id'],
  210. 'coupon_id' => $post['coupon_id'],
  211. 'coupon_code' => create_coupon_code(),
  212. 'status' => 0,
  213. 'create_time' => $time,
  214. 'update_time' => $time,
  215. 'del' => 0
  216. ];
  217. CouponList::create($addData);
  218. // 记录访问足迹
  219. event('Footprint', [
  220. 'type' => FootprintEnum::RECEIVE_COUPON,
  221. 'user_id' => $post['user_id'],
  222. 'foreign_id' => $post['coupon_id']
  223. ]);
  224. return true;
  225. }catch(\Exception $e){
  226. self::$error = $e->getMessage();
  227. return false;
  228. }
  229. }
  230. public static function myCouponList($get)
  231. {
  232. // 提取用户未删除的优惠券
  233. $whereOne = [
  234. ['cl.del', '=', 0],
  235. ['cl.user_id', '=', $get['user_id']]
  236. ];
  237. $fieldOne = 'cl.*, c.name,c.use_time_type,c.use_time_start,c.use_time_end,c.use_time as coupon_use_time,s.name as shop_name,c.condition_type,c.condition_money,c.money,c.use_goods_type,c.shop_id';
  238. $count_list = CouponList::alias('cl')
  239. ->leftJoin('coupon c', 'c.id=cl.coupon_id')
  240. ->leftJoin('shop s', 's.id=c.shop_id')
  241. ->field($fieldOne)
  242. ->where($whereOne)
  243. ->order('id', 'desc')
  244. ->select()
  245. ->toArray();
  246. // 循环标识每条记录的券是否过期
  247. foreach($count_list as &$item) {
  248. $item['is_expired'] = 0; // 默认先标识为未过期
  249. switch($item['use_time_type']) {
  250. case 1: // 固定时间
  251. if($item['use_time_end'] <= time()) {
  252. $item['is_expired'] = 1;
  253. }
  254. break;
  255. case 2: // 领券当天起
  256. $days = '+'.$item['coupon_use_time'].' day';
  257. $expired_time = strtotime($days, $item['create_time']);
  258. if($expired_time <= time()) {
  259. $item['is_expired'] = 1;
  260. }
  261. break;
  262. case 3: // 领券次日起
  263. $days = '+'.($item['coupon_use_time']+1).' day';
  264. $expired_time = strtotime($days, $item['create_time']);
  265. if($expired_time <= time()) {
  266. $item['is_expired'] = 1;
  267. }
  268. break;
  269. }
  270. }
  271. $used_array = array_filter($count_list, function($item) {
  272. return $item['status'] == 1; // 已使用
  273. });
  274. $valid_array = array_filter($count_list, function($item) {
  275. return $item['status'] == 0 && $item['is_expired'] == 0; // 未使用,未过期
  276. });
  277. $expired_array = array_filter($count_list, function($item) {
  278. return $item['status'] == 0 && $item['is_expired'] == 1; // 未使用,已过期
  279. });
  280. $used = count($used_array); // 已使用数量
  281. $valid = count($valid_array); // 可用数量
  282. $expired = count($expired_array); //已过期数量
  283. // 根据类型过滤记录提取 type: used-已使用 valid-可使用 expired-已过期
  284. if(isset($get['type'])) {
  285. switch($get['type']) {
  286. case 'used':
  287. $count_list = array_filter($count_list, function($item) {
  288. return $item['status'] == 1; // 已使用
  289. });
  290. break;
  291. case 'valid':
  292. $count_list = array_filter($count_list, function($item) {
  293. return $item['status'] == 0 && $item['is_expired'] == 0; // 未使用,未过期
  294. });
  295. break;
  296. case 'expired':
  297. $count_list = array_filter($count_list, function($item) {
  298. return $item['status'] == 0 && $item['is_expired'] == 1; // 未使用,已过期
  299. });
  300. break;
  301. }
  302. }else{ // 默认 valid 可使用的
  303. $count_list = array_filter($count_list, function($item) {
  304. return $item['status'] == 0 && $item['is_expired'] == 0; // 未使用,未过期
  305. });
  306. }
  307. // 拼装信息
  308. $count_list = self::formatInfo($count_list);
  309. // 分页处理
  310. $count = count($count_list);
  311. $index = ($get['page_no'] -1) * $get['page_size'];
  312. $lists = array_slice($count_list, $index, $get['page_size']);
  313. $expand = [
  314. 'used' => $used, //已使用
  315. 'valid' => $valid, //可用
  316. 'expired' => $expired //已过期
  317. ];
  318. // 返回数据
  319. return [
  320. 'count' => $count,
  321. 'expand' => $expand,
  322. 'lists' => $lists,
  323. 'page_no' => $get['page_no'],
  324. 'page_size' => $get['page_size'],
  325. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  326. ];
  327. }
  328. /**
  329. * 拼装信息
  330. */
  331. public static function formatInfo($coupon_list)
  332. {
  333. foreach($coupon_list as &$item) {
  334. // 去除无效的0
  335. $item['money'] = clearZero($item['money']);
  336. $item['condition_money'] = clearZero($item['condition_money']);
  337. // 优惠券名称
  338. $item['coupon_name'] = $item['shop_name'].$item['name'];
  339. // 使用门槛
  340. switch($item['condition_type']) {
  341. case 1:
  342. $item['condition_type_desc'] = '无门槛';
  343. break;
  344. case 2:
  345. $item['condition_type_desc'] = "满{$item['condition_money']}减{$item['money']}";
  346. break;
  347. }
  348. // 用券时间
  349. switch($item['use_time_type']) {
  350. // 固定使用时间
  351. case 1:
  352. $item['user_time_desc'] = date('Y-m-d H:i:s',$item['use_time_start']). ' 至 ' . date('Y-m-d H:i:s', $item['use_time_end']);
  353. break;
  354. // 领券当天起
  355. case 2:
  356. $item['user_time_desc'] = "有效期至 " . date('Y-m-d H:i:s', $item['create_time'] + $item['coupon_use_time'] * 86400);
  357. break;
  358. // 领券次日起
  359. case 3:
  360. $item['user_time_desc'] = "有效期至 " . date('Y-m-d 23:59:59', $item['create_time'] + $item['coupon_use_time'] * 86400);
  361. break;
  362. }
  363. // 使用场景
  364. switch($item['use_goods_type']) {
  365. case 1:
  366. $item['use_scene_desc'] = $item['shop_name'].'全店通用';
  367. $item['use_goods_desc'] = '所有商品可用';
  368. break;
  369. case 2:
  370. $item['use_scene_desc'] = $item['shop_name'].'部分商品可用';
  371. $goods = CouponGoods::alias('cg')
  372. ->field('g.name as goods_name')
  373. ->leftJoin('goods g', 'g.id=cg.goods_id')
  374. ->where(['coupon_id'=>$item['coupon_id']])
  375. ->select()
  376. ->toArray();
  377. $item['use_goods_desc'] = count($goods) ? '仅限 ' : '';
  378. $item['use_goods_desc'] .= implode('、', array_column($goods, 'goods_name'));
  379. $item['use_goods_desc'] .= ' 商品可用';
  380. break;
  381. case 3:
  382. $item['use_scene_desc'] = $item['shop_name'].'部分商品不可用';
  383. $goods = CouponGoods::alias('cg')
  384. ->field('g.name as goods_name')
  385. ->leftJoin('goods g', 'g.id=cg.goods_id')
  386. ->where(['coupon_id'=>$item['coupon_id']])
  387. ->select()
  388. ->toArray();
  389. $item['use_goods_desc'] = count($goods) ? '仅限 ' : '';
  390. $item['use_goods_desc'] .= implode('、', array_column($goods, 'goods_name'));
  391. $item['use_goods_desc'] .= ' 之外的商品可用';
  392. break;
  393. }
  394. }
  395. return $coupon_list;
  396. }
  397. /**
  398. * 统计订单价格
  399. */
  400. public static function calcMoney($buy_type, $get)
  401. {
  402. if($buy_type == 'buy') { // 立即购买
  403. $price = GoodsItem::where('id', $get['item_id'])->value('price');
  404. return $price * $get['num'];
  405. }
  406. if($buy_type == 'cart') { // 购买车
  407. $total = 0;
  408. $buyGoodsArr = Cart::alias('c')
  409. ->leftJoin('goods_item gi', 'gi.id=c.item_id')
  410. ->field('c.item_id,c.goods_num,gi.price')
  411. ->where([
  412. ['id', 'in', $get['param']],
  413. ['selected', '=', '1']
  414. ])->select()->toArray();
  415. foreach($buyGoodsArr as $item) {
  416. $total += $item['price'] * $item['goods_num'];
  417. }
  418. return $total;
  419. }
  420. }
  421. /**
  422. * 统计订单商品及金额
  423. */
  424. public static function getGoodsInfo($goods)
  425. {
  426. $buyGoodsArr = [];
  427. $buyMoney = 0;
  428. foreach($goods as $item) {
  429. $buyGoodsArr[] = $item['goods_id'];
  430. $price = GoodsItem::where('id', $item['item_id'])->value('price');
  431. $buyMoney += $item['num'] * $price;
  432. }
  433. return [
  434. 'buyGoodsArr' => $buyGoodsArr,
  435. 'buyMoney' => $buyMoney,
  436. ];
  437. }
  438. public static function getBuyCouponList($post)
  439. {
  440. // $post['goods'] = json_decode($post['goods'], true);
  441. // 提取用户未删除的优惠券
  442. $whereOne = [
  443. ['cl.del', '=', 0],
  444. ['cl.user_id', '=', $post['user_id']],
  445. ['s.id', '=', $post['shop_id']],
  446. ];
  447. $fieldOne = 'cl.*, c.name,c.use_time_type,c.use_time_start,c.use_time_end,c.use_time as coupon_use_time,s.name as shop_name,c.condition_type,c.condition_money,c.money,c.use_goods_type';
  448. $count_list = CouponList::alias('cl')
  449. ->leftJoin('coupon c', 'c.id=cl.coupon_id')
  450. ->leftJoin('shop s', 's.id=c.shop_id')
  451. ->field($fieldOne)
  452. ->where($whereOne)
  453. ->order('id', 'desc')
  454. ->select()
  455. ->toArray();
  456. // 循环标识每条记录的券是否过期
  457. $tempData = [];
  458. foreach($count_list as $item) {
  459. $item['is_expired'] = 0; // 默认先标识为未过期
  460. switch($item['use_time_type']) {
  461. case 1: // 固定时间
  462. if($item['use_time_end'] <= time()) {
  463. $item['is_expired'] = 1;
  464. }
  465. break;
  466. case 2: // 领券当天起
  467. $days = '+'.$item['coupon_use_time'].' day';
  468. $expired_time = strtotime($days, $item['create_time']);
  469. if($expired_time <= time()) {
  470. $item['is_expired'] = 1;
  471. }
  472. break;
  473. case 3: // 领券次日起
  474. $days = '+'.($item['coupon_use_time']+1).' day';
  475. $expired_time = strtotime($days, $item['create_time']);
  476. if($expired_time <= time()) {
  477. $item['is_expired'] = 1;
  478. }
  479. break;
  480. }
  481. $tempData[] = $item;
  482. }
  483. // 根据类型过滤记录提取
  484. $count_list = array_filter($tempData, function($item) {
  485. return $item['status'] == 0 && $item['is_expired'] == 0; // 未使用,未过期
  486. });
  487. // 结算页优惠券列表
  488. $goodsInfo = self::getGoodsInfo($post['goods']);
  489. $buyGoodsArr = $goodsInfo['buyGoodsArr'];
  490. $buyMoney = $goodsInfo['buyMoney'];
  491. $suit = []; // 适用券
  492. $unSuit = []; // 不适用券
  493. foreach($count_list as $key => $item) {
  494. $flag = true; // 默认先标识为适用
  495. // 使用场景校验
  496. switch($item['use_goods_type']) {
  497. case 2: // 部分商品可用
  498. $goods = CouponGoods::alias('cg')
  499. ->where(['coupon_id'=>$item['coupon_id']])
  500. ->column('cg.goods_id');
  501. foreach($buyGoodsArr as $subItem) {
  502. if(!in_array($subItem, $goods)) { // 是否在可用商品列表
  503. $flag = false;
  504. break;
  505. }
  506. }
  507. break;
  508. case 3: // 部分商品不可用
  509. $goods = CouponGoods::alias('cg')
  510. ->where(['coupon_id'=>$item['coupon_id']])
  511. ->column('cg.goods_id');
  512. foreach($buyGoodsArr as $subItem) {
  513. if(in_array($subItem, $goods)) { // 是否在不可用商品列表
  514. $flag = false;
  515. break;
  516. }
  517. }
  518. break;
  519. }
  520. // 使用门槛校验
  521. switch($item['condition_type']) {
  522. case 2:
  523. if($buyMoney < $item['condition_money']) {
  524. // 不满足门槛
  525. $flag = false;
  526. }
  527. break;
  528. }
  529. // 固定时间
  530. if (true == $flag && $item['use_time_type'] == 1) {
  531. $item['use_time_start'] > time() && $flag = false;
  532. }
  533. // 次日起可以用
  534. if (true == $flag && $item['use_time_type'] == 3) {
  535. $today = date('Y-m-d 00:00:00', $item['create_time']);
  536. // 有效开始使用时间
  537. $effectiveStartTime = strtotime($today) + 24 * 60 * 60;
  538. $effectiveStartTime >= time() && $flag = false;
  539. }
  540. if($flag) {
  541. // 符合场景、符合门槛
  542. $suit[] = $item;
  543. }else{
  544. // 不符合场景或门槛
  545. $unSuit[] = $item;
  546. }
  547. }
  548. $suit = self::formatInfo($suit);
  549. $unSuit = self::formatInfo($unSuit);
  550. return [
  551. 'suit' => $suit,
  552. 'un_suit' => $unSuit,
  553. ];
  554. }
  555. /**
  556. * @notes PC结算页店铺优惠券
  557. * @param $post
  558. * @return array
  559. * @author suny
  560. * @date 2021/10/28 5:31 下午
  561. */
  562. public static function getShopCouponList($post)
  563. {
  564. // 提取用户未删除的优惠券
  565. $whereOne = [
  566. ['cl.del', '=', 0],
  567. ['cl.user_id', '=', $post['user_id']],
  568. ['s.id', '=', $post['shop_id']],
  569. ];
  570. $fieldOne = 'cl.*, c.name,c.use_time_type,c.use_time_start,c.use_time_end,c.use_time as coupon_use_time,s.name as shop_name,c.condition_type,c.condition_money,c.money,c.use_goods_type';
  571. $count_list = CouponList::alias('cl')
  572. ->leftJoin('coupon c', 'c.id=cl.coupon_id')
  573. ->leftJoin('shop s', 's.id=c.shop_id')
  574. ->field($fieldOne)
  575. ->where($whereOne)
  576. ->order('id', 'desc')
  577. ->select()
  578. ->toArray();
  579. // 循环标识每条记录的券是否过期
  580. foreach($count_list as &$item) {
  581. $item['is_expired'] = 0; // 默认先标识为未过期
  582. switch($item['use_time_type']) {
  583. case 1: // 固定时间
  584. if($item['use_time_end'] <= time()) {
  585. $item['is_expired'] = 1;
  586. }
  587. break;
  588. case 2: // 领券当天起
  589. $days = '+'.$item['coupon_use_time'].' day';
  590. $expired_time = strtotime($days, $item['create_time']);
  591. if($expired_time <= time()) {
  592. $item['is_expired'] = 1;
  593. }
  594. break;
  595. case 3: // 领券次日起
  596. $days = '+'.($item['coupon_use_time']+1).' day';
  597. $expired_time = strtotime($days, $item['create_time']);
  598. if($expired_time <= time()) {
  599. $item['is_expired'] = 1;
  600. }
  601. break;
  602. }
  603. }
  604. // 根据类型过滤记录提取
  605. $count_list = array_filter($count_list, function($item) {
  606. return $item['status'] == 0 && $item['is_expired'] == 0; // 未使用,未过期
  607. });
  608. // 结算页优惠券列表
  609. $goodsInfo = self::getGoodsInfo($post['goods']);
  610. $buyGoodsArr = $goodsInfo['buyGoodsArr'];
  611. $buyMoney = $goodsInfo['buyMoney'];
  612. $suit = []; // 适用券
  613. $unSuit = []; // 不适用券
  614. foreach($count_list as $key => $item) {
  615. $flag = true; // 默认先标识为适用
  616. // 使用场景校验
  617. switch($item['use_goods_type']) {
  618. case 2: // 部分商品可用
  619. $goods = CouponGoods::alias('cg')
  620. ->where(['coupon_id'=>$item['coupon_id']])
  621. ->column('cg.goods_id');
  622. foreach($buyGoodsArr as $subItem) {
  623. if(!in_array($subItem, $goods)) { // 是否在可用商品列表
  624. $flag = false;
  625. break;
  626. }
  627. }
  628. break;
  629. case 3: // 部分商品不可用
  630. $goods = CouponGoods::alias('cg')
  631. ->where(['coupon_id'=>$item['coupon_id']])
  632. ->column('cg.goods_id');
  633. foreach($buyGoodsArr as $subItem) {
  634. if(in_array($subItem, $goods)) { // 是否在不可用商品列表
  635. $flag = false;
  636. break;
  637. }
  638. }
  639. break;
  640. }
  641. // 使用门槛校验
  642. switch($item['condition_type']) {
  643. case 2:
  644. if($buyMoney < $item['condition_money']) {
  645. // 不满足门槛
  646. $flag = false;
  647. }
  648. break;
  649. }
  650. if($flag) {
  651. // 符合场景、符合门槛
  652. $suit[] = $item;
  653. }else{
  654. // 不符合场景或门槛
  655. $unSuit[] = $item;
  656. }
  657. }
  658. $suit = self::formatInfo($suit);
  659. $unSuit = self::formatInfo($unSuit);
  660. return [
  661. 'suit' => $suit,
  662. 'un_suit' => $unSuit,
  663. ];
  664. }
  665. }