Class: Spree::ReimbursementType

Inherits:
Base
  • Object
show all
Includes:
NamedType
Defined in:
app/models/spree/reimbursement_type.rb

Direct Known Subclasses

Credit, Exchange, OriginalPayment, StoreCredit

Defined Under Namespace

Modules: ReimbursementHelpers Classes: Credit, Exchange, OriginalPayment, StoreCredit

Constant Summary collapse

KINDS =
%w(Spree::ReimbursementType::Credit
Spree::ReimbursementType::Exchange
Spree::ReimbursementType::OriginalPayment
Spree::ReimbursementType::StoreCredit).freeze
ORIGINAL =
'original'.freeze

Class Method Summary collapse

Methods inherited from Base

belongs_to_required_by_default, page, spree_base_scopes

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Class Method Details

.reimburse(_reimbursement, _return_items, _simulate) ⇒ Object

This method will reimburse the return items based on however its child implements it By default it takes a reimbursement, the return items it needs to reimburse, and if it is a simulation or a real reimbursement. This should return an array



16
17
18
# File 'app/models/spree/reimbursement_type.rb', line 16

def self.reimburse(_reimbursement, _return_items, _simulate)
  raise 'Implement me'
end