123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
- namespace app\admin\logic\account_log;
- use app\common\model\AccountLog;
- use think\Db;
-
- class AccountLogLogic{
- /**
- * 获取变动类型描述
- */
- public static function getTypeDesc($typeArr)
- {
- $temp = [];
- foreach($typeArr as $type) {
- $temp[] = ['id' => $type, 'name' => AccountLog::getAcccountDesc($type)];
- }
- return $temp;
- }
-
- /**
- * 获取常用时间段
- */
- public static function getTime(){
- $today_date = date('Y-m-d', time());
- $today_start = $today_date.' 00:00:00';
- $today_end = $today_date.' 23:59:59';
- $today = [$today_start, $today_end];
-
- $yesterday_date = date('Y-m-d', strtotime('-1 day'));
- $yesterday_start = $yesterday_date . ' 00:00:00';
- $yesterday_end = $yesterday_date . ' 23:59:59';
- $yesterday = [$yesterday_start, $yesterday_end];
-
- $ago7_date = date('Y-m-d', strtotime('-7 day'));
- $ago7_start = $ago7_date . ' 00:00:00';
- // $ago7_end = $ago7_date . ' 23:59:59';
- $ago7_end = $today_date . ' 23:59:59';
- $ago7 = [$ago7_start, $ago7_end];
-
- $ago30_date = date('Y-m-d', strtotime('-30 day'));
- $ago30_start = $ago30_date . ' 00:00:00';
- // $ago30_end = $ago30_date . ' 23:59:59';
- $ago30_end = $today_date . ' 23:59:59';
- $ago30 = [$ago30_start, $ago30_end];
-
- $time = [
- 'today' => $today,
- 'yesterday' => $yesterday,
- 'days_ago7' => $ago7,
- 'days_ago30' => $ago30,
- ];
-
- return $time;
- }
-
- public static function growthLists($get)
- {
- $where = [
- ['al.source_type', 'in', AccountLog::growth_change]
- ];
-
- if(isset($get['keyword']) && !empty($get['keyword'])) {
- $where[] = ['u.'.$get['keyword_type'], '=',$get['keyword']];
- }
- if(isset($get['order_source']) && !empty($get['order_source'])) {
- $where[] = ['al.source_type', '=', $get['order_source']];
- }
-
- if(isset($get['start_time']) && !empty($get['start_time'])) {
- $where[] = ['al.create_time', '>=', strtotime($get['start_time'])];
- }
-
- if(isset($get['end_time']) && !empty($get['end_time'])) {
- $where[] = ['al.create_time', '<=', strtotime($get['end_time'])];
- }
-
- $count = AccountLog::alias('al')
- ->leftJoin('user u', 'u.id=al.user_id')
- ->where($where)
- ->count();
- $lists = AccountLog::alias('al')
- ->field('al.*, u.nickname,u.sn,u.mobile')
- ->leftJoin('user u', 'u.id=al.user_id')
- ->where($where)
- ->order('create_time', 'desc')
- ->page($get['page'], $get['limit'])
- ->select()
- ->toArray();
- return [
- 'count' => $count,
- 'lists' => $lists
- ];
- }
- }
|