Class: Spree::ReturnAuthorization

Inherits:
Base
  • Object
show all
Extended by:
DisplayMoney
Includes:
NumberIdentifier, Webhooks::HasWebhooks
Defined in:
app/models/spree/return_authorization.rb

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

Methods inherited from Base

belongs_to_required_by_default, for_store, has_many_inversing, json_api_columns, json_api_permitted_attributes, json_api_type, page, spree_base_scopes, spree_base_uniqueness_scope

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #deprecated_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_deprecated, #preference_type, #set_preference

Instance Method Details

#can_cancel_return_items?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'app/models/spree/return_authorization.rb', line 63

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

#currencyObject



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

def currency
  # FIXME: we should associate ReturnAuthorization with Store
  order.nil? ? Spree::Store.default.default_currency : order.currency
end

#customer_returned_items?Boolean

Returns:

  • (Boolean)


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

def customer_returned_items?
  customer_returns.exists?
end

#pre_tax_totalObject



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

def pre_tax_total
  return_items.sum(:pre_tax_amount)
end

#refundable_amountObject



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

def refundable_amount
  order.pre_tax_item_amount + order.promo_total
end