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/base_item.rb
2023-02-15 10:29:46 +01:00

34 lines
717 B
Ruby

# frozen_string_literal: true
# Items that can be added to the shopping cart
module CartItem
def self.table_name_prefix
'cart_item_'
end
end
# This is an abstract class implemented by classes that can be added to the shopping cart
class CartItem::BaseItem < ApplicationRecord
self.abstract_class = true
def price
{ elements: {}, amount: 0 }
end
def name
''
end
# This method run validations at cart-level, possibly using the other items in the cart, to validate the current one.
# Other validations that may occurs at record-level (ActiveRecord validations) can't be related to other items.
def valid?(_all_items)
true
end
def to_object; end
def type
''
end
end