statistics_utils.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. /**
  3. * 统计分析工具函数
  4. *
  5. * 包含所有统计模块共用的工具函数和日期处理逻辑
  6. */
  7. // 确保直接访问时需要先登录
  8. require_once 'conn.php';
  9. if (!isset($_SESSION['employee_id'])) {
  10. checkLogin();
  11. }
  12. /**
  13. * 获取和处理日期范围参数
  14. *
  15. * @return array 包含开始日期、结束日期和其他日期相关参数
  16. */
  17. function getDateRangeParams() {
  18. // 计算日期范围
  19. $current_month_start = date('Y-m-01');
  20. $current_month_end = date('Y-m-t');
  21. $last_month_start = date('Y-m-01', strtotime('-1 month'));
  22. $last_month_end = date('Y-m-t', strtotime('-1 month'));
  23. $current_year_start = date('Y-01-01');
  24. $current_year_end = date('Y-12-31');
  25. // 可选的日期范围筛选
  26. $date_range = isset($_GET['date_range']) ? $_GET['date_range'] : 'current_month';
  27. $custom_start = isset($_GET['start_date']) ? $_GET['start_date'] : '';
  28. $custom_end = isset($_GET['end_date']) ? $_GET['end_date'] : '';
  29. $period = isset($_GET['period']) ? $_GET['period'] : 'day';
  30. // 设置日期范围
  31. if ($date_range == 'custom' && !empty($custom_start) && !empty($custom_end)) {
  32. $start_date = $custom_start;
  33. $end_date = $custom_end;
  34. } else {
  35. switch ($date_range) {
  36. case 'last_month':
  37. $start_date = $last_month_start;
  38. $end_date = $last_month_end;
  39. break;
  40. case 'current_year':
  41. $start_date = $current_year_start;
  42. $end_date = $current_year_end;
  43. break;
  44. case 'last_30_days':
  45. $start_date = date('Y-m-d', strtotime('-30 days'));
  46. $end_date = date('Y-m-d');
  47. break;
  48. case 'last_90_days':
  49. $start_date = date('Y-m-d', strtotime('-90 days'));
  50. $end_date = date('Y-m-d');
  51. break;
  52. case 'current_month':
  53. default:
  54. $start_date = $current_month_start;
  55. $end_date = $current_month_end;
  56. break;
  57. }
  58. }
  59. // 格式化日期用于SQL查询
  60. $start_date_sql = date('Y-m-d', strtotime($start_date));
  61. $end_date_sql = date('Y-m-d', strtotime($end_date)) . ' 23:59:59';
  62. return [
  63. 'date_range' => $date_range,
  64. 'custom_start' => $custom_start,
  65. 'custom_end' => $custom_end,
  66. 'period' => $period,
  67. 'start_date' => $start_date,
  68. 'end_date' => $end_date,
  69. 'start_date_sql' => $start_date_sql,
  70. 'end_date_sql' => $end_date_sql
  71. ];
  72. }
  73. /**
  74. * 生成图表颜色数组
  75. *
  76. * @param int $count 需要的颜色数量
  77. * @param bool $transparent 是否透明
  78. * @return array 背景色和边框色数组
  79. */
  80. function generateChartColors($count = 10, $transparent = true) {
  81. $colors = [
  82. ['rgba(255, 99, 132, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 99, 132, 1)'],
  83. ['rgba(54, 162, 235, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(54, 162, 235, 1)'],
  84. ['rgba(255, 206, 86, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 206, 86, 1)'],
  85. ['rgba(75, 192, 192, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(75, 192, 192, 1)'],
  86. ['rgba(153, 102, 255, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(153, 102, 255, 1)'],
  87. ['rgba(255, 159, 64, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 159, 64, 1)'],
  88. ['rgba(199, 199, 199, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(199, 199, 199, 1)'],
  89. ['rgba(83, 102, 255, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(83, 102, 255, 1)'],
  90. ['rgba(40, 159, 64, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(40, 159, 64, 1)'],
  91. ['rgba(210, 199, 199, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(210, 199, 199, 1)']
  92. ];
  93. $result = [];
  94. // 确保有足够的颜色
  95. while (count($result) < $count) {
  96. foreach ($colors as $color) {
  97. $result[] = $color;
  98. if (count($result) >= $count) {
  99. break;
  100. }
  101. }
  102. }
  103. return array_slice($result, 0, $count);
  104. }
  105. /**
  106. * 格式化数值,处理空值和小数位数
  107. *
  108. * @param mixed $value 要格式化的值
  109. * @param int $decimals 小数位数
  110. * @return string 格式化后的数值
  111. */
  112. function formatNumber($value, $decimals = 2) {
  113. if ($value === null || $value === '') {
  114. return '0';
  115. }
  116. return number_format((float)$value, $decimals);
  117. }