Class: Spree::ReturnAuthorization

Inherits:
Base
  • Object
show all
Extended by:
DisplayMoney
Defined in:
app/models/spree/return_authorization.rb

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

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

Instance Method Details

#can_cancel_return_items?Boolean

Returns:

  • (Boolean)


56
57
58
# File 'app/models/spree/return_authorization.rb', line 56

def can_cancel_return_items?
  return_items.any?(&:can_cancel?) || return_items.blank?
end

#currencyObject



44
45
46
# File 'app/models/spree/return_authorization.rb', line 44

def currency
  order.nil? ? Spree::Config[:currency] : order.currency
end

#customer_returned_items?Boolean

Returns:

  • (Boolean)


52
53
54
# File 'app/models/spree/return_authorization.rb', line 52

def customer_returned_items?
  customer_returns.exists?
end

#pre_tax_totalObject



40
41
42
# File 'app/models/spree/return_authorization.rb', line 40

def pre_tax_total
  return_items.sum(:pre_tax_amount)
end

#refundable_amountObject



48
49
50
# File 'app/models/spree/return_authorization.rb', line 48

def refundable_amount
  order.pre_tax_item_amount + order.promo_total
end