Class: Spree::ReimbursementType::Exchange

Inherits:
Spree::ReimbursementType show all
Defined in:
app/models/spree/reimbursement_type/exchange.rb

Constant Summary

Constants inherited from Spree::ReimbursementType

ORIGINAL

Class Method Summary collapse

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Preferences::Preferable

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

Class Method Details

.reimburse(reimbursement, return_items, simulate, *_optional_args) ⇒ Object



4
5
6
7
8
9
10
# File 'app/models/spree/reimbursement_type/exchange.rb', line 4

def self.reimburse(reimbursement, return_items, simulate, *_optional_args)
  return [] unless return_items.present?

  exchange = Spree::Exchange.new(reimbursement.order, return_items)
  exchange.perform! unless simulate
  [exchange]
end