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.
186 lines
6.4 KiB
186 lines
6.4 KiB
<?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\user;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\user\UserRecharge;
|
|
|
|
/**
|
|
*
|
|
* Class UserRechargeDao
|
|
* @package app\dao\user
|
|
*/
|
|
class UserRechargeDao extends BaseDao
|
|
{
|
|
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return UserRecharge::class;
|
|
}
|
|
|
|
/**
|
|
* 获取充值记录
|
|
* @param array $where
|
|
* @param string $filed
|
|
* @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 getList(array $where, string $filed = "*", int $page = 0, int $limit = 0, array $with = [])
|
|
{
|
|
return $this->search($where)->field($filed)->with(array_merge([
|
|
'user' => function ($query) {
|
|
$query->field('uid,phone,nickname,avatar,delete_time');
|
|
}], $with))->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->order('id desc')->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* 获取某个字段总和
|
|
* @param array $where
|
|
* @param string $field
|
|
* @return float
|
|
*/
|
|
public function getWhereSumField(array $where, string $field)
|
|
{
|
|
return $this->search($where)
|
|
->when(isset($where['timeKey']), function ($query) use ($where) {
|
|
$query->whereBetweenTime('pay_time', $where['timeKey']['start_time'], $where['timeKey']['end_time']);
|
|
})
|
|
->sum($field);
|
|
}
|
|
|
|
/**
|
|
* 根据某字段分组查询
|
|
* @param array $where
|
|
* @param string $field
|
|
* @param string $group
|
|
* @return mixed
|
|
*/
|
|
public function getGroupField(array $where, string $field, string $group)
|
|
{
|
|
return $this->search($where)
|
|
->when(isset($where['timeKey']), function ($query) use ($where, $field, $group) {
|
|
$query->whereBetweenTime('pay_time', $where['timeKey']['start_time'], $where['timeKey']['end_time']);
|
|
if ($where['timeKey']['days'] == 1) {
|
|
$timeUinx = "%H";
|
|
} elseif ($where['timeKey']['days'] == 30) {
|
|
$timeUinx = "%Y-%m-%d";
|
|
} elseif ($where['timeKey']['days'] == 365) {
|
|
$timeUinx = "%Y-%m";
|
|
} elseif ($where['timeKey']['days'] > 1 && $where['timeKey']['days'] < 30) {
|
|
$timeUinx = "%Y-%m-%d";
|
|
} elseif ($where['timeKey']['days'] > 30 && $where['timeKey']['days'] < 365) {
|
|
$timeUinx = "%Y-%m";
|
|
} else {
|
|
$timeUinx = "%Y-%m";
|
|
}
|
|
$query->field("sum($field) as number,FROM_UNIXTIME($group, '$timeUinx') as time");
|
|
$query->group("FROM_UNIXTIME($group, '$timeUinx')");
|
|
})
|
|
->order('add_time ASC')->select()->toArray();
|
|
|
|
}
|
|
|
|
/**
|
|
* 获取充值统计曲线
|
|
* @param $time
|
|
* @param $type
|
|
* @param $timeType
|
|
* @param string $str
|
|
* @return mixed
|
|
*/
|
|
public function getTrendData($time, $type, $timeType, $str = 'count(id)')
|
|
{
|
|
return $this->getModel()->when($type != '', function ($query) use ($type) {
|
|
$query->where('channel_type', $type);
|
|
})->where('paid', 1)->where(function ($query) use ($time) {
|
|
if ($time[0] == $time[1]) {
|
|
$query->whereDay('pay_time', $time[0]);
|
|
} else {
|
|
$time[1] = date('Y/m/d', strtotime($time[1]) + 86400);
|
|
$query->whereTime('pay_time', 'between', $time);
|
|
}
|
|
})->field("FROM_UNIXTIME(pay_time,'$timeType') as days, " . $str . "as num")
|
|
->group('days')->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* 每月统计数据
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @return array
|
|
*/
|
|
public function getDataPriceCount(array $where, array $field, int $page = 0, int $limit = 0)
|
|
{
|
|
return $this->search($where)
|
|
->field($field)->group("FROM_UNIXTIME(add_time, '%Y-%m-%d')")
|
|
->order('add_time DESC')->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @param array $time
|
|
* @param string $timeType
|
|
* @param string $countField
|
|
* @param string $sumField
|
|
* @param string $groupField
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function rechargeAddTimeList(array $where, array $time, string $timeType = "week", string $countField = '*', string $sumField = 'price', string $groupField = 'add_time')
|
|
{
|
|
return $this->getModel()->where($where)->where('paid', 1)
|
|
->where(isset($where['timekey']) && $where['timekey'] ? $where['timekey'] : 'add_time', 'between time', $time)
|
|
->when($timeType, function ($query) use ($timeType, $countField, $sumField, $groupField) {
|
|
switch ($timeType) {
|
|
case "hour":
|
|
$timeUnix = "%H";
|
|
break;
|
|
case "day" :
|
|
$timeUnix = "%Y-%m-%d";
|
|
break;
|
|
case "week" :
|
|
$timeUnix = "%w";
|
|
break;
|
|
case "month" :
|
|
$timeUnix = "%d";
|
|
break;
|
|
case "weekly" :
|
|
$timeUnix = "%W";
|
|
break;
|
|
case "year" :
|
|
$timeUnix = "%Y-%m";
|
|
break;
|
|
default:
|
|
$timeUnix = "%Y-%m-%d";
|
|
break;
|
|
}
|
|
$query->field("FROM_UNIXTIME(`" . $groupField . "`,'$timeUnix') as day,count(" . $countField . ") as count,sum(`" . $sumField . "`) as price");
|
|
$query->group('day');
|
|
})->order('add_time asc')->select()->toArray();
|
|
}
|
|
}
|
|
|