Class: Spree::ReturnAuthorization

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

Overview

Models the return of Inventory Units to a Stock Location for an Order.

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Preferences::Preferable

#admin_form_preference_names, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Instance Method Details

#amountObject



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

def amount
  return_items.sum(:amount)
end

#can_cancel_return_items?Boolean

Returns:

  • (Boolean)


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

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

#currencyObject



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

def currency
  order.currency
end

#customer_returned_items?Boolean

Returns:

  • (Boolean)


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

def customer_returned_items?
  customer_returns.exists?
end

#refundable_amountObject



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

def refundable_amount
  order.item_total_before_tax + order.promo_total
end

#total_excluding_vatObject Also known as: pre_tax_total



33
34
35
# File 'app/models/spree/return_authorization.rb', line 33

def total_excluding_vat
  return_items.map(&:total_excluding_vat).sum
end