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.
|
|
|
class Client < ActiveRecord::Base
|
|
|
|
# TODO: figure out why application_date validation is fubar
|
|
|
|
# validates :application_date, presence: true
|
|
|
|
belongs_to :bike
|
|
|
|
belongs_to :agency
|
|
|
|
|
|
|
|
def self.waiting_list
|
|
|
|
clients = Client.all
|
|
|
|
nonvoided_clients = clients.select{|client| !client.application_voided}
|
|
|
|
active_nonvoided_clients = nonvoided_clients.select{|client| !client.pickup_date}
|
|
|
|
waiting_list = active_nonvoided_clients.select{|client| !client.application_date.nil?}
|
|
|
|
waiting_list.sort_by!{|client| client.application_date}
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
self.first_name + ' ' + self.last_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.closed_applications
|
|
|
|
Client.all.select{|client| client.application_voided || client.pickup_date}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|