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, spree_base_scopes

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)


59
60
61
# File 'app/models/spree/return_authorization.rb', line 59

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

#currencyObject



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

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

#customer_returned_items?Boolean

Returns:

  • (Boolean)


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

def customer_returned_items?
  customer_returns.exists?
end

#pre_tax_totalObject



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

def pre_tax_total
  return_items.sum(:pre_tax_amount)
end

#refundable_amountObject



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

def refundable_amount
  order.pre_tax_item_amount + order.promo_total
end