2008-02-27 23:50:19 +03:00
|
|
|
<div class="contextual">
|
|
|
|
<%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}, :class => 'icon icon-details') %>
|
|
|
|
<%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :project_id => @project, :issue_id => @issue}, :class => 'icon icon-time' %>
|
|
|
|
</div>
|
|
|
|
|
2007-06-24 20:07:06 +04:00
|
|
|
<h2><%= l(:label_spent_time) %></h2>
|
|
|
|
|
2008-04-01 23:40:40 +04:00
|
|
|
<% form_remote_tag(:url => {}, :update => 'content') do %>
|
2007-06-24 20:07:06 +04:00
|
|
|
<% @criterias.each do |criteria| %>
|
2008-04-02 02:42:10 +04:00
|
|
|
<%= hidden_field_tag 'criterias[]', criteria, :id => nil %>
|
2007-06-24 20:07:06 +04:00
|
|
|
<% end %>
|
2008-04-01 23:40:40 +04:00
|
|
|
<%= hidden_field_tag 'project_id', params[:project_id] %>
|
|
|
|
<%= render :partial => 'date_range' %>
|
2008-04-02 02:42:10 +04:00
|
|
|
|
2008-04-01 23:40:40 +04:00
|
|
|
<p><%= l(:label_details) %>: <%= select_tag 'columns', options_for_select([[l(:label_year), 'year'],
|
|
|
|
[l(:label_month), 'month'],
|
|
|
|
[l(:label_week), 'week']], @columns),
|
|
|
|
:onchange => "this.form.onsubmit();" %>
|
2007-06-24 20:07:06 +04:00
|
|
|
|
2008-04-01 23:40:40 +04:00
|
|
|
<%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l(@available_criterias[k][:label]), k]}),
|
2008-02-27 23:50:19 +03:00
|
|
|
:onchange => "this.form.onsubmit();",
|
|
|
|
:style => 'width: 200px',
|
2008-04-02 02:42:10 +04:00
|
|
|
:id => nil,
|
2008-02-27 23:50:19 +03:00
|
|
|
:disabled => (@criterias.length >= 3)) %>
|
|
|
|
<%= link_to_remote l(:button_clear), {:url => {:project_id => @project, :date_from => @date_from, :date_to => @date_to, :period => @columns}, :update => 'content'},
|
|
|
|
:class => 'icon icon-reload' %></p>
|
2008-04-01 23:40:40 +04:00
|
|
|
<% end %>
|
|
|
|
|
2008-02-27 23:50:19 +03:00
|
|
|
<% unless @criterias.empty? %>
|
|
|
|
<div class="total-hours">
|
|
|
|
<p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p>
|
|
|
|
</div>
|
2007-06-24 20:07:06 +04:00
|
|
|
|
2008-02-27 23:50:19 +03:00
|
|
|
<% unless @hours.empty? %>
|
|
|
|
<table class="list" id="time-report">
|
2007-06-24 20:07:06 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<% @criterias.each do |criteria| %>
|
2008-04-02 02:42:10 +04:00
|
|
|
<th><%= l(@available_criterias[criteria][:label]) %></th>
|
2007-06-24 20:07:06 +04:00
|
|
|
<% end %>
|
|
|
|
<% @periods.each do |period| %>
|
2008-04-02 02:42:10 +04:00
|
|
|
<th class="period" width="<%= (40 / @periods.length).to_i %>%"><%= period %></th>
|
2007-06-24 20:07:06 +04:00
|
|
|
<% end %>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<%= render :partial => 'report_criteria', :locals => {:criterias => @criterias, :hours => @hours, :level => 0} %>
|
2008-02-27 23:50:19 +03:00
|
|
|
<tr class="total">
|
|
|
|
<td><%= l(:label_total) %></td>
|
|
|
|
<%= '<td></td>' * (@criterias.size - 1) %>
|
|
|
|
<% @periods.each do |period| -%>
|
|
|
|
<% sum = sum_hours(select_hours(@hours, @columns, period.to_s)) %>
|
|
|
|
<td class="hours"><%= html_hours("%.2f" % sum) if sum > 0 %></td>
|
|
|
|
<% end -%>
|
|
|
|
</tr>
|
2007-06-24 20:07:06 +04:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2008-04-02 02:42:10 +04:00
|
|
|
|
|
|
|
<% html_title l(:label_spent_time), l(:label_report) %>
|
|
|
|
|