60 lines
1.4 KiB
Ruby
60 lines
1.4 KiB
Ruby
class DiningFacility < ApplicationRecord
|
|
belongs_to :zone
|
|
|
|
TABLE_TYPE = "Table"
|
|
ROOM_TYPE = "Room"
|
|
|
|
default_scope { order('order_by asc') }
|
|
|
|
scope :active, -> {where(is_active: true)}
|
|
|
|
def make_available
|
|
self.status = 'available'
|
|
self.save
|
|
end
|
|
|
|
def make_occupied
|
|
self.status = 'occupied'
|
|
self.save
|
|
end
|
|
|
|
def get_booking
|
|
booking = self.get_current_booking
|
|
puts "is bookig?"
|
|
puts booking
|
|
if booking
|
|
if booking.dining_facility_id.to_i == self.id
|
|
if booking.booking_status == 'assign'
|
|
return booking
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def get_current_booking
|
|
booking = Booking.where("dining_facility_id = #{self.id} and booking_status ='assign' and checkin_at between '#{DateTime.now.utc - 5.hours}' and '#{DateTime.now.utc}' and checkout_at is null").limit(1)
|
|
|
|
if booking.count > 0 then
|
|
return booking[0]
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
|
|
def get_new_booking
|
|
# query for new
|
|
# if status
|
|
# to ask when req bill booking_status?
|
|
booking = Booking.where("dining_facility_id = #{self.id} and booking_status ='assign' and sale_id is null and checkout_at is null").limit(1)
|
|
# else
|
|
# booking = Booking.where("dining_facility_id = #{self.id} and booking_status ='assign' and sale_id not null").limit(1)
|
|
# end
|
|
|
|
if booking.count > 0 then
|
|
return booking[0].booking_id
|
|
else
|
|
return nil
|
|
end
|
|
end
|
|
end
|