Project

General

Profile

Actions

Defect #8615

closed

Custom 'version' fields don't show shared versions

Added by Dmitry Salashnik almost 13 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
Custom fields
Target version:
Start date:
2011-06-15
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

subj.

for fix i change in file app\models\custom_fields.rb:

  def possible_values_options(obj=nil)
    case field_format
    when 'user', 'version'
      if obj.respond_to?(:project) && obj.project
        case field_format
        when 'user'
          obj.project.users.sort.collect {|u| [u.to_s, u.id.to_s]}
        when 'version'
          # CHANGES HERE (versions -> shared versions)
          obj.project.shared_versions.sort.collect {|u| [u.to_s, u.id.to_s]} 
        end
      elsif obj.is_a?(Array)
        obj.collect {|o| possible_values_options(o)}.inject {|memo, v| memo & v}
      else
        []
      end
    else
      read_attribute :possible_values
    end
  end


Related issues

Has duplicate Redmine - Defect #8483: Content in the new custom field "referencing version table" is empty in a subproject (sharing version)Closed2011-06-01

Actions
Actions #1

Updated by Etienne Massip almost 13 years ago

  • Category set to Custom fields
Actions #2

Updated by Gilles Cornu almost 13 years ago

+1

I also applied this patch, which is quite 'natural' when you use version sharing option. It could be nice to let configure the custom field type 'version' between two modes :
  • project versions only
    OR
  • shared versions
Actions #3

Updated by Vili Kosednar over 12 years ago

Hi,

how to make it show only not closed shared versions in the custom field?

brv

Actions #4

Updated by Jean-Philippe Lang over 12 years ago

  • Tracker changed from Patch to Defect
  • Subject changed from Custom 'version' field don't show shared versions to Custom 'version' fields don't show shared versions
  • Status changed from New to Closed
  • Target version set to 1.2.2
  • Affected version (unused) set to 1.2.1
  • Resolution set to Fixed
  • Affected version set to 1.2.1

Fixed in r7772 with tests and merged in 1.2-stable.
Thanks.

Actions

Also available in: Atom PDF