kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
956 B
45 lines
956 B
12 years ago
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
#
|
||
|
# Copyright (C) 2012-2013 the OpenProject Team
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License version 3.
|
||
|
#
|
||
|
# See doc/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
12 years ago
|
class ReportedProjectStatus < Enumeration
|
||
12 years ago
|
|
||
12 years ago
|
extend Pagination::Model
|
||
12 years ago
|
|
||
|
unloadable
|
||
|
|
||
|
scope :like, lambda { |q|
|
||
|
s = "%#{q.to_s.strip.downcase}%"
|
||
|
{ :conditions => ["LOWER(name) LIKE :s", {:s => s}],
|
||
|
:order => "name" }
|
||
|
}
|
||
|
|
||
12 years ago
|
has_many :reportings, :class_name => "Reporting",
|
||
12 years ago
|
:foreign_key => 'reported_project_status_id'
|
||
|
|
||
|
OptionName = :enumeration_reported_project_statuses
|
||
|
|
||
|
def option_name
|
||
|
OptionName
|
||
|
end
|
||
|
|
||
|
def objects_count
|
||
|
reportings.count
|
||
|
end
|
||
|
|
||
|
def transfer_relations(to)
|
||
|
reportings.update.all(:reported_project_status_id => to.id)
|
||
|
end
|
||
|
|
||
|
def self.search_scope(query)
|
||
|
like(query)
|
||
|
end
|
||
|
end
|