Sha256: 4234e09fc7af238f257e24fc17126d8a1ddede9fc03c44e581f54b42327690bd
Contents?: true
Size: 1.83 KB
Versions: 5
Compression:
Stored size: 1.83 KB
Contents
module Comable class CartsController < Comable::ApplicationController before_filter :set_cart_item, only: [:add, :update] before_filter :ensure_found_cart_item, only: [:add, :update] def add if current_customer.add_cart_item(@cart_item, cart_item_options) redirect_to comable.cart_path, notice: Comable.t('carts.added') else flash.now[:alert] = Comable.t('carts.invalid') render :show end end def update if current_customer.reset_cart_item(@cart_item, cart_item_options) redirect_to comable.cart_path, notice: Comable.t('carts.updated') else flash.now[:alert] = Comable.t('carts.invalid') render :show end end def destroy cart_item = find_cart_item return redirect_by_product_not_found unless cart_item if current_customer.reset_cart_item(cart_item) redirect_to comable.cart_path, notice: Comable.t('carts.updated') else flash.now[:alert] = Comable.t('carts.invalid') render :show end end def checkout current_order.next_state if current_order.state?(:cart) redirect_to comable.next_order_path(state: :confirm) end private def set_cart_item @cart_item = find_cart_item end def ensure_found_cart_item return if @cart_item redirect_to :back, alert: Comable.t('errors.messages.products_not_found') end def find_cart_item cart_item = Comable::Stock.where(id: params[:stock_id]).first cart_item ||= Comable::Product.where(id: params[:product_id]).first return unless cart_item return if cart_item.is_a?(Comable::Product) && cart_item.sku? cart_item end def cart_item_options options = {} options.update(quantity: params[:quantity].to_i) if params[:quantity] options end end end
Version data entries
5 entries across 5 versions & 1 rubygems