Displaying 2 results from an estimated 2 matches for "quantity_#".
2012 Sep 01
4
Basic Paypal
...:upload => 1,
:return => return_url,
:invoice => id
}
line_items.each_with_index do |item, index|
values.merge!({
"amount_#{index+1}" => 500,
"item_name_#{index+1}" => car,
"item_number_#{index+1}" => 5,
"quantity_#{index+1}" => 1
})
end
"https://www.sandbox.paypal.com/cgi-bin/webscr?" + values.to_query
end
end
it is unable to identify it
what is the problem
Cheers
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"...
2007 Jul 04
5
stack level too deep
...pal
create_order
more_options = Hash.new
x = 1
@order.line_items.each do |item|
more_options["item_name_#{x}"] = item.product.title # this is
the line that is causing the error
more_options["amount_#{x}"] = item.product.price
more_options["quantity_#{x}"] = item.quantity
x += 1
end
@html = render_to_string( :partial => "switch_to_paypal", :object
=> @order, :locals => { :more_options => more_options } )
end
Can someone figure out what is causing this error ?
Thanks, Marc
--~--~---------~--~----~...