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.
educoder/app/views/attendances/statistics.json.jbuilder

10 lines
396 B

5 years ago
json.history_attendances @history_attendances.each_with_index.to_a do |attendance, index|
json.(attendance, :name, :attendance_date, :start_time, :end_time, :normal_rate, :absence_rate, :leave_rate)
json.index "签到#{index + 1}"
end
json.all_history_count @all_history_count
json.avg_normal_rate @avg_normal_rate
json.avg_absence_rate @avg_absence_rate
json.avg_leave_rate @avg_leave_rate