Sha256: e8a6ec15c7a23178db08461b9446fefc9a7f3e44b9b9beffcece72a3987a19b5

Contents?: true

Size: 472 Bytes

Versions: 62

Compression:

Stored size: 472 Bytes

Contents

module Workarea
  module Storefront
    module OrderLookup
      extend ActiveSupport::Concern

      def lookup_order
        return @lookup_order if defined?(@lookup_order)

        @lookup_order = if session[:lookup_order_id]
                          Order.find(session[:lookup_order_id])
                        end
      end

      def lookup_order=(order)
        session[:lookup_order_id] = order.try(:id)
        @lookup_order = order
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.4.27 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.4 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.26 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.3 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.25 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.2 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.24 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.1 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.23 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.22 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.0 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.21 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.5.0.beta.1 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.20 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.19 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.18 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.17 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.16 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.15 app/controllers/workarea/storefront/order_lookup.rb
workarea-storefront-3.4.14 app/controllers/workarea/storefront/order_lookup.rb