68 lines
2.3 KiB
Ruby
Executable File
68 lines
2.3 KiB
Ruby
Executable File
class Booking < ApplicationRecord
|
|
self.primary_key = "booking_id"
|
|
|
|
#primary key - need to be unique
|
|
before_create :generate_custom_id
|
|
|
|
belongs_to :dining_facility, :optional => true
|
|
belongs_to :sale, :optional => true
|
|
has_many :booking_orders
|
|
has_many :orders, :through => :booking_orders
|
|
scope :active, -> {where("booking_status != 'moved'")}
|
|
scope :today, -> {where("created_at >= #{Time.now.utc}")}
|
|
|
|
def self.update_dining_facility(booking_arr, newd, old)
|
|
table = DiningFacility.find(newd)
|
|
exist = table.get_booking
|
|
|
|
if exist
|
|
# order exists
|
|
booking_arr.each do |booking|
|
|
booking.dining_facility_id = newd
|
|
booking.booking_status = 'moved'
|
|
booking.save
|
|
booking.booking_orders.each do |bo|
|
|
bo.booking_id = exist.booking_id
|
|
bo.save
|
|
end
|
|
end
|
|
else
|
|
# new table
|
|
booking_arr.each do |booking|
|
|
booking.dining_facility_id = newd
|
|
booking.save
|
|
end
|
|
end
|
|
|
|
new_dining = DiningFacility.find(newd)
|
|
new_dining.make_occupied
|
|
old_dining = DiningFacility.find(old)
|
|
old_dining.make_available
|
|
|
|
return new_dining.type
|
|
end
|
|
|
|
def self.search(filter,from,to)
|
|
if filter.blank?
|
|
keyword = ''
|
|
else
|
|
keyword = "booking_id LIKE ? OR checkin_by LIKE ? OR booking_status LIKE? OR checkout_by LIKE? OR sale_id ='#{filter}' OR df.name LIKE ?","%#{filter}%","%#{filter}%","%#{filter}%","%#{filter}%","%#{filter}%"
|
|
end
|
|
|
|
if from.present? && to.present?
|
|
booking = Booking.joins(" LEFT JOIN dining_facilities df ON df.id=bookings.dining_facility_id")
|
|
.where("DATE_FORMAT(bookings.created_at,'%d-%m-%Y') >= ?" + " AND DATE_FORMAT(bookings.created_at,'%d-%m-%Y') <= ? and NOT bookings.booking_status = 'void' ", from,to)
|
|
query = booking.where(keyword)
|
|
else
|
|
joins(" LEFT JOIN dining_facilities df ON df.id=bookings.dining_facility_id")
|
|
.where("booking_id LIKE ? OR checkin_by LIKE ? OR booking_status LIKE? OR checkout_by LIKE? OR sale_id ='#{filter}' OR df.name LIKE ?","%#{filter}%","%#{filter}%","%#{filter}%","%#{filter}%","%#{filter}%")
|
|
end
|
|
.order("sale_id DESC")
|
|
end
|
|
|
|
private
|
|
def generate_custom_id
|
|
self.booking_id = SeedGenerator.generate_id(self.class.name, "BKI")
|
|
end
|
|
end
|