mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
31 lines
650 B
Ruby
31 lines
650 B
Ruby
# frozen_string_literal: true
|
|
|
|
# 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 self.table_name_prefix
|
|
'cart_item_'
|
|
end
|
|
|
|
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
|