]> source.dussan.org Git - redmine.git/commitdiff
Merged r13922 (#18896).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 18 Feb 2015 11:34:25 +0000 (11:34 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Wed, 18 Feb 2015 11:34:25 +0000 (11:34 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14021 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_list.html.erb
test/functional/issues_controller_test.rb

index 48b5860a70e5e045f9d0b4f38feea5f48466ae20..02486678229d130d586c4b7fb404a12e4cf74f87 100644 (file)
       <% end %>
     </tr>
   </thead>
-  <% previous_group = false %>
+  <% previous_group, first = false, true %>
   <tbody>
   <% issue_list(issues) do |issue, level| -%>
-  <% if @query.grouped? && (group = @query.group_by_column.value(issue)) != previous_group %>
+  <% if @query.grouped? && ((group = @query.group_by_column.value(issue)) != previous_group || first) %>
     <% reset_cycle %>
     <tr class="group open">
       <td colspan="<%= query.inline_columns.size + 2 %>">
@@ -27,7 +27,7 @@
                              "toggleAllRowGroups(this)", :class => 'toggle-all') %>
       </td>
     </tr>
-    <% previous_group = group %>
+    <% previous_group, first = group, false %>
   <% end %>
   <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
     <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td>
index 1e3498241cd701dccc2fcde5a2ce212719f6123b..0205e1c11fadf10975b3f85a177f2cc590a630ae 100644 (file)
@@ -305,11 +305,27 @@ class IssuesControllerTest < ActionController::TestCase
       assert_response :success
     end
 
+    assert_select 'tr.group', 3
     assert_select 'tr.group', :text => /Yes/
     assert_select 'tr.group', :text => /No/
     assert_select 'tr.group', :text => /none/
   end
 
+  def test_index_grouped_by_boolean_custom_field_with_false_group_in_first_position_should_show_the_group
+    cf = IssueCustomField.create!(:name => 'Bool', :is_for_all => true, :tracker_ids => [1,2,3], :field_format => 'bool', :is_filter => true)
+    CustomValue.create!(:custom_field => cf, :customized => Issue.find(1), :value => '0')
+    CustomValue.create!(:custom_field => cf, :customized => Issue.find(2), :value => '0')
+
+    with_settings :default_language => 'en' do
+      get :index, :project_id => 1, :set_filter => 1, "cf_#{cf.id}" => "*", :group_by => "cf_#{cf.id}"
+      assert_response :success
+      assert_equal [1, 2], assigns(:issues).map(&:id).sort
+    end
+
+    assert_select 'tr.group', 1
+    assert_select 'tr.group', :text => /No/
+  end
+
   def test_index_with_query_grouped_by_tracker_in_normal_order
     3.times {|i| Issue.generate!(:tracker_id => (i + 1))}