Class: Spree::Admin::Orders::CustomerDetailsController
- Inherits:
-
BaseController
- Object
- BaseController
- BaseController
- Spree::Admin::Orders::CustomerDetailsController
- Defined in:
- app/controllers/spree/admin/orders/customer_details_controller.rb
Instance Method Summary collapse
Instance Method Details
#edit ⇒ Object
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 |
#show ⇒ Object
7 8 9 10 |
# File 'app/controllers/spree/admin/orders/customer_details_controller.rb', line 7 def show edit render action: :edit end |
#update ⇒ Object
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(ShippingMethod::DISPLAY_ON_FRONT_AND_BACK_END) flash[:success] = Spree.t('customer_details_updated') redirect_to edit_admin_order_url(@order) else render action: :edit end end |