123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\dao\activity\coupon;
- use app\dao\BaseDao;
- use app\model\activity\coupon\StoreCouponIssue;
- /**
- * 优惠卷
- * Class StoreCouponIssueDao
- * @package app\dao\activity\coupon
- */
- class StoreCouponIssueDao extends BaseDao
- {
- /**
- * 设置模型
- * @return string
- */
- protected function setModel(): string
- {
- return StoreCouponIssue::class;
- }
- /**
- * @param array $where
- * @return \crmeb\basic\BaseModel|mixed|\think\Model
- */
- public function search(array $where = [])
- {
- return parent::search($where)->when(isset($where['receive']) && $where['receive'] != '', function ($query) use ($where) {
- if ($where['receive'] == 'send') {
- $query->where('receive_type', 3)
- ->where('status', 1)
- ->where('is_del', 0)
- ->where('remain_count > 0 OR is_permanent = 1')
- ->where(function ($query1) {
- $query1->where(function ($query2) {
- $query2->where('start_time', '<=', time())->where('end_time', '>=', time());
- })->whereOr(function ($query3) {
- $query3->where('start_time', 0)->where('end_time', 0);
- });
- })->where(function ($query4) {
- $query4->where(function ($query5) {
- $query5->where('coupon_time', 0)->where('end_use_time', '>=', time());
- })->whereOr('coupon_time', '>', 0);
- });
- }
- })->when(isset($where['receive_type']) && $where['receive_type'], function ($query) use ($where) {
- $query->where('receive_type', $where['receive_type']);
- });
- }
- /**
- * 有效优惠券搜索
- * @param array $where
- * @return \crmeb\basic\BaseModel|mixed|\think\Model
- */
- public function validSearch(array $where = [])
- {
- return parent::search($where)
- ->where('status', 1)
- ->where('is_del', 0)
- ->where('remain_count > 0 OR is_permanent = 1')
- ->where(function ($query) {
- $query->where(function ($query) {
- $query->where('start_time', '<=', time())->where('end_time', '>=', time());
- })->whereOr(function ($query) {
- $query->where('start_time', 0)->where('end_time', 0);
- });
- })->where(function ($query4) {
- $query4->where(function ($query5) {
- $query5->where('coupon_time', 0)->where('end_use_time', '>=', time());
- })->whereOr('coupon_time', '>', 0);
- });
- }
- /**
- * 获取列表
- * @param array $where
- * @param int $page
- * @param int $limit
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getList(array $where, int $page = 0, int $limit = 0)
- {
- return $this->search($where)->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('id desc')->select()->toArray();
- }
- /**
- * 获取有效的优惠券列表
- * @param array $where
- * @param int $page
- * @param int $limit
- * @param array $with
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getValidList(array $where = [], int $page = 0, int $limit = 0, array $with = [])
- {
- return $this->validSearch($where)
- ->when(isset($where['not_id']) && $where['not_id'], function($query) use ($where) {
- $query->whereNotIn('id', $where['not_id']);
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->when($with, function ($query) use ($with) {
- $query->with($with);
- })->order('id desc')->select()->toArray();
- }
- /**
- * 获取有效的赠送券
- * @param array $ids
- * @param string $field
- * @param int $page
- * @param int $limit
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getValidGiveCoupons(array $ids, string $field = '*' , int $page = 0, int $limit = 0)
- {
- return $this->validSearch()->field($field)
- ->where('receive_type',3)
- ->when(count($ids), function ($query) use ($ids) {
- $query->whereIn('id', $ids);
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->select()->toArray();
- }
- /**
- * 获取商品优惠券
- * @param int $uid
- * @param array $where
- * @param string $field
- * @param int $page
- * @param int $limit
- * @param string $sort
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getIssueCouponListNew(int $uid, array $where = [], string $field = '*', int $page = 0, int $limit = 0, string $sort = 'sort desc,id desc')
- {
- return $this->validSearch()->field($field)
- ->whereIn('receive_type', [1, 4])
- ->with(['used' => function ($query) use ($uid) {
- $query->where('uid', $uid);
- }])
- ->when(isset($where['type']) && $where['type'] != -1, function ($query) use ($where) {
- $query->where('type', $where['type']);
- })
- ->when(isset($where['type']) && $where['type'] == 1 && isset($where['cate_id']) && $where['cate_id'], function ($query) use ($where) {
- $query->where('category_id', 'in', $where['cate_id']);
- })
- ->when(isset($where['type']) && $where['type'] == 2 && isset($where['product_id']) && $where['product_id'], function ($query) use ($where) {
- $query->whereFindinSet('product_id', $where['product_id']);
- })
- ->when(isset($where['type']) && $where['type'] == 3 && isset($where['brand_id']) && $where['brand_id'], function ($query) use ($where) {
- $query->where('brand_id', 'in', $where['brand_id']);
- })
- ->when((isset($where['product_id']) && $where['product_id']) || (isset($where['cate_id']) && $where['cate_id']) || isset($where['brand_id']) && $where['brand_id'], function ($query) use ($where) {
- $query->where(function ($z) use ($where) {
- $z->whereOr('type', 0)
- ->when(isset($where['product_id']) && $where['product_id'], function ($p) use ($where) {
- $p->whereOr(function ($c) use ($where) {
- $c->whereFindinSet('product_id', $where['product_id']);
- });
- })->when(isset($where['cate_id']) && $where['cate_id'], function ($c) use ($where) {
- $c->whereOr('category_id', 'in', $where['cate_id']);
- })->when(isset($where['brand_id']) && $where['brand_id'], function ($b) use ($where) {
- $b->whereOr('brand_id', 'in', $where['brand_id']);
- });
- });
- })
- ->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order($sort)->select()->toArray();
- }
- /**
- * 获取优惠券列表
- * @param int $uid 用户ID
- * @param int $type 0通用,1分类,2商品
- * @param int $typeId 分类ID或商品ID
- * @param string $field
- * @param int $page
- * @param int $limit
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getIssueCouponList(int $uid, int $type, $typeId, string $field = '*', int $page = 0, int $limit = 0)
- {
- return $this->validSearch()->field($field)
- ->whereIn('receive_type', [1, 4])
- ->with(['used' => function ($query) use ($uid) {
- $query->where('uid', $uid);
- }])
- ->where('type', $type)
- ->when($type == 1, function ($query) use ($typeId) {
- if ($typeId) $query->where('category_id', 'in', $typeId);
- })
- ->when($type == 2, function ($query) use ($typeId) {
- if ($typeId) $query->whereFindinSet('product_id', $typeId);
- })
- ->when($type == 3, function ($query) use ($typeId) {
- if ($typeId) $query->where('brand_id', 'in', $typeId);
- })
- ->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('sort desc,id desc')->select()->toArray();
- }
- /**
- * PC端获取优惠券
- * @param int $uid
- * @param array $cate_ids
- * @param int $product_id
- * @param string $filed
- * @param int $page
- * @param int $limit
- * @param string $sort
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getPcIssueCouponList(int $uid, array $cate_ids = [], int $product_id = 0, string $filed = '*', int $page = 0, int $limit = 0, string $sort = 'sort desc,id desc')
- {
- return $this->validSearch()->field($filed)
- ->whereIn('receive_type', [1, 4])
- ->with(['used' => function ($query) use ($uid) {
- $query->where('uid', $uid);
- }])->where(function ($query) use ($product_id, $cate_ids) {
- if ($product_id != 0 && $cate_ids != []) {
- $query->whereFindinSet('product_id', $product_id)->whereOr('category_id', 'in', $cate_ids)->whereOr('type', 0);
- }
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->when(!$page && $limit, function ($query) use ($page, $limit) {
- $query->limit($limit);
- })->order($sort)->select()->toArray();
- }
- /**
- * 获取优惠券数量
- * @param int $productId
- * @param int $cateId
- * @return mixed
- */
- public function getIssueCouponCount($productId = 0, $cateId = 0, $brandId = 0)
- {
- $count[0] = $this->validSearch()->whereIn('receive_type', [1, 4])->where('type', 0)->count();
- $count[1] = $this->validSearch()->whereIn('receive_type', [1, 4])->where('type', 1)->when($cateId != 0, function ($query) use ($cateId) {
- if ($cateId) $query->where('category_id', 'in', $cateId);
- })->count();
- $count[2] = $this->validSearch()->whereIn('receive_type', [1, 4])->where('type', 2)->when($productId != 0, function ($query) use ($productId) {
- if ($productId) $query->whereFindinSet('product_id', $productId);
- })->count();
- $count[3] = $this->validSearch()->whereIn('receive_type', [1, 4])->where('type', 3)->when($productId != 0, function ($query) use ($brandId) {
- if ($brandId) $query->where('brand_id', 'in', $brandId);
- })->count();
- return $count;
- }
- /**
- * 获取优惠卷详情
- * @param int $id
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getInfo(int $id)
- {
- return $this->validSearch()->where('id', $id)->find();
- }
- /**
- * 获取金大于额的优惠卷金额
- * @param string $totalPrice
- * @return float
- */
- public function getUserIssuePrice(string $totalPrice)
- {
- return $this->search(['status' => 1, 'is_full_give' => 1, 'is_del' => 0])
- ->where('full_reduction', '<=', $totalPrice)
- ->sum('coupon_price');
- }
- /**
- * 获取新人券
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getNewCoupon()
- {
- return $this->validSearch()->where('receive_type', 2)->select()->toArray();
- }
- /**
- * 获取一条优惠券信息
- * @param int $id
- * @return mixed
- */
- public function getCouponInfo(int $id)
- {
- return $this->getModel()->where('id', $id)->where('status', 1)->where('is_del', 0)->find();
- }
- /**
- * 获取满赠、下单、关注赠送优惠券
- * @param array $where
- * @param string $field
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getGiveCoupon(array $where, string $field = '*')
- {
- return $this->validSearch()->field($field)->where($where)->select()->toArray();
- }
- /**
- * 获取商品优惠卷列表
- * @param $where
- * @param $field
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function productCouponList($where, $field)
- {
- return $this->getModel()->where($where)->field($field)->select()->toArray();
- }
- /**
- * 获取优惠券弹窗列表
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getTodayCoupon($uid)
- {
- return $this->validSearch()
- ->whereIn('receive_type', [1, 4])
- ->when($uid != 0, function ($query) use ($uid) {
- $query->with(['used' => function ($query) use ($uid) {
- $query->where('uid', $uid);
- }]);
- })->whereDay('add_time')->order('sort desc,id desc')->select()->toArray();
- }
- /**
- * api数据获取优惠券
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getApiIssueList(array $where)
- {
- return $this->getModel()->where($where)->select()->toArray();
- }
- }
|