Class: Spree::Admin::Orders::CustomerDetailsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/admin/orders/customer_details_controller.rb

Instance Method Summary collapse

Instance Method Details

#editObject



12
13
14
15
16
17
18
19
# File 'app/controllers/spree/admin/orders/customer_details_controller.rb', line 12

def edit
  country_id = Address.default.country.id
  @order.build_bill_address(:country_id => country_id) if @order.bill_address.nil?
  @order.build_ship_address(:country_id => country_id) if @order.ship_address.nil?

  @order.bill_address.country_id = country_id if @order.bill_address.country.nil?
  @order.ship_address.country_id = country_id if @order.ship_address.country.nil?
end

#showObject



7
8
9
10
# File 'app/controllers/spree/admin/orders/customer_details_controller.rb', line 7

def show
  edit
  render :action => :edit
end

#updateObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'app/controllers/spree/admin/orders/customer_details_controller.rb', line 21

def update
  if @order.update_attributes(order_params)
    if params[:guest_checkout] == "false"
      @order.associate_user!(Spree.user_class.find(params[:user_id]), @order.email.blank?)
    end
    @order.next
    @order.refresh_shipment_rates
    flash[:success] = Spree.t('customer_details_updated')
    redirect_to edit_admin_order_url(@order)
  else
    render :action => :edit
  end

end