summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2018-12-16 16:01:00 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2018-12-16 16:01:00 +0000
commit537f162f27d91ad99fadd4be74c878adf33f0583 (patch)
tree0106f7c2e4eaace4ca5e3be98db96ef819587cd0
parent22f93b566d8117cabe2cca5711dafc79dc6e44bf (diff)
downloadredmine-537f162f27d91ad99fadd4be74c878adf33f0583.tar.gz
redmine-537f162f27d91ad99fadd4be74c878adf33f0583.zip
Moved Version#fixed_issues extension to a module (#30115).
Patch by Jérôme BATAILLE. git-svn-id: http://svn.redmine.org/redmine/trunk@17754 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/models/version.rb166
1 files changed, 84 insertions, 82 deletions
diff --git a/app/models/version.rb b/app/models/version.rb
index 5626750f8..2ccea2fda 100644
--- a/app/models/version.rb
+++ b/app/models/version.rb
@@ -15,104 +15,106 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-class Version < ActiveRecord::Base
- include Redmine::SafeAttributes
-
- after_update :update_issues_from_sharing_change
- after_save :update_default_project_version
- before_destroy :nullify_projects_default_version
+module FixedIssuesExtension
+ # Returns the total estimated time for this version
+ # (sum of leaves estimated_hours)
+ def estimated_hours
+ @estimated_hours ||= sum(:estimated_hours).to_f
+ end
+ #
+ # Returns the total amount of open issues for this version.
+ def open_count
+ load_counts
+ @open_count
+ end
- belongs_to :project
- has_many :fixed_issues, :class_name => 'Issue', :foreign_key => 'fixed_version_id', :dependent => :nullify do
- # Returns the total estimated time for this version
- # (sum of leaves estimated_hours)
- def estimated_hours
- @estimated_hours ||= sum(:estimated_hours).to_f
- end
- #
- # Returns the total amount of open issues for this version.
- def open_count
- load_counts
- @open_count
- end
+ # Returns the total amount of closed issues for this version.
+ def closed_count
+ load_counts
+ @closed_count
+ end
- # Returns the total amount of closed issues for this version.
- def closed_count
- load_counts
- @closed_count
+ # Returns the completion percentage of this version based on the amount of open/closed issues
+ # and the time spent on the open issues.
+ def completed_percent
+ if count == 0
+ 0
+ elsif open_count == 0
+ 100
+ else
+ issues_progress(false) + issues_progress(true)
end
+ end
- # Returns the completion percentage of this version based on the amount of open/closed issues
- # and the time spent on the open issues.
- def completed_percent
- if count == 0
- 0
- elsif open_count == 0
- 100
- else
- issues_progress(false) + issues_progress(true)
- end
+ # Returns the percentage of issues that have been marked as 'closed'.
+ def closed_percent
+ if count == 0
+ 0
+ else
+ issues_progress(false)
end
+ end
- # Returns the percentage of issues that have been marked as 'closed'.
- def closed_percent
- if count == 0
- 0
- else
- issues_progress(false)
- end
- end
+ private
- private
-
- def load_counts
- unless @open_count
- @open_count = 0
- @closed_count = 0
- self.group(:status).count.each do |status, count|
- if status.is_closed?
- @closed_count += count
- else
- @open_count += count
- end
+ def load_counts
+ unless @open_count
+ @open_count = 0
+ @closed_count = 0
+ self.group(:status).count.each do |status, count|
+ if status.is_closed?
+ @closed_count += count
+ else
+ @open_count += count
end
end
end
+ end
- # Returns the average estimated time of assigned issues
- # or 1 if no issue has an estimated time
- # Used to weight unestimated issues in progress calculation
- def estimated_average
- if @estimated_average.nil?
- average = average(:estimated_hours).to_f
- if average == 0
- average = 1
- end
- @estimated_average = average
+ # Returns the average estimated time of assigned issues
+ # or 1 if no issue has an estimated time
+ # Used to weight unestimated issues in progress calculation
+ def estimated_average
+ if @estimated_average.nil?
+ average = average(:estimated_hours).to_f
+ if average == 0
+ average = 1
end
- @estimated_average
+ @estimated_average = average
end
-
- # Returns the total progress of open or closed issues. The returned percentage takes into account
- # the amount of estimated time set for this version.
- #
- # Examples:
- # issues_progress(true) => returns the progress percentage for open issues.
- # issues_progress(false) => returns the progress percentage for closed issues.
- def issues_progress(open)
- @issues_progress ||= {}
- @issues_progress[open] ||= begin
- progress = 0
- if count > 0
- ratio = open ? 'done_ratio' : 100
-
- done = open(open).sum("COALESCE(estimated_hours, #{estimated_average}) * #{ratio}").to_f
- progress = done / (estimated_average * count)
- end
- progress
+ @estimated_average
+ end
+
+ # Returns the total progress of open or closed issues. The returned percentage takes into account
+ # the amount of estimated time set for this version.
+ #
+ # Examples:
+ # issues_progress(true) => returns the progress percentage for open issues.
+ # issues_progress(false) => returns the progress percentage for closed issues.
+ def issues_progress(open)
+ @issues_progress ||= {}
+ @issues_progress[open] ||= begin
+ progress = 0
+ if count > 0
+ ratio = open ? 'done_ratio' : 100
+
+ done = open(open).sum("COALESCE(estimated_hours, #{estimated_average}) * #{ratio}").to_f
+ progress = done / (estimated_average * count)
end
+ progress
end
end
+end
+
+class Version < ActiveRecord::Base
+ include Redmine::SafeAttributes
+
+ after_update :update_issues_from_sharing_change
+ after_save :update_default_project_version
+ before_destroy :nullify_projects_default_version
+
+ belongs_to :project
+ has_many :fixed_issues, :class_name => 'Issue', :foreign_key => 'fixed_version_id', :dependent => :nullify, :extend => FixedIssuesExtension
acts_as_customizable
acts_as_attachable :view_permission => :view_files,