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.
39 lines
1003 B
39 lines
1003 B
class Bike < ActiveRecord::Base
|
|
validates :log_number, presence: true
|
|
validates :brand, presence: true
|
|
validates :model, presence: true
|
|
validates :bike_type, presence: true
|
|
validates :color, presence: true
|
|
validates :serial_number, presence: true
|
|
|
|
def name
|
|
self.brand + ' ' + self.model
|
|
end
|
|
|
|
def client
|
|
Client.find_by bike_id: self.id
|
|
end
|
|
|
|
def ready_for_pickup?
|
|
client = self.client
|
|
client && self.completion_date && !client.application_voided && self.date_sold.nil?
|
|
end
|
|
|
|
def self.bikes_ready_for_pickup
|
|
Bike.all.select{|bike| bike.ready_for_pickup?}
|
|
end
|
|
|
|
def self.available_for_freecyclery
|
|
Bike.all.select{|bike| bike.completion_date && (bike.purpose == "Freecyclery") && !bike.client }
|
|
end
|
|
|
|
def mark_picked_up
|
|
current_date = Time.new.strftime("%Y-%m-%d")
|
|
self.update_attribute(:date_sold, current_date)
|
|
end
|
|
|
|
def post_to_bike_index
|
|
return true if self.bike_index_id.present?
|
|
BikeIndexLogger.perform_async(self.id)
|
|
end
|
|
end
|
|
|