1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/cart_item/space_reservation.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# A space reservation added to the shopping cart
class CartItem::SpaceReservation < CartItem::Reservation
2022-12-28 17:51:27 +01:00
has_many :cart_item_reservation_slots, class_name: 'CartItem::ReservationSlot', dependent: :destroy, inverse_of: :cart_item,
2023-02-24 17:26:55 +01:00
foreign_type: 'cart_item_type', as: :cart_item
2022-12-28 17:51:27 +01:00
accepts_nested_attributes_for :cart_item_reservation_slots
belongs_to :operator_profile, class_name: 'InvoicingProfile'
belongs_to :customer_profile, class_name: 'InvoicingProfile'
belongs_to :reservable, polymorphic: true
belongs_to :plan
def type
'space'
end
def valid?(all_items)
2022-12-28 17:51:27 +01:00
if reservable.disabled
errors.add(:reservable, I18n.t('cart_item_validation.space'))
return false
end
super
end
protected
def credits
2022-12-28 17:51:27 +01:00
return 0 if plan.nil?
2022-12-28 17:51:27 +01:00
space_credit = plan.space_credits.find { |credit| credit.creditable_id == reservable.id }
credits_hours(space_credit, new_plan_being_bought: new_subscription)
end
def reservation_deadline_minutes
Setting.get('space_reservation_deadline').to_i
end
end