Sha256: aaa1d307d5d30bdfa9c997bebf6ea6a31ac25d6c2bd9bd44f814ecf48a7ef016
Contents?: true
Size: 925 Bytes
Versions: 62
Compression:
Stored size: 925 Bytes
Contents
module Workarea class Payment class Refund class StoreCredit include OperationImplementation def complete! profile.reload_store_credit(transaction.amount.cents) transaction.response = ActiveMerchant::Billing::Response.new( true, I18n.t( 'workarea.payment.store_credit_credit', amount: transaction.amount, email: profile.email ) ) end def cancel! return unless transaction.success? profile.purchase_on_store_credit(transaction.amount.cents) transaction.cancellation = ActiveMerchant::Billing::Response.new( true, I18n.t( 'workarea.payment.store_credit_debit', amount: transaction.amount, email: profile.email ) ) end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems