截流自动化的商城平台
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.

AccountLogLogic.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\account_log;
  20. use app\common\model\AccountLog;
  21. use think\Db;
  22. class AccountLogLogic{
  23. /**
  24. * 获取变动类型描述
  25. */
  26. public static function getTypeDesc($typeArr)
  27. {
  28. $temp = [];
  29. foreach($typeArr as $type) {
  30. $temp[] = ['id' => $type, 'name' => AccountLog::getAcccountDesc($type)];
  31. }
  32. return $temp;
  33. }
  34. /**
  35. * 获取常用时间段
  36. */
  37. public static function getTime(){
  38. $today_date = date('Y-m-d', time());
  39. $today_start = $today_date.' 00:00:00';
  40. $today_end = $today_date.' 23:59:59';
  41. $today = [$today_start, $today_end];
  42. $yesterday_date = date('Y-m-d', strtotime('-1 day'));
  43. $yesterday_start = $yesterday_date . ' 00:00:00';
  44. $yesterday_end = $yesterday_date . ' 23:59:59';
  45. $yesterday = [$yesterday_start, $yesterday_end];
  46. $ago7_date = date('Y-m-d', strtotime('-7 day'));
  47. $ago7_start = $ago7_date . ' 00:00:00';
  48. // $ago7_end = $ago7_date . ' 23:59:59';
  49. $ago7_end = $today_date . ' 23:59:59';
  50. $ago7 = [$ago7_start, $ago7_end];
  51. $ago30_date = date('Y-m-d', strtotime('-30 day'));
  52. $ago30_start = $ago30_date . ' 00:00:00';
  53. // $ago30_end = $ago30_date . ' 23:59:59';
  54. $ago30_end = $today_date . ' 23:59:59';
  55. $ago30 = [$ago30_start, $ago30_end];
  56. $time = [
  57. 'today' => $today,
  58. 'yesterday' => $yesterday,
  59. 'days_ago7' => $ago7,
  60. 'days_ago30' => $ago30,
  61. ];
  62. return $time;
  63. }
  64. public static function growthLists($get)
  65. {
  66. $where = [
  67. ['al.source_type', 'in', AccountLog::growth_change]
  68. ];
  69. if(isset($get['keyword']) && !empty($get['keyword'])) {
  70. $where[] = ['u.'.$get['keyword_type'], '=',$get['keyword']];
  71. }
  72. if(isset($get['order_source']) && !empty($get['order_source'])) {
  73. $where[] = ['al.source_type', '=', $get['order_source']];
  74. }
  75. if(isset($get['start_time']) && !empty($get['start_time'])) {
  76. $where[] = ['al.create_time', '>=', strtotime($get['start_time'])];
  77. }
  78. if(isset($get['end_time']) && !empty($get['end_time'])) {
  79. $where[] = ['al.create_time', '<=', strtotime($get['end_time'])];
  80. }
  81. $count = AccountLog::alias('al')
  82. ->leftJoin('user u', 'u.id=al.user_id')
  83. ->where($where)
  84. ->count();
  85. $lists = AccountLog::alias('al')
  86. ->field('al.*, u.nickname,u.sn,u.mobile')
  87. ->leftJoin('user u', 'u.id=al.user_id')
  88. ->where($where)
  89. ->order('create_time', 'desc')
  90. ->page($get['page'], $get['limit'])
  91. ->select()
  92. ->toArray();
  93. return [
  94. 'count' => $count,
  95. 'lists' => $lists
  96. ];
  97. }
  98. }