CRMEB/crmeb/app/models/store/StoreCouponUser.php
2020-07-04 11:34:56 +08:00

294 lines
9.8 KiB
PHP

<?php
/**
*
* @author: xaboy<365615158@qq.com>
* @day: 2017/12/20
*/
namespace app\models\store;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
/**
* TODO 优惠券发放Model
* Class StoreCouponUser
* @package app\models\store
*/
class StoreCouponUser extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'store_coupon_user';
protected $type = [
'coupon_price' => 'float',
'use_min_price' => 'float',
];
protected $hidden = [
'uid'
];
use ModelTrait;
/**
* TODO 获取用户优惠券(全部)
* @param $uid
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function getUserAllCoupon($uid)
{
self::checkInvalidCoupon();
$couponList = self::where('uid', $uid)->order('is_fail ASC,status ASC,add_time DESC')->select()->toArray();
return self::tidyCouponList($couponList);
}
/**
* 获取用户优惠券(未使用)
* @return \think\response\Json
*/
public static function getUserValidCoupon($uid)
{
self::checkInvalidCoupon();
$couponList = self::where('uid', $uid)->where('status', 0)->order('is_fail ASC,status ASC,add_time DESC')->select()->toArray();
return self::tidyCouponList($couponList);
}
/**
* 获取用户优惠券(已使用)
* @return \think\response\Json
*/
public static function getUserAlreadyUsedCoupon($uid)
{
self::checkInvalidCoupon();
$couponList = self::where('uid', $uid)->where('status', 1)->order('is_fail ASC,status ASC,add_time DESC')->select()->toArray();
return self::tidyCouponList($couponList);
}
/**
* 获取用户优惠券(已过期)
* @return \think\response\Json
*/
public static function getUserBeOverdueCoupon($uid)
{
self::checkInvalidCoupon();
$couponList = self::where('uid', $uid)->where('status', 2)->order('is_fail ASC,status ASC,add_time DESC')->select()->toArray();
return self::tidyCouponList($couponList);
}
public static function beUsableCoupon($uid, $price)
{
return self::where('uid', $uid)->where('is_fail', 0)->where('status', 0)->where('use_min_price', '<=', $price)->find();
}
/**
* @param $uid
* @param $cartGroup
* @param $price
* @return array
*/
public static function getUsableCouponList($uid, $cartGroup, $price)
{
$model = new self();
$list = [];
$catePrice = [];
foreach ($cartGroup['valid'] as $value) {
if (!empty($value['seckill_id']) || !empty($value['bargain_id']) || !empty($value['combination_id'])) continue;
$value['cate_id'] = StoreProduct::where('id', $value['product_id'])->value('cate_id');
if (!isset($catePrice[$value['cate_id']])) $catePrice[$value['cate_id']] = 0;
$catePrice[$value['cate_id']] = bcadd(bcmul($value['truePrice'], $value['cart_num'], 2), $catePrice[$value['cate_id']], 2);
}
// var_dump($cartGroup['valid']);die;
foreach ($cartGroup['valid'] as $value) {
$lst1[] = $model->alias('a')
->join('store_coupon b', 'b.id=a.cid')
->where('a.uid', $uid)
->where('a.is_fail', 0)
->where('a.status', 0)
->where('a.use_min_price', '<=', bcmul($value['truePrice'], $value['cart_num'], 2))
->whereFindinSet('b.product_id', $value['product_id'])
->where('b.type', 2)
->field('a.*,b.type')
->order('a.coupon_price', 'DESC')
->select()
->hidden(['status', 'is_fail'])
->toArray();
}
foreach ($catePrice as $cateIds => $_price) {
$cateId = explode(',', $cateIds);
foreach ($cateId as $value) {
$temp[] = StoreCategory::where('id', $value)->value('pid');
}
$cateId = array_merge($cateId, $temp);
$cateId = array_filter(array_unique($cateId));
foreach ($cateId as $value) {
$lst2[] = $model->alias('a')
->join('store_coupon b', 'b.id=a.cid')
->where('a.uid', $uid)
->where('a.is_fail', 0)
->where('a.status', 0)
->where('a.use_min_price', '<=', $_price)
->whereFindinSet('b.category_id', $value)
->where('b.type', 1)
->field('a.*,b.type')
->order('a.coupon_price', 'DESC')
->select()
->hidden(['status', 'is_fail'])
->toArray();
}
}
if (isset($lst1)) {
foreach ($lst1 as $value) {
if ($value) {
foreach ($value as $v) {
if ($v) {
$list[] = $v;
}
}
}
}
}
if (isset($lst2)) {
foreach ($lst2 as $value) {
if ($value) {
foreach ($value as $v) {
if ($v) {
$list[] = $v;
}
}
}
}
}
$lst3 = $model->alias('a')
->join('store_coupon b', 'b.id=a.cid')
->where('a.uid', $uid)
->where('a.is_fail', 0)
->where('a.status', 0)
->where('a.use_min_price', '<=', $price)
->where('b.type', 0)
->field('a.*,b.type')
->order('a.coupon_price', 'DESC')
->select()
->hidden(['status', 'is_fail'])
->toArray();
$list = array_merge($list, $lst3);
$list = array_unique_fb($list);
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'];
}
return $list;
}
/**
* 获取用户可以使用的优惠券
* @param $uid
* @param $cartId
* @param $price
* @return false|\PDOStatement|string|\think\Collection
*/
public static function beUsableCouponList($uid, $cartId, $price = 0)
{
$cartGroup = StoreCart::getUserProductCartList($uid, $cartId, 1);
return self::getUsableCouponList($uid, $cartGroup, $price);
}
public static function validAddressWhere($model = null, $prefix = '')
{
self::checkInvalidCoupon();
if ($prefix) $prefix .= '.';
$model = self::getSelfModel($model);
return $model->where("{$prefix}is_fail", 0)->where("{$prefix}status", 0);
}
public static function checkInvalidCoupon()
{
self::where('end_time', '<', time())->where('status', 0)->update(['status' => 2]);
}
public static function tidyCouponList($couponList)
{
$time = time();
foreach ($couponList as $k => $coupon) {
$coupon['_add_time'] = date('Y/m/d', $coupon['add_time']);
$coupon['_end_time'] = date('Y/m/d', $coupon['end_time']);
$coupon['use_min_price'] = number_format($coupon['use_min_price'], 2);
$coupon['coupon_price'] = number_format($coupon['coupon_price'], 2);
if ($coupon['is_fail']) {
$coupon['_type'] = 0;
$coupon['_msg'] = '已失效';
} else if ($coupon['status'] == 1) {
$coupon['_type'] = 0;
$coupon['_msg'] = '已使用';
} else if ($coupon['status'] == 2) {
$coupon['_type'] = 0;
$coupon['_msg'] = '已过期';
} else if ($coupon['add_time'] > $time || $coupon['end_time'] < $time) {
$coupon['_type'] = 0;
$coupon['_msg'] = '已过期';
} else {
if ($coupon['add_time'] + 3600 * 24 > $time) {
$coupon['_type'] = 2;
$coupon['_msg'] = '可使用';
} else {
$coupon['_type'] = 1;
$coupon['_msg'] = '可使用';
}
}
$fn = StoreCoupon::get($coupon['cid']);
$coupon['applicable_type'] = 0;
if ($fn['product_id']) {
$coupon['applicable_type'] = 2;
} elseif ($fn['category_id']) {
$coupon['applicable_type'] = 1;
}
$couponList[$k] = $coupon;
}
return $couponList;
}
public static function getUserValidCouponCount($uid)
{
self::checkInvalidCoupon();
return self::where('uid', $uid)->where('status', 0)->order('is_fail ASC,status ASC,add_time DESC')->count();
}
public static function useCoupon($id)
{
return self::where('id', $id)->update(['status' => 1, 'use_time' => time()]);
}
public static function addUserCoupon($uid, $cid, $type = 'get')
{
$couponInfo = StoreCoupon::find($cid);
if (!$couponInfo) return self::setErrorInfo('优惠劵不存在!');
$data = [];
$data['cid'] = $couponInfo['id'];
$data['uid'] = $uid;
$data['coupon_title'] = $couponInfo['title'];
$data['coupon_price'] = $couponInfo['coupon_price'];
$data['use_min_price'] = $couponInfo['use_min_price'];
$data['add_time'] = time();
$data['end_time'] = $data['add_time'] + $couponInfo['coupon_time'] * 86400;
$data['type'] = $type;
return self::create($data);
}
}