Class: Spree::PaymentMethod::Check

Inherits:
Spree::PaymentMethod show all
Defined in:
app/models/spree/payment_method/check.rb

Constant Summary

Constants inherited from Spree::PaymentMethod

DISPLAY

Instance Method Summary collapse

Methods inherited from Spree::PaymentMethod

active?, #auto_capture?, available, #deprecated_method_type_override, #display_on, #display_on=, find_with_destroyed, #gateway, #method_type, model_name, #options, #partial_name, #payment_profiles_supported?, #payment_source_class, providers, #reusable_sources, #store_credit?, #supports?

Methods included from Spree::Preferences::StaticallyConfigurable

#preference_source=, #preferences, #preferences=

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Spree::Preferences::Preferable

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

Instance Method Details

#actionsObject



3
4
5
# File 'app/models/spree/payment_method/check.rb', line 3

def actions
  %w{capture void credit}
end

#can_capture?(payment) ⇒ Boolean

Indicates whether its possible to capture the payment

Returns:

  • (Boolean)


8
9
10
# File 'app/models/spree/payment_method/check.rb', line 8

def can_capture?(payment)
  ['checkout', 'pending'].include?(payment.state)
end

#can_void?(payment) ⇒ Boolean

Indicates whether its possible to void the payment.

Returns:

  • (Boolean)


13
14
15
# File 'app/models/spree/payment_method/check.rb', line 13

def can_void?(payment)
  payment.state != 'void'
end

#captureObject



17
18
19
# File 'app/models/spree/payment_method/check.rb', line 17

def capture(*)
  simulated_successful_billing_response
end

#creditObject



26
27
28
# File 'app/models/spree/payment_method/check.rb', line 26

def credit(*)
  simulated_successful_billing_response
end

#simulated_successful_billing_responseObject



34
35
36
# File 'app/models/spree/payment_method/check.rb', line 34

def simulated_successful_billing_response
  ActiveMerchant::Billing::Response.new(true, "", {}, {})
end

#source_required?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'app/models/spree/payment_method/check.rb', line 30

def source_required?
  false
end

#voidObject Also known as: try_void



21
22
23
# File 'app/models/spree/payment_method/check.rb', line 21

def void(*)
  simulated_successful_billing_response
end