Sha256: 97f757867edb84671ce5395f2b9cfa6d5cc3e2863350db8fe3dbcc399f61a217

Contents?: true

Size: 1017 Bytes

Versions: 4

Compression:

Stored size: 1017 Bytes

Contents

# create payments based on the totals since they can't be known in YAML (quantities are random)
method = PaymentMethod.find(:first, :conditions => {:name => "Credit Card", :active => true})

# Hack the current method so we're able to return a gateway without a RAILS_ENV
Gateway.class_eval do
  def self.current
    Gateway::Bogus.new
  end
end

creditcard = Creditcard.create(:cc_type => "visa", :month => 12, :year => 2014, :last_digits => "1111",
                               :first_name => "Sean", :last_name => "Schofield",
                               :gateway_customer_profile_id => "BGS-1234")

Order.all.each_with_index do |order,index|
  printf "\rProcessing order #{index}"
  STDOUT.flush
  order.update_totals!
  payment = order.checkout.payments.create(:amount => order.outstanding_balance,
                                           :source => creditcard.clone,
                                           :payment_method => method)

  order.checkout.state = 'confirm'
  order.checkout.next
end
puts

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree-0.11.4 db/sample/payments.rb
spree-0.11.3 db/sample/payments.rb
spree-0.11.2 db/sample/payments.rb
spree-0.11.1 db/sample/payments.rb