21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# File 'app/controllers/gemgento/checkout/shipping_payment_controller.rb', line 21
def update
@quote.shipping_amount = @quote.get_shipping_amount(quote_params[:shipping_method], JSON.parse(cookies[:shipping_methods], symbolize_names: true))
@quote.push_shipping_method = true
@quote.push_payment_method = true
respond_to do |format|
if @quote.update(quote_params)
session[:payment_data] = quote_params[:payment_attributes]
if !@quote.payment.is_redirecting_payment_method?('payment_after')
format.html { redirect_to checkout_confirm_path }
format.json { render json: { result: true, order: @quote, totals: @quote.totals } }
else
format.html { redirect_to payment_after_redirect_url }
format.json { render json: { result: true, payment_redirect_url: payment_after_redirect_url } }
end
else
initialize_shipping_variables
initialize_payment_variables
format.html { render action: :show }
format.json { render json: { result: false, errors: @quote.errors }, status: 422 }
end
end
end
|