Class: Spree::ReimbursementType

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

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