2012-06-26 20:23:09 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: milestones
|
|
|
|
#
|
|
|
|
# id :integer(4) not null, primary key
|
|
|
|
# title :string(255) not null
|
|
|
|
# project_id :integer(4) not null
|
|
|
|
# description :text
|
|
|
|
# due_date :date
|
|
|
|
# closed :boolean(1) default(FALSE), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
User.where(id: issues.map(&:assignee_id))
|
2012-04-24 20:49:34 +02:00
|
|
|
end
|
|
|
|
|
2012-04-08 23:28:58 +02:00
|
|
|
def percent_complete
|
2012-08-25 19:54:38 +02:00
|
|
|
((self.issues.closed.count * 100) / self.issues.count).abs
|
|
|
|
rescue ZeroDivisionError
|
|
|
|
100
|
2012-04-08 23:28:58 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def expires_at
|
|
|
|
"expires at #{due_date.stamp("Aug 21, 2011")}" if due_date
|
|
|
|
end
|
|
|
|
end
|