2012-04-08 23:28:58 +02:00
|
|
|
class Milestone < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
has_many :issues
|
|
|
|
|
|
|
|
validates_presence_of :project_id
|
|
|
|
validates_presence_of :title
|
|
|
|
|
|
|
|
def self.active
|
2012-04-19 20:24:02 +02:00
|
|
|
where("due_date > ? OR due_date IS NULL", Date.today)
|
2012-04-08 23:28:58 +02:00
|
|
|
end
|
|
|
|
|
2012-04-24 20:49:34 +02:00
|
|
|
def participants
|
|
|
|
User.where(:id => issues.map(&:assignee_id))
|
|
|
|
end
|
|
|
|
|
2012-04-08 23:28:58 +02:00
|
|
|
def percent_complete
|
|
|
|
@percent_complete ||= begin
|
|
|
|
total_i = self.issues.count
|
|
|
|
closed_i = self.issues.closed.count
|
|
|
|
if total_i > 0
|
|
|
|
(closed_i * 100) / total_i
|
|
|
|
else
|
|
|
|
100
|
|
|
|
end
|
|
|
|
rescue => ex
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def expires_at
|
|
|
|
"expires at #{due_date.stamp("Aug 21, 2011")}" if due_date
|
|
|
|
end
|
|
|
|
end
|