Class: Spree::ReimbursementType
- Inherits:
-
Object
- Object
- Spree::ReimbursementType
- Includes:
- NamedType
- Defined in:
- app/models/spree/reimbursement_type.rb
Direct Known Subclasses
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
-
.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.
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 |