remove trailing white-spaces excluding SQL from issue model source.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5810 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
2d7ce91e80
commit
42a367b258
@ -5,19 +5,19 @@
|
|||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
# as published by the Free Software Foundation; either version 2
|
# as published by the Free Software Foundation; either version 2
|
||||||
# of the License, or (at your option) any later version.
|
# of the License, or (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
class Issue < ActiveRecord::Base
|
class Issue < ActiveRecord::Base
|
||||||
include Redmine::SafeAttributes
|
include Redmine::SafeAttributes
|
||||||
|
|
||||||
belongs_to :project
|
belongs_to :project
|
||||||
belongs_to :tracker
|
belongs_to :tracker
|
||||||
belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
|
belongs_to :status, :class_name => 'IssueStatus', :foreign_key => 'status_id'
|
||||||
@ -30,10 +30,10 @@ class Issue < ActiveRecord::Base
|
|||||||
has_many :journals, :as => :journalized, :dependent => :destroy
|
has_many :journals, :as => :journalized, :dependent => :destroy
|
||||||
has_many :time_entries, :dependent => :delete_all
|
has_many :time_entries, :dependent => :delete_all
|
||||||
has_and_belongs_to_many :changesets, :order => "#{Changeset.table_name}.committed_on ASC, #{Changeset.table_name}.id ASC"
|
has_and_belongs_to_many :changesets, :order => "#{Changeset.table_name}.committed_on ASC, #{Changeset.table_name}.id ASC"
|
||||||
|
|
||||||
has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
|
has_many :relations_from, :class_name => 'IssueRelation', :foreign_key => 'issue_from_id', :dependent => :delete_all
|
||||||
has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
|
has_many :relations_to, :class_name => 'IssueRelation', :foreign_key => 'issue_to_id', :dependent => :delete_all
|
||||||
|
|
||||||
acts_as_nested_set :scope => 'root_id', :dependent => :destroy
|
acts_as_nested_set :scope => 'root_id', :dependent => :destroy
|
||||||
acts_as_attachable :after_remove => :attachment_removed
|
acts_as_attachable :after_remove => :attachment_removed
|
||||||
acts_as_customizable
|
acts_as_customizable
|
||||||
@ -45,7 +45,7 @@ class Issue < ActiveRecord::Base
|
|||||||
acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"},
|
acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"},
|
||||||
:url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}},
|
:url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}},
|
||||||
:type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }
|
:type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }
|
||||||
|
|
||||||
acts_as_activity_provider :find_options => {:include => [:project, :author, :tracker]},
|
acts_as_activity_provider :find_options => {:include => [:project, :author, :tracker]},
|
||||||
:author_key => :author_id
|
:author_key => :author_id
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ class Issue < ActiveRecord::Base
|
|||||||
|
|
||||||
named_scope :visible, lambda {|*args| { :include => :project,
|
named_scope :visible, lambda {|*args| { :include => :project,
|
||||||
:conditions => Issue.visible_condition(args.shift || User.current, *args) } }
|
:conditions => Issue.visible_condition(args.shift || User.current, *args) } }
|
||||||
|
|
||||||
named_scope :open, :conditions => ["#{IssueStatus.table_name}.is_closed = ?", false], :include => :status
|
named_scope :open, :conditions => ["#{IssueStatus.table_name}.is_closed = ?", false], :include => :status
|
||||||
|
|
||||||
named_scope :recently_updated, :order => "#{Issue.table_name}.updated_on DESC"
|
named_scope :recently_updated, :order => "#{Issue.table_name}.updated_on DESC"
|
||||||
@ -85,7 +85,7 @@ class Issue < ActiveRecord::Base
|
|||||||
before_save :close_duplicates, :update_done_ratio_from_issue_status
|
before_save :close_duplicates, :update_done_ratio_from_issue_status
|
||||||
after_save :reschedule_following_issues, :update_nested_set_attributes, :update_parent_attributes, :create_journal
|
after_save :reschedule_following_issues, :update_nested_set_attributes, :update_parent_attributes, :create_journal
|
||||||
after_destroy :update_parent_attributes
|
after_destroy :update_parent_attributes
|
||||||
|
|
||||||
# Returns a SQL conditions string used to find all issues visible by the specified user
|
# Returns a SQL conditions string used to find all issues visible by the specified user
|
||||||
def self.visible_condition(user, options={})
|
def self.visible_condition(user, options={})
|
||||||
Project.allowed_to_condition(user, :view_issues, options) do |role, user|
|
Project.allowed_to_condition(user, :view_issues, options) do |role, user|
|
||||||
@ -117,7 +117,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def after_initialize
|
def after_initialize
|
||||||
if new_record?
|
if new_record?
|
||||||
# set default values for new records only
|
# set default values for new records only
|
||||||
@ -125,12 +125,12 @@ class Issue < ActiveRecord::Base
|
|||||||
self.priority ||= IssuePriority.default
|
self.priority ||= IssuePriority.default
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Overrides Redmine::Acts::Customizable::InstanceMethods#available_custom_fields
|
# Overrides Redmine::Acts::Customizable::InstanceMethods#available_custom_fields
|
||||||
def available_custom_fields
|
def available_custom_fields
|
||||||
(project && tracker) ? (project.all_issue_custom_fields & tracker.custom_fields.all) : []
|
(project && tracker) ? (project.all_issue_custom_fields & tracker.custom_fields.all) : []
|
||||||
end
|
end
|
||||||
|
|
||||||
def copy_from(arg)
|
def copy_from(arg)
|
||||||
issue = arg.is_a?(Issue) ? arg : Issue.visible.find(arg)
|
issue = arg.is_a?(Issue) ? arg : Issue.visible.find(arg)
|
||||||
self.attributes = issue.attributes.dup.except("id", "root_id", "parent_id", "lft", "rgt", "created_on", "updated_on")
|
self.attributes = issue.attributes.dup.except("id", "root_id", "parent_id", "lft", "rgt", "created_on", "updated_on")
|
||||||
@ -138,7 +138,7 @@ class Issue < ActiveRecord::Base
|
|||||||
self.status = issue.status
|
self.status = issue.status
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
# Moves/copies an issue to a new project and tracker
|
# Moves/copies an issue to a new project and tracker
|
||||||
# Returns the moved/copied issue on success, false on failure
|
# Returns the moved/copied issue on success, false on failure
|
||||||
def move_to_project(*args)
|
def move_to_project(*args)
|
||||||
@ -146,11 +146,11 @@ class Issue < ActiveRecord::Base
|
|||||||
move_to_project_without_transaction(*args) || raise(ActiveRecord::Rollback)
|
move_to_project_without_transaction(*args) || raise(ActiveRecord::Rollback)
|
||||||
end || false
|
end || false
|
||||||
end
|
end
|
||||||
|
|
||||||
def move_to_project_without_transaction(new_project, new_tracker = nil, options = {})
|
def move_to_project_without_transaction(new_project, new_tracker = nil, options = {})
|
||||||
options ||= {}
|
options ||= {}
|
||||||
issue = options[:copy] ? self.class.new.copy_from(self) : self
|
issue = options[:copy] ? self.class.new.copy_from(self) : self
|
||||||
|
|
||||||
if new_project && issue.project_id != new_project.id
|
if new_project && issue.project_id != new_project.id
|
||||||
# delete issue relations
|
# delete issue relations
|
||||||
unless Setting.cross_project_issue_relations?
|
unless Setting.cross_project_issue_relations?
|
||||||
@ -197,7 +197,7 @@ class Issue < ActiveRecord::Base
|
|||||||
else
|
else
|
||||||
# Manually update project_id on related time entries
|
# Manually update project_id on related time entries
|
||||||
TimeEntry.update_all("project_id = #{new_project.id}", {:issue_id => id})
|
TimeEntry.update_all("project_id = #{new_project.id}", {:issue_id => id})
|
||||||
|
|
||||||
issue.children.each do |child|
|
issue.children.each do |child|
|
||||||
unless child.move_to_project_without_transaction(new_project)
|
unless child.move_to_project_without_transaction(new_project)
|
||||||
# Move failed and transaction was rollback'd
|
# Move failed and transaction was rollback'd
|
||||||
@ -215,7 +215,7 @@ class Issue < ActiveRecord::Base
|
|||||||
self.status = nil
|
self.status = nil
|
||||||
write_attribute(:status_id, sid)
|
write_attribute(:status_id, sid)
|
||||||
end
|
end
|
||||||
|
|
||||||
def priority_id=(pid)
|
def priority_id=(pid)
|
||||||
self.priority = nil
|
self.priority = nil
|
||||||
write_attribute(:priority_id, pid)
|
write_attribute(:priority_id, pid)
|
||||||
@ -227,7 +227,7 @@ class Issue < ActiveRecord::Base
|
|||||||
@custom_field_values = nil
|
@custom_field_values = nil
|
||||||
result
|
result
|
||||||
end
|
end
|
||||||
|
|
||||||
# Overrides attributes= so that tracker_id gets assigned first
|
# Overrides attributes= so that tracker_id gets assigned first
|
||||||
def attributes_with_tracker_first=(new_attributes, *args)
|
def attributes_with_tracker_first=(new_attributes, *args)
|
||||||
return if new_attributes.nil?
|
return if new_attributes.nil?
|
||||||
@ -239,11 +239,11 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
# Do not redefine alias chain on reload (see #4838)
|
# Do not redefine alias chain on reload (see #4838)
|
||||||
alias_method_chain(:attributes=, :tracker_first) unless method_defined?(:attributes_without_tracker_first=)
|
alias_method_chain(:attributes=, :tracker_first) unless method_defined?(:attributes_without_tracker_first=)
|
||||||
|
|
||||||
def estimated_hours=(h)
|
def estimated_hours=(h)
|
||||||
write_attribute :estimated_hours, (h.is_a?(String) ? h.to_hours : h)
|
write_attribute :estimated_hours, (h.is_a?(String) ? h.to_hours : h)
|
||||||
end
|
end
|
||||||
|
|
||||||
safe_attributes 'tracker_id',
|
safe_attributes 'tracker_id',
|
||||||
'status_id',
|
'status_id',
|
||||||
'parent_issue_id',
|
'parent_issue_id',
|
||||||
@ -261,7 +261,7 @@ class Issue < ActiveRecord::Base
|
|||||||
'custom_fields',
|
'custom_fields',
|
||||||
'lock_version',
|
'lock_version',
|
||||||
:if => lambda {|issue, user| issue.new_record? || user.allowed_to?(:edit_issues, issue.project) }
|
:if => lambda {|issue, user| issue.new_record? || user.allowed_to?(:edit_issues, issue.project) }
|
||||||
|
|
||||||
safe_attributes 'status_id',
|
safe_attributes 'status_id',
|
||||||
'assigned_to_id',
|
'assigned_to_id',
|
||||||
'fixed_version_id',
|
'fixed_version_id',
|
||||||
@ -273,7 +273,7 @@ class Issue < ActiveRecord::Base
|
|||||||
user.allowed_to?(:set_issues_private, issue.project) ||
|
user.allowed_to?(:set_issues_private, issue.project) ||
|
||||||
(issue.author == user && user.allowed_to?(:set_own_issues_private, issue.project))
|
(issue.author == user && user.allowed_to?(:set_own_issues_private, issue.project))
|
||||||
}
|
}
|
||||||
|
|
||||||
# Safely sets attributes
|
# Safely sets attributes
|
||||||
# Should be called from controllers instead of #attributes=
|
# Should be called from controllers instead of #attributes=
|
||||||
# attr_accessible is too rough because we still want things like
|
# attr_accessible is too rough because we still want things like
|
||||||
@ -281,26 +281,26 @@ class Issue < ActiveRecord::Base
|
|||||||
# TODO: move workflow/permission checks from controllers to here
|
# TODO: move workflow/permission checks from controllers to here
|
||||||
def safe_attributes=(attrs, user=User.current)
|
def safe_attributes=(attrs, user=User.current)
|
||||||
return unless attrs.is_a?(Hash)
|
return unless attrs.is_a?(Hash)
|
||||||
|
|
||||||
# User can change issue attributes only if he has :edit permission or if a workflow transition is allowed
|
# User can change issue attributes only if he has :edit permission or if a workflow transition is allowed
|
||||||
attrs = delete_unsafe_attributes(attrs, user)
|
attrs = delete_unsafe_attributes(attrs, user)
|
||||||
return if attrs.empty?
|
return if attrs.empty?
|
||||||
|
|
||||||
# Tracker must be set before since new_statuses_allowed_to depends on it.
|
# Tracker must be set before since new_statuses_allowed_to depends on it.
|
||||||
if t = attrs.delete('tracker_id')
|
if t = attrs.delete('tracker_id')
|
||||||
self.tracker_id = t
|
self.tracker_id = t
|
||||||
end
|
end
|
||||||
|
|
||||||
if attrs['status_id']
|
if attrs['status_id']
|
||||||
unless new_statuses_allowed_to(user).collect(&:id).include?(attrs['status_id'].to_i)
|
unless new_statuses_allowed_to(user).collect(&:id).include?(attrs['status_id'].to_i)
|
||||||
attrs.delete('status_id')
|
attrs.delete('status_id')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
unless leaf?
|
unless leaf?
|
||||||
attrs.reject! {|k,v| %w(priority_id done_ratio start_date due_date estimated_hours).include?(k)}
|
attrs.reject! {|k,v| %w(priority_id done_ratio start_date due_date estimated_hours).include?(k)}
|
||||||
end
|
end
|
||||||
|
|
||||||
if attrs.has_key?('parent_issue_id')
|
if attrs.has_key?('parent_issue_id')
|
||||||
if !user.allowed_to?(:manage_subtasks, project)
|
if !user.allowed_to?(:manage_subtasks, project)
|
||||||
attrs.delete('parent_issue_id')
|
attrs.delete('parent_issue_id')
|
||||||
@ -308,10 +308,10 @@ class Issue < ActiveRecord::Base
|
|||||||
attrs.delete('parent_issue_id') unless Issue.visible(user).exists?(attrs['parent_issue_id'].to_i)
|
attrs.delete('parent_issue_id') unless Issue.visible(user).exists?(attrs['parent_issue_id'].to_i)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
self.attributes = attrs
|
self.attributes = attrs
|
||||||
end
|
end
|
||||||
|
|
||||||
def done_ratio
|
def done_ratio
|
||||||
if Issue.use_status_for_done_ratio? && status && status.default_done_ratio
|
if Issue.use_status_for_done_ratio? && status && status.default_done_ratio
|
||||||
status.default_done_ratio
|
status.default_done_ratio
|
||||||
@ -327,20 +327,20 @@ class Issue < ActiveRecord::Base
|
|||||||
def self.use_field_for_done_ratio?
|
def self.use_field_for_done_ratio?
|
||||||
Setting.issue_done_ratio == 'issue_field'
|
Setting.issue_done_ratio == 'issue_field'
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate
|
def validate
|
||||||
if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
|
if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
|
||||||
errors.add :due_date, :not_a_date
|
errors.add :due_date, :not_a_date
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.due_date and self.start_date and self.due_date < self.start_date
|
if self.due_date and self.start_date and self.due_date < self.start_date
|
||||||
errors.add :due_date, :greater_than_start_date
|
errors.add :due_date, :greater_than_start_date
|
||||||
end
|
end
|
||||||
|
|
||||||
if start_date && soonest_start && start_date < soonest_start
|
if start_date && soonest_start && start_date < soonest_start
|
||||||
errors.add :start_date, :invalid
|
errors.add :start_date, :invalid
|
||||||
end
|
end
|
||||||
|
|
||||||
if fixed_version
|
if fixed_version
|
||||||
if !assignable_versions.include?(fixed_version)
|
if !assignable_versions.include?(fixed_version)
|
||||||
errors.add :fixed_version_id, :inclusion
|
errors.add :fixed_version_id, :inclusion
|
||||||
@ -348,14 +348,14 @@ class Issue < ActiveRecord::Base
|
|||||||
errors.add_to_base I18n.t(:error_can_not_reopen_issue_on_closed_version)
|
errors.add_to_base I18n.t(:error_can_not_reopen_issue_on_closed_version)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Checks that the issue can not be added/moved to a disabled tracker
|
# Checks that the issue can not be added/moved to a disabled tracker
|
||||||
if project && (tracker_id_changed? || project_id_changed?)
|
if project && (tracker_id_changed? || project_id_changed?)
|
||||||
unless project.trackers.include?(tracker)
|
unless project.trackers.include?(tracker)
|
||||||
errors.add :tracker_id, :inclusion
|
errors.add :tracker_id, :inclusion
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Checks parent issue assignment
|
# Checks parent issue assignment
|
||||||
if @parent_issue
|
if @parent_issue
|
||||||
if @parent_issue.project_id != project_id
|
if @parent_issue.project_id != project_id
|
||||||
@ -372,7 +372,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Set the done_ratio using the status if that setting is set. This will keep the done_ratios
|
# Set the done_ratio using the status if that setting is set. This will keep the done_ratios
|
||||||
# even if the user turns off the setting later
|
# even if the user turns off the setting later
|
||||||
def update_done_ratio_from_issue_status
|
def update_done_ratio_from_issue_status
|
||||||
@ -380,7 +380,7 @@ class Issue < ActiveRecord::Base
|
|||||||
self.done_ratio = status.default_done_ratio
|
self.done_ratio = status.default_done_ratio
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def init_journal(user, notes = "")
|
def init_journal(user, notes = "")
|
||||||
@current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
|
@current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
|
||||||
@issue_before_change = self.clone
|
@issue_before_change = self.clone
|
||||||
@ -391,12 +391,12 @@ class Issue < ActiveRecord::Base
|
|||||||
updated_on_will_change!
|
updated_on_will_change!
|
||||||
@current_journal
|
@current_journal
|
||||||
end
|
end
|
||||||
|
|
||||||
# Return true if the issue is closed, otherwise false
|
# Return true if the issue is closed, otherwise false
|
||||||
def closed?
|
def closed?
|
||||||
self.status.is_closed?
|
self.status.is_closed?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Return true if the issue is being reopened
|
# Return true if the issue is being reopened
|
||||||
def reopened?
|
def reopened?
|
||||||
if !new_record? && status_id_changed?
|
if !new_record? && status_id_changed?
|
||||||
@ -420,7 +420,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns true if the issue is overdue
|
# Returns true if the issue is overdue
|
||||||
def overdue?
|
def overdue?
|
||||||
!due_date.nil? && (due_date < Date.today) && !status.is_closed?
|
!due_date.nil? && (due_date < Date.today) && !status.is_closed?
|
||||||
@ -437,24 +437,24 @@ class Issue < ActiveRecord::Base
|
|||||||
def children?
|
def children?
|
||||||
!leaf?
|
!leaf?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Users the issue can be assigned to
|
# Users the issue can be assigned to
|
||||||
def assignable_users
|
def assignable_users
|
||||||
users = project.assignable_users
|
users = project.assignable_users
|
||||||
users << author if author
|
users << author if author
|
||||||
users.uniq.sort
|
users.uniq.sort
|
||||||
end
|
end
|
||||||
|
|
||||||
# Versions that the issue can be assigned to
|
# Versions that the issue can be assigned to
|
||||||
def assignable_versions
|
def assignable_versions
|
||||||
@assignable_versions ||= (project.shared_versions.open + [Version.find_by_id(fixed_version_id_was)]).compact.uniq.sort
|
@assignable_versions ||= (project.shared_versions.open + [Version.find_by_id(fixed_version_id_was)]).compact.uniq.sort
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns true if this issue is blocked by another issue that is still open
|
# Returns true if this issue is blocked by another issue that is still open
|
||||||
def blocked?
|
def blocked?
|
||||||
!relations_to.detect {|ir| ir.relation_type == 'blocks' && !ir.issue_from.closed?}.nil?
|
!relations_to.detect {|ir| ir.relation_type == 'blocks' && !ir.issue_from.closed?}.nil?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns an array of status that user is able to apply
|
# Returns an array of status that user is able to apply
|
||||||
def new_statuses_allowed_to(user, include_default=false)
|
def new_statuses_allowed_to(user, include_default=false)
|
||||||
statuses = status.find_new_statuses_allowed_to(
|
statuses = status.find_new_statuses_allowed_to(
|
||||||
@ -468,7 +468,7 @@ class Issue < ActiveRecord::Base
|
|||||||
statuses = statuses.uniq.sort
|
statuses = statuses.uniq.sort
|
||||||
blocked? ? statuses.reject {|s| s.is_closed?} : statuses
|
blocked? ? statuses.reject {|s| s.is_closed?} : statuses
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the mail adresses of users that should be notified
|
# Returns the mail adresses of users that should be notified
|
||||||
def recipients
|
def recipients
|
||||||
notified = project.notified_users
|
notified = project.notified_users
|
||||||
@ -481,7 +481,7 @@ class Issue < ActiveRecord::Base
|
|||||||
notified.reject! {|user| !visible?(user)}
|
notified.reject! {|user| !visible?(user)}
|
||||||
notified.collect(&:mail)
|
notified.collect(&:mail)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the total number of hours spent on this issue and its descendants
|
# Returns the total number of hours spent on this issue and its descendants
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
@ -490,50 +490,50 @@ class Issue < ActiveRecord::Base
|
|||||||
def spent_hours
|
def spent_hours
|
||||||
@spent_hours ||= self_and_descendants.sum("#{TimeEntry.table_name}.hours", :include => :time_entries).to_f || 0.0
|
@spent_hours ||= self_and_descendants.sum("#{TimeEntry.table_name}.hours", :include => :time_entries).to_f || 0.0
|
||||||
end
|
end
|
||||||
|
|
||||||
def relations
|
def relations
|
||||||
(relations_from + relations_to).sort
|
(relations_from + relations_to).sort
|
||||||
end
|
end
|
||||||
|
|
||||||
def all_dependent_issues(except=[])
|
def all_dependent_issues(except=[])
|
||||||
except << self
|
except << self
|
||||||
dependencies = []
|
dependencies = []
|
||||||
relations_from.each do |relation|
|
relations_from.each do |relation|
|
||||||
if relation.issue_to && !except.include?(relation.issue_to)
|
if relation.issue_to && !except.include?(relation.issue_to)
|
||||||
dependencies << relation.issue_to
|
dependencies << relation.issue_to
|
||||||
dependencies += relation.issue_to.all_dependent_issues(except)
|
dependencies += relation.issue_to.all_dependent_issues(except)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
dependencies
|
dependencies
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns an array of issues that duplicate this one
|
# Returns an array of issues that duplicate this one
|
||||||
def duplicates
|
def duplicates
|
||||||
relations_to.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.issue_from}
|
relations_to.select {|r| r.relation_type == IssueRelation::TYPE_DUPLICATES}.collect {|r| r.issue_from}
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the due date or the target due date if any
|
# Returns the due date or the target due date if any
|
||||||
# Used on gantt chart
|
# Used on gantt chart
|
||||||
def due_before
|
def due_before
|
||||||
due_date || (fixed_version ? fixed_version.effective_date : nil)
|
due_date || (fixed_version ? fixed_version.effective_date : nil)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the time scheduled for this issue.
|
# Returns the time scheduled for this issue.
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# Start Date: 2/26/09, End Date: 3/04/09
|
# Start Date: 2/26/09, End Date: 3/04/09
|
||||||
# duration => 6
|
# duration => 6
|
||||||
def duration
|
def duration
|
||||||
(start_date && due_date) ? due_date - start_date : 0
|
(start_date && due_date) ? due_date - start_date : 0
|
||||||
end
|
end
|
||||||
|
|
||||||
def soonest_start
|
def soonest_start
|
||||||
@soonest_start ||= (
|
@soonest_start ||= (
|
||||||
relations_to.collect{|relation| relation.successor_soonest_start} +
|
relations_to.collect{|relation| relation.successor_soonest_start} +
|
||||||
ancestors.collect(&:soonest_start)
|
ancestors.collect(&:soonest_start)
|
||||||
).compact.max
|
).compact.max
|
||||||
end
|
end
|
||||||
|
|
||||||
def reschedule_after(date)
|
def reschedule_after(date)
|
||||||
return if date.nil?
|
return if date.nil?
|
||||||
if leaf?
|
if leaf?
|
||||||
@ -547,7 +547,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def <=>(issue)
|
def <=>(issue)
|
||||||
if issue.nil?
|
if issue.nil?
|
||||||
-1
|
-1
|
||||||
@ -557,11 +557,11 @@ class Issue < ActiveRecord::Base
|
|||||||
(lft || 0) <=> (issue.lft || 0)
|
(lft || 0) <=> (issue.lft || 0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
"#{tracker} ##{id}: #{subject}"
|
"#{tracker} ##{id}: #{subject}"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns a string of css classes that apply to the issue
|
# Returns a string of css classes that apply to the issue
|
||||||
def css_classes
|
def css_classes
|
||||||
s = "issue status-#{status.position} priority-#{priority.position}"
|
s = "issue status-#{status.position} priority-#{priority.position}"
|
||||||
@ -588,10 +588,10 @@ class Issue < ActiveRecord::Base
|
|||||||
@time_entry.attributes = params[:time_entry]
|
@time_entry.attributes = params[:time_entry]
|
||||||
self.time_entries << @time_entry
|
self.time_entries << @time_entry
|
||||||
end
|
end
|
||||||
|
|
||||||
if valid?
|
if valid?
|
||||||
attachments = Attachment.attach_files(self, params[:attachments])
|
attachments = Attachment.attach_files(self, params[:attachments])
|
||||||
|
|
||||||
attachments[:files].each {|a| @current_journal.details << JournalDetail.new(:property => 'attachment', :prop_key => a.id, :value => a.filename)}
|
attachments[:files].each {|a| @current_journal.details << JournalDetail.new(:property => 'attachment', :prop_key => a.id, :value => a.filename)}
|
||||||
# TODO: Rename hook
|
# TODO: Rename hook
|
||||||
Redmine::Hook.call_hook(:controller_issues_edit_before_save, { :params => params, :issue => self, :time_entry => @time_entry, :journal => @current_journal})
|
Redmine::Hook.call_hook(:controller_issues_edit_before_save, { :params => params, :issue => self, :time_entry => @time_entry, :journal => @current_journal})
|
||||||
@ -616,7 +616,7 @@ class Issue < ActiveRecord::Base
|
|||||||
# Update issues assigned to the version
|
# Update issues assigned to the version
|
||||||
update_versions(["#{Issue.table_name}.fixed_version_id = ?", version.id])
|
update_versions(["#{Issue.table_name}.fixed_version_id = ?", version.id])
|
||||||
end
|
end
|
||||||
|
|
||||||
# Unassigns issues from versions that are no longer shared
|
# Unassigns issues from versions that are no longer shared
|
||||||
# after +project+ was moved
|
# after +project+ was moved
|
||||||
def self.update_versions_from_hierarchy_change(project)
|
def self.update_versions_from_hierarchy_change(project)
|
||||||
@ -634,7 +634,7 @@ class Issue < ActiveRecord::Base
|
|||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def parent_issue_id
|
def parent_issue_id
|
||||||
if instance_variable_defined? :@parent_issue
|
if instance_variable_defined? :@parent_issue
|
||||||
@parent_issue.nil? ? nil : @parent_issue.id
|
@parent_issue.nil? ? nil : @parent_issue.id
|
||||||
@ -695,7 +695,7 @@ class Issue < ActiveRecord::Base
|
|||||||
group by s.id, s.is_closed, #{Issue.table_name}.project_id") if project.descendants.active.any?
|
group by s.id, s.is_closed, #{Issue.table_name}.project_id") if project.descendants.active.any?
|
||||||
end
|
end
|
||||||
# End ReportsController extraction
|
# End ReportsController extraction
|
||||||
|
|
||||||
# Returns an array of projects that current user can move issues to
|
# Returns an array of projects that current user can move issues to
|
||||||
def self.allowed_target_projects_on_move
|
def self.allowed_target_projects_on_move
|
||||||
projects = []
|
projects = []
|
||||||
@ -711,9 +711,9 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
projects
|
projects
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def update_nested_set_attributes
|
def update_nested_set_attributes
|
||||||
if root_id.nil?
|
if root_id.nil?
|
||||||
# issue was just created
|
# issue was just created
|
||||||
@ -760,7 +760,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
remove_instance_variable(:@parent_issue) if instance_variable_defined?(:@parent_issue)
|
remove_instance_variable(:@parent_issue) if instance_variable_defined?(:@parent_issue)
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_parent_attributes
|
def update_parent_attributes
|
||||||
recalculate_attributes_for(parent_id) if parent_id
|
recalculate_attributes_for(parent_id) if parent_id
|
||||||
end
|
end
|
||||||
@ -771,14 +771,14 @@ class Issue < ActiveRecord::Base
|
|||||||
if priority_position = p.children.maximum("#{IssuePriority.table_name}.position", :include => :priority)
|
if priority_position = p.children.maximum("#{IssuePriority.table_name}.position", :include => :priority)
|
||||||
p.priority = IssuePriority.find_by_position(priority_position)
|
p.priority = IssuePriority.find_by_position(priority_position)
|
||||||
end
|
end
|
||||||
|
|
||||||
# start/due dates = lowest/highest dates of children
|
# start/due dates = lowest/highest dates of children
|
||||||
p.start_date = p.children.minimum(:start_date)
|
p.start_date = p.children.minimum(:start_date)
|
||||||
p.due_date = p.children.maximum(:due_date)
|
p.due_date = p.children.maximum(:due_date)
|
||||||
if p.start_date && p.due_date && p.due_date < p.start_date
|
if p.start_date && p.due_date && p.due_date < p.start_date
|
||||||
p.start_date, p.due_date = p.due_date, p.start_date
|
p.start_date, p.due_date = p.due_date, p.start_date
|
||||||
end
|
end
|
||||||
|
|
||||||
# done ratio = weighted average ratio of leaves
|
# done ratio = weighted average ratio of leaves
|
||||||
unless Issue.use_status_for_done_ratio? && p.status && p.status.default_done_ratio
|
unless Issue.use_status_for_done_ratio? && p.status && p.status.default_done_ratio
|
||||||
leaves_count = p.leaves.count
|
leaves_count = p.leaves.count
|
||||||
@ -792,16 +792,16 @@ class Issue < ActiveRecord::Base
|
|||||||
p.done_ratio = progress.round
|
p.done_ratio = progress.round
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# estimate = sum of leaves estimates
|
# estimate = sum of leaves estimates
|
||||||
p.estimated_hours = p.leaves.sum(:estimated_hours).to_f
|
p.estimated_hours = p.leaves.sum(:estimated_hours).to_f
|
||||||
p.estimated_hours = nil if p.estimated_hours == 0.0
|
p.estimated_hours = nil if p.estimated_hours == 0.0
|
||||||
|
|
||||||
# ancestors will be recursively updated
|
# ancestors will be recursively updated
|
||||||
p.save(false)
|
p.save(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Update issues so their versions are not pointing to a
|
# Update issues so their versions are not pointing to a
|
||||||
# fixed_version that is not shared with the issue's project
|
# fixed_version that is not shared with the issue's project
|
||||||
def self.update_versions(conditions=nil)
|
def self.update_versions(conditions=nil)
|
||||||
@ -821,7 +821,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Callback on attachment deletion
|
# Callback on attachment deletion
|
||||||
def attachment_removed(obj)
|
def attachment_removed(obj)
|
||||||
journal = init_journal(User.current)
|
journal = init_journal(User.current)
|
||||||
@ -830,7 +830,7 @@ class Issue < ActiveRecord::Base
|
|||||||
:old_value => obj.filename)
|
:old_value => obj.filename)
|
||||||
journal.save
|
journal.save
|
||||||
end
|
end
|
||||||
|
|
||||||
# Default assignment based on category
|
# Default assignment based on category
|
||||||
def default_assign
|
def default_assign
|
||||||
if assigned_to.nil? && category && category.assigned_to
|
if assigned_to.nil? && category && category.assigned_to
|
||||||
@ -863,7 +863,7 @@ class Issue < ActiveRecord::Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Saves the changes in a Journal
|
# Saves the changes in a Journal
|
||||||
# Called after_save
|
# Called after_save
|
||||||
def create_journal
|
def create_journal
|
||||||
@ -879,11 +879,11 @@ class Issue < ActiveRecord::Base
|
|||||||
custom_values.each {|c|
|
custom_values.each {|c|
|
||||||
next if (@custom_values_before_change[c.custom_field_id]==c.value ||
|
next if (@custom_values_before_change[c.custom_field_id]==c.value ||
|
||||||
(@custom_values_before_change[c.custom_field_id].blank? && c.value.blank?))
|
(@custom_values_before_change[c.custom_field_id].blank? && c.value.blank?))
|
||||||
@current_journal.details << JournalDetail.new(:property => 'cf',
|
@current_journal.details << JournalDetail.new(:property => 'cf',
|
||||||
:prop_key => c.custom_field_id,
|
:prop_key => c.custom_field_id,
|
||||||
:old_value => @custom_values_before_change[c.custom_field_id],
|
:old_value => @custom_values_before_change[c.custom_field_id],
|
||||||
:value => c.value)
|
:value => c.value)
|
||||||
}
|
}
|
||||||
@current_journal.save
|
@current_journal.save
|
||||||
# reset current journal
|
# reset current journal
|
||||||
init_journal @current_journal.user, @current_journal.notes
|
init_journal @current_journal.user, @current_journal.notes
|
||||||
@ -903,7 +903,7 @@ class Issue < ActiveRecord::Base
|
|||||||
joins = options.delete(:joins)
|
joins = options.delete(:joins)
|
||||||
|
|
||||||
where = "#{Issue.table_name}.#{select_field}=j.id"
|
where = "#{Issue.table_name}.#{select_field}=j.id"
|
||||||
|
|
||||||
ActiveRecord::Base.connection.select_all("select s.id as status_id,
|
ActiveRecord::Base.connection.select_all("select s.id as status_id,
|
||||||
s.is_closed as closed,
|
s.is_closed as closed,
|
||||||
j.id as #{select_field},
|
j.id as #{select_field},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user