Sha256: d9f9e2d12a95043ccc6e50843fc6f37d8a584330bfe69bbff758576307c2d3ce

Contents?: true

Size: 486 Bytes

Versions: 62

Compression:

Stored size: 486 Bytes

Contents

module Workarea
  module Admin
    class InventorySkuViewModel < ApplicationViewModel
      def timeline
        @timeline ||= TimelineViewModel.new(model)
      end

      def product
        @product ||=
          begin
            product = Catalog::Product.find_by_sku(model.id)
            ProductViewModel.wrap(product, options) if product.present?
          end
      end

      def pricing
        @pricing ||= Pricing::Sku.where(id: model.id).first
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.4.13 app/view_models/workarea/admin/inventory_sku_view_model.rb
workarea-admin-3.4.12 app/view_models/workarea/admin/inventory_sku_view_model.rb