Class: Spree::Reimbursement::Credit
- Inherits:
-
Base
- Object
- ActiveRecord::Base
- Base
- Spree::Reimbursement::Credit
show all
- Defined in:
- app/models/spree/reimbursement/credit.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
display_includes, #initialize_preference_defaults, page, preference
#admin_form_preference_names, #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
15
16
17
|
# File 'app/models/spree/reimbursement/credit.rb', line 15
def total_amount_reimbursed_for(reimbursement)
reimbursement.credits.to_a.sum(&:amount)
end
|
Instance Method Details
#description ⇒ Object
20
21
22
|
# File 'app/models/spree/reimbursement/credit.rb', line 20
def description
creditable.class.name.demodulize
end
|
#display_amount ⇒ Object
24
25
26
|
# File 'app/models/spree/reimbursement/credit.rb', line 24
def display_amount
Spree::Money.new(amount, { currency: creditable.try(:currency) || "USD" })
end
|