When I click on “Proceed to Checkout”, instead of showing a clean
form, it seems as if the form has already been submitted empty and the
new page comes up with all the errors – which I don’t think many
customers would appreciate.
I am not sure where in the code is the problem.
My order.rb class is:
def process
result = true
#
# TODO Charge the customer by calling the payment gateway
# TODO email both admin/customer
self.status = ‘processed’
save!
result
end
protected
def set_status
self.status = “open” if self.status.blank?
end
if @order.save
if @order.process
flash[:notice] = 'Your order has been submitted, and will be
processed immediately.’
session[:order_id] = @order.id
# Empty the cart @cart.cart_items.destroy_all
redirect_to :action => ‘thank_you’
else
flash[:notice] = “Error while placing order.
‘#{@order.error_message}’”
render :action => ‘view_cart’
end
else
render :action => ‘checkout’
end
end
def thank_you @page_title = ‘Thank You!’
end
def populate_order
for cart_item in @cart.cart_items
order_item = OrderItem.new(
:product_id => cart_item.product_id,
:price => cart_item.price,
:amount => cart_item.amount
) @order.order_items << order_item
end
end
Can anyone have a quick look?
One more question: I am trying to use select_state plugin in the form.
My view has:
State
<%= state_options_for_select(selected = nil, country = ‘US’) %>
But on the page, I only see all the states one after the other instead
as a drop down menu.
What’s incorrect in this line?
I fixed my state field by using:
<%= state_select(object, method) %>
But I’m still having troubl with my checkout code. Also If I try and
submit the order, nothing happens and I’m back at the same form,
showing errors that no information was entered.
Would anyone have any ideas what is the problem with my code?
def place_order
if @order.save
if @order.process
flash[:notice] = ‘Your order has been submitted, and will be
processed immediately.’
session[:order_id] = @order.id
# Empty the cart @cart.cart_items.destroy_all
redirect_to :action => ‘thank_you’
else
flash[:notice] = “Error while placing order.
‘#{@order.error_message}’”
render :action => ‘view_cart’
end
else
render :action => ‘checkout’
end
end
So, now I don’t get any error messages when I click on “Proceed to
checkout” but, when I click on “Place Order” I get error messages:
NoMethodError in CartController#place_order
You have a nil object when you didn’t expect it!
You might have expected an instance of ActiveRecord::Base.
The error occurred while evaluating nil.save
Hi,
I think you can’t use a variable of one action in another like this
Try as
session[:order] = @order
in def check out
and
in def place_order
if session[:order].save
Hope it helps
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.