我正在尝试为 Rails 中的表设置逻辑。基本上它是一个时间表应用程序,我想做的是设置它,如果你达到目标,它会显示为绿色。如果您快到了,则为黄色。如果你还没有接近,那就是红色。我在下面的代码有效。但是看看我的日志,它似乎效率低下。我怎样才能写得更好?
这是视图。用户/hours.html.erb
<div class="page-header"><h1>Weekly Timesheets</h1></div>
<table class="nicetable table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Total Hours</th>
<th>Role</th>
<th>Change Role</th>
<th>Timesheet</th>
</tr>
</thead>
<tbody>
<% @users.each do |user| %>
<tr class="<%= 'success' if user.has_role? :staff and user.add_hours >= 10 %><%= 'warning' if user.has_role? :staff and user.add_hours < 10 and user.add_hours > 6 %><%= 'error' if user.has_role? :staff and user.add_hours >= 0 and user.add_hours <= 6 %><%= 'success' if user.has_role? :new_staff and user.add_hours >= 15 %><%= 'warning' if user.has_role? :new_staff and user.add_hours < 15 and user.add_hours >= 12 %><%= 'error' if user.has_role? :new_staff and user.add_hours < 12 and user.add_hours >= 0 %>">
<td><%= user.name%></td>
<td><%= user.email %></td>
<td><%= user.add_hours %></td>
<td><%= user.roles.first.name.titleize unless user.roles.first.nil? %></td>
<td>
<a data-toggle="modal" href="#role-options-<%= user.id %>" class="btn btn-mini" type="button">Change role</a>
<%= render user %>
</td>
<td><%= link_to 'Timesheet', user_timesheets_path(user, @timesheets), class: "btn btn-mini" %>
</tr>
这是我的用户模型。
def add_hours
self.timesheets.where('day BETWEEN ? AND ?', Date.today.beginning_of_week, Date.today.end_of_week).order('created_at DESC').sum{|p| p.teacher + p.conversation + p.study}
end