Class: Spree::ReimbursementType

Inherits:
Base
  • Object
show all
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

ORIGINAL =
'original'

Class Method Summary collapse

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Class Method Details

.reimburse(_reimbursement, _return_items, _simulate, *_optional_args) ⇒ Object

This method will reimburse the return items based on however it 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



19
20
21
# File 'app/models/spree/reimbursement_type.rb', line 19

def self.reimburse(_reimbursement, _return_items, _simulate, *_optional_args)
  raise "Implement me"
end