Class: Spree::Reimbursement::Credit

Inherits:
Base
  • Object
show all
Defined in:
app/models/spree/reimbursement/credit.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

page

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

.total_amount_reimbursed_for(reimbursement) ⇒ Object



12
13
14
# File 'app/models/spree/reimbursement/credit.rb', line 12

def total_amount_reimbursed_for(reimbursement)
  reimbursement.credits.to_a.sum(&:amount)
end

Instance Method Details

#descriptionObject



17
18
19
# File 'app/models/spree/reimbursement/credit.rb', line 17

def description
  creditable.class.name.demodulize
end

#display_amountObject



21
22
23
# File 'app/models/spree/reimbursement/credit.rb', line 21

def display_amount
  Spree::Money.new(amount, { currency: creditable.try(:currency) || "USD" })
end