Class: Spree::PaymentMethod::Check
Instance Method Summary
collapse
#auto_capture?, find_sti_class, #gateway, model_name, #options, #partial_name, #payment_profiles_supported?, #payment_source_class, #reusable_sources, #store_credit?, #supports?
#preference_source=, #preferences, #preferences=
Methods inherited from Base
display_includes
#generate_permalink, #save_permalink
Instance Method Details
#actions ⇒ Object
5
6
7
|
# File 'app/models/spree/payment_method/check.rb', line 5
def actions
%w{capture void credit}
end
|
#can_capture?(payment) ⇒ Boolean
Indicates whether its possible to capture the payment
10
11
12
|
# File 'app/models/spree/payment_method/check.rb', line 10
def can_capture?(payment)
['checkout', 'pending'].include?(payment.state)
end
|
#can_void?(payment) ⇒ Boolean
Indicates whether its possible to void the payment.
15
16
17
|
# File 'app/models/spree/payment_method/check.rb', line 15
def can_void?(payment)
payment.state != 'void'
end
|
#capture ⇒ Object
19
20
21
|
# File 'app/models/spree/payment_method/check.rb', line 19
def capture(*)
simulated_successful_billing_response
end
|
#credit ⇒ Object
28
29
30
|
# File 'app/models/spree/payment_method/check.rb', line 28
def credit(*)
simulated_successful_billing_response
end
|
#simulated_successful_billing_response ⇒ Object
36
37
38
|
# File 'app/models/spree/payment_method/check.rb', line 36
def simulated_successful_billing_response
ActiveMerchant::Billing::Response.new(true, "", {}, {})
end
|
#source_required? ⇒ Boolean
32
33
34
|
# File 'app/models/spree/payment_method/check.rb', line 32
def source_required?
false
end
|
#void ⇒ Object
Also known as:
try_void
23
24
25
|
# File 'app/models/spree/payment_method/check.rb', line 23
def void(*)
simulated_successful_billing_response
end
|