mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Fixed that issue counts are 0 on project overview (#26376).
git-svn-id: http://svn.redmine.org/redmine/trunk@16766 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e1ff7c1848
commit
d2cc2f9dca
@ -147,7 +147,6 @@ class ProjectsController < ApplicationController
|
||||
end
|
||||
|
||||
@users_by_role = @project.users_by_role
|
||||
@subprojects = @project.children.visible.to_a
|
||||
@news = @project.news.limit(5).includes(:author, :project).reorder("#{News.table_name}.created_on DESC").to_a
|
||||
@trackers = @project.rolled_up_trackers.visible
|
||||
|
||||
@ -160,6 +159,8 @@ class ProjectsController < ApplicationController
|
||||
@total_hours = TimeEntry.visible.where(cond).sum(:hours).to_f
|
||||
end
|
||||
|
||||
@subprojects = @project.children.visible.to_a
|
||||
|
||||
@key = User.current.rss_key
|
||||
|
||||
respond_to do |format|
|
||||
|
||||
@ -59,7 +59,7 @@
|
||||
<td>
|
||||
<%= link_to (@total_issues_by_tracker[tracker].to_i - @open_issues_by_tracker[tracker].to_i), project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => 'c') %>
|
||||
</td>
|
||||
<td>
|
||||
<td class="total">
|
||||
<%= link_to @total_issues_by_tracker[tracker].to_i, project_issues_path(@project, :set_filter => 1, :tracker_id => tracker.id, :status_id => '*') %>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -543,6 +543,16 @@ class ProjectsControllerTest < Redmine::ControllerTest
|
||||
assert_select 'a', :text => /Private child/
|
||||
end
|
||||
|
||||
def test_show_by_member_on_leaf_project_should_display_issue_counts
|
||||
@request.session[:user_id] = 2
|
||||
get :show, :params => {
|
||||
:id => 'onlinestore'
|
||||
}
|
||||
assert_response :success
|
||||
# Make sure there's a > 0 issue count
|
||||
assert_select 'table.issue-report td.total a', :text => %r{\A[1-9]\d*\z}
|
||||
end
|
||||
|
||||
def test_settings
|
||||
@request.session[:user_id] = 2 # manager
|
||||
get :settings, :params => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user