Skip to content

Instantly share code, notes, and snippets.

@akonan
Created May 4, 2012 08:50
Show Gist options
  • Save akonan/2593397 to your computer and use it in GitHub Desktop.
Save akonan/2593397 to your computer and use it in GitHub Desktop.
View for AM
<% payment_service_for 2, "13466",
:amount => "200", :currency => 'EUR', :credential2 => VERKKOMAKSUT_AUTHCODE,
:service => :verkkomaksut do |service|
service.customer :first_name => "antti",
:last_name => "akonniemi",
:phone => "0405051909",
:email => "0405051909"
service.billing_address :city => "Helsinki",
:address1 => "Toinen linja 2 A D 65",
:state => "-",
:country => 'Finland',
:zip => "00530"
service.items = 1
service.item_title_0 = "testi"
service.item_no_0 = "1"
service.item_amount_0 = "1"
service.item_price_0 = "30.00"
service.item_tax_0 = "23.00"
service.item_discount_0 = "0"
service.include_vat '1'
service.return_url "http://localhost/pages/process"
service.cancel_return_url "http://example.com" %>
<%= submit_tag 'Make Payment' %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment