123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\services\activity\coupon;
- use app\services\BaseServices;
- use app\dao\activity\coupon\StoreCouponUserDao;
- use app\services\product\product\StoreCategoryServices;
- use app\services\product\product\StoreProductCateServices;
- use crmeb\utils\Arr;
- /**
- *
- * Class StoreCouponUserServices
- * @package app\services\coupon
- * @method useCoupon(int $id) 使用优惠券修改优惠券状态
- * @method delUserCoupon(array $where)
- */
- class StoreCouponUserServices extends BaseServices
- {
- /**
- * StoreCouponUserServices constructor.
- * @param StoreCouponUserDao $dao
- */
- public function __construct(StoreCouponUserDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * 获取列表
- * @param array $where
- * @return array
- */
- public function issueLog(array $where)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getList($where, 'uid,add_time', ['userInfo'], $page, $limit);
- foreach ($list as &$item) {
- $item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- }
- $count = $this->dao->count($where);
- return compact('list', 'count');
- }
- /**
- * 获取列表
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function systemPage(array $where)
- {
- /** @var StoreCouponUserUserServices $storeCouponUserUserService */
- $storeCouponUserUserService = app()->make(StoreCouponUserUserServices::class);
- return $storeCouponUserUserService->getList($where);
- }
- /**
- * 获取用户优惠券
- * @param int $id
- */
- public function getUserCouponList(int $id)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getList(['uid' => $id], '*', ['issue'], $page, $limit);
- foreach ($list as &$item) {
- $item['_add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- $item['_end_time'] = date('Y-m-d H:i:s', $item['end_time']);
- if (!$item['coupon_time']) {
- $item['coupon_time'] = bcdiv((string)($item['end_use_time'] - $item['start_use_time']), '86400', 0);
- }
- }
- $count = $this->dao->count(['uid' => $id]);
- return compact('list', 'count');
- }
- /**
- * 恢复优惠券
- * @param int $id
- * @return bool|mixed
- */
- public function recoverCoupon(int $id)
- {
- $status = $this->dao->value(['id' => $id], 'status');
- if ($status) return $this->dao->update($id, ['status' => 0, 'use_time' => '']);
- else return true;
- }
- /**
- * 过期优惠卷失效
- */
- public function checkInvalidCoupon()
- {
- $this->dao->update([['end_time', '<', time()], ['status', '=', '0']], ['status' => 2]);
- }
- /**
- * 获取用户有效优惠劵数量
- * @param int $uid
- * @return int
- */
- public function getUserValidCouponCount(int $uid)
- {
- $this->checkInvalidCoupon();
- return $this->dao->getCount(['uid' => $uid, 'status' => 0]);
- }
- /**
- * 下单页面显示可用优惠券
- * @param $uid
- * @param $cartGroup
- * @param $price
- * @return array
- */
- public function getUsableCouponList(int $uid, array $cartGroup)
- {
- $userCoupons = $this->dao->getUserAllCoupon($uid);
- $result = [];
- if ($userCoupons) {
- $cartInfo = $cartGroup['valid'];
- foreach ($userCoupons as $coupon) {
- $price = 0;
- $count = 0;
- switch ($coupon['applicable_type']) {
- case 0:
- case 3:
- foreach ($cartInfo as $cart) {
- $price += bcmul((string)$cart['truePrice'], (string)$cart['cart_num'], 2);
- $count++;
- }
- break;
- case 1://品类券
- /** @var StoreCategoryServices $storeCategoryServices */
- $storeCategoryServices = app()->make(StoreCategoryServices::class);
- $coupon_category = explode(',', (string)$coupon['category_id']);
- $category_ids = $storeCategoryServices->getAllById($coupon_category);
- if ($category_ids) {
- $cateIds = array_column($category_ids, 'id');
- foreach ($cartInfo as $cart) {
- if (isset($cart['productInfo']['cate_id']) && array_intersect(explode(',', $cart['productInfo']['cate_id']), $cateIds)) {
- $price += bcmul((string)$cart['truePrice'], (string)$cart['cart_num'], 2);
- $count++;
- }
- }
- }
- break;
- case 2:
- foreach ($cartInfo as $cart) {
- if (isset($cart['product_id']) && in_array($cart['product_id'], explode(',', $coupon['product_id']))) {
- $price += bcmul((string)$cart['truePrice'], (string)$cart['cart_num'], 2);
- $count++;
- }
- }
- break;
- }
- if ($count && $coupon['use_min_price'] <= $price) {
- $coupon['start_time'] = $coupon['start_time'] ? date('Y/m/d', $coupon['start_time']) : date('Y/m/d', $coupon['add_time']);
- $coupon['add_time'] = date('Y/m/d', $coupon['add_time']);
- $coupon['end_time'] = date('Y/m/d', $coupon['end_time']);
- $coupon['start_use_time'] = $coupon['start_use_time'] > 0 ? date('Y/m/d', $coupon['start_use_time']) : 0;
- $coupon['end_use_time'] = $coupon['start_use_time'] > 0 ? date('Y/m/d', $coupon['end_use_time']) : 0;
- $coupon['title'] = $coupon['coupon_title'];
- $coupon['type'] = $coupon['applicable_type'];
- $coupon['use_min_price'] = floatval($coupon['use_min_price']);
- $coupon['coupon_price'] = floatval($coupon['coupon_price']);
- $result[] = $coupon;
- }
- }
- }
- return $result;
- }
- /**
- * 下单页面显示可用优惠券
- * @param $uid
- * @param $cartGroup
- * @param $price
- * @return array
- */
- public function getOldUsableCouponList(int $uid, array $cartGroup)
- {
- $cartPrice = $cateIds = [];
- $productId = Arr::getUniqueKey($cartGroup['valid'], 'product_id');
- foreach ($cartGroup['valid'] as $value) {
- $cartPrice[] = bcmul((string)$value['truePrice'], (string)$value['cart_num'], 2);
- }
- $maxPrice = count($cartPrice) ? max($cartPrice) : 0;
- if ($productId) {
- /** @var StoreProductCateServices $productCateServices */
- $productCateServices = app()->make(StoreProductCateServices::class);
- $cateId = $productCateServices->productIdByCateId($productId);
- if ($cateId) {
- /** @var StoreCategoryServices $cateServices */
- $cateServices = app()->make(StoreCategoryServices::class);
- $catePids = $cateServices->cateIdByPid($cateId);
- $cateIds = array_merge($cateId, $catePids);
- } else {
- $cateIds = $cateId;
- }
- }
- $productCouponList = $this->dao->productIdsByCoupon($productId, $uid, (string)$maxPrice);
- $cateCouponList = $this->dao->cateIdsByCoupon($cateIds, $uid, (string)$maxPrice);
- $list = array_merge($productCouponList, $cateCouponList);
- $couponIds = Arr::getUniqueKey($list, 'id');
- $sumCartPrice = array_sum($cartPrice);
- $list1 = $this->dao->getUserCoupon($couponIds, $uid, (string)$sumCartPrice);
- $list = array_merge($list, $list1);
- foreach ($list as &$item) {
- $item['add_time'] = date('Y/m/d', $item['add_time']);
- $item['end_time'] = date('Y/m/d', $item['end_time']);
- $item['title'] = $item['coupon_title'];
- $item['type'] = $item['applicable_type'] ?? 0;
- }
- return $list;
- }
- /**
- * 用户领取优惠券
- * @param $uid
- * @param $issueCouponInfo
- * @param string $type
- * @return mixed
- */
- public function addUserCoupon($uid, $issueCouponInfo, $type = 'get')
- {
- $data = [];
- $data['cid'] = $issueCouponInfo['id'];
- $data['uid'] = $uid;
- $data['coupon_title'] = $issueCouponInfo['title'];
- $data['coupon_price'] = $issueCouponInfo['coupon_price'];
- $data['use_min_price'] = $issueCouponInfo['use_min_price'];
- $data['add_time'] = time();
- if ($issueCouponInfo['coupon_time']) {
- $data['start_time'] = $data['add_time'];
- $data['end_time'] = $data['add_time'] + $issueCouponInfo['coupon_time'] * 86400;
- } else {
- $data['start_time'] = $issueCouponInfo['start_use_time'];
- $data['end_time'] = $issueCouponInfo['end_use_time'];
- }
- $data['type'] = $type;
- return $this->dao->save($data);
- }
- /**会员领取优惠券
- * @param $uid
- * @param $issueCouponInfo
- * @param string $type
- * @return mixed
- */
- public function addMemberUserCoupon($uid, $issueCouponInfo, $type = 'get')
- {
- $data = [];
- $data['cid'] = $issueCouponInfo['id'];
- $data['uid'] = $uid;
- $data['coupon_title'] = $issueCouponInfo['title'];
- $data['coupon_price'] = $issueCouponInfo['coupon_price'];
- $data['use_min_price'] = $issueCouponInfo['use_min_price'];
- $data['add_time'] = time();
- $data['start_time'] = strtotime(date('Y-m-d 00:00:00', time()));
- $data['end_time'] = strtotime(date('Y-m-d 23:59:59', strtotime('+30 day')));
- $data['type'] = $type;
- return $this->dao->save($data);
- }
- /**
- * 获取用户已领取的优惠卷
- * @param int $uid
- * @param $type
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserCounpon(int $uid, $type)
- {
- $where = [];
- $where['uid'] = $uid;
- switch ($type) {
- case 0:
- case '':
- break;
- case 1:
- $where['status'] = 0;
- break;
- case 2:
- $where['status'] = 1;
- break;
- default:
- $where['status'] = 1;
- break;
- }
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getCouponListByOrder($where, 'status ASC,add_time DESC', $page, $limit);
- return $list ? $this->tidyCouponList($list) : [];
- }
- /**
- * 格式化优惠券
- * @param $couponList
- * @return mixed
- */
- public function tidyCouponList($couponList)
- {
- $time = time();
- foreach ($couponList as &$coupon) {
- if ($coupon['status'] == '已使用') {
- $coupon['_type'] = 0;
- $coupon['_msg'] = '已使用';
- $coupon['pc_type'] = 0;
- $coupon['pc_msg'] = '已使用';
- } else if ($coupon['status'] == '已过期') {
- $coupon['is_fail'] = 1;
- $coupon['_type'] = 0;
- $coupon['_msg'] = '已过期';
- $coupon['pc_type'] = 0;
- $coupon['pc_msg'] = '已过期';
- } else if ($coupon['end_time'] < $time) {
- $coupon['is_fail'] = 1;
- $coupon['_type'] = 0;
- $coupon['_msg'] = '已过期';
- $coupon['pc_type'] = 0;
- $coupon['pc_msg'] = '已过期';
- } else if ($coupon['start_time'] > $time) {
- $coupon['_type'] = 0;
- $coupon['_msg'] = '未开始';
- $coupon['pc_type'] = 1;
- $coupon['pc_msg'] = '未开始';
- } else {
- if ($coupon['start_time'] + 3600 * 24 > $time) {
- $coupon['_type'] = 2;
- $coupon['_msg'] = '立即使用';
- $coupon['pc_type'] = 1;
- $coupon['pc_msg'] = '可使用';
- } else {
- $coupon['_type'] = 1;
- $coupon['_msg'] = '立即使用';
- $coupon['pc_type'] = 1;
- $coupon['pc_msg'] = '可使用';
- }
- }
- $coupon['add_time'] = $coupon['_add_time'] = $coupon['start_time'] ? date('Y/m/d', $coupon['start_time']) : date('Y/m/d', $coupon['add_time']);
- $coupon['end_time'] = $coupon['_end_time'] = date('Y/m/d', $coupon['end_time']);
- $coupon['use_min_price'] = floatval($coupon['use_min_price']);
- $coupon['coupon_price'] = floatval($coupon['coupon_price']);
- }
- return $couponList;
- }
- /** 获取会员优惠券列表
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getMemberCoupon($uid)
- {
- if (!$uid) return [];
- /** @var StoreCouponIssueServices $couponIssueService */
- $couponIssueService = app()->make(StoreCouponIssueServices::class);
- $couponWhere['receive_type'] = 4;
- $couponInfo = $couponIssueService->getMemberCouponIssueList($couponWhere);
- $couponList = [];
- if ($couponInfo) {
- $couponIds = array_column($couponInfo, 'id');
- $couponType = array_column($couponInfo, 'type', 'id');
- $couponList = $this->dao->getCouponListByOrder(['uid' => $uid, 'coupon_ids' => $couponIds], 'add_time desc');
- if ($couponList) {
- foreach ($couponList as $k => $v) {
- $couponList[$k]['coupon_type'] = $couponIssueService->_couponType[$couponType[$v['cid']]];
- }
- }
- }
- return $couponList ? $this->tidyCouponList($couponList) : [];
- }
- /**根据月分组看会员发放优惠券情况
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function memberCouponUserGroupBymonth(array $where)
- {
- return $this->dao->memberCouponUserGroupBymonth($where);
- }
- /**会员券失效
- * @param $coupon_user_id
- * @return bool|mixed
- */
- public function memberCouponIsFail($coupon_user)
- {
- if (!$coupon_user) return false;
- if ($coupon_user['use_time'] == 0) {
- return $this->dao->update($coupon_user['id'], ['is_fail' => 1, 'status' => 2]);
- }
- }
- /**根据id查询会员优惠劵
- * @param $id
- * @return array|bool|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getCouponUserOne($id)
- {
- if (!$id) return false;
- return $this->dao->getOne(['id' => $id]);
- }
- /**
- * 根据时间查询用户优惠券
- * @param array $where
- * @return array|bool|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getUserCounponByMonth(array $where, string $field = '*')
- {
- if (!$where) return [];
- return $this->dao->getUserCounponByMonth($where, $field);
- }
- /**
- * 检查付费会员是否领取了会员券
- * @param $uid
- * @param $vipCouponIds
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function checkHave($uid, $vipCouponIds)
- {
- $list = $this->dao->getVipCouponList($uid);
- $have = [];
- foreach ($list as $item) {
- if ($vipCouponIds && in_array($item['cid'], $vipCouponIds)) {
- $have[$item['cid']] = true;
- } else {
- $have[$item['cid']] = false;
- }
- }
- return $have;
- }
- }
|