Sha256: 633b00078d7ba397fb3d645b5ac10a470d166df2fbd199c3617e5b987c10db88
Contents?: true
Size: 452 Bytes
Versions: 28
Compression:
Stored size: 452 Bytes
Contents
module Workarea module Admin module Reports class SalesByProductViewModel < ApplicationViewModel def results @results ||= model.results.map do |result| OpenStruct.new({ product: products[result['_id']] }.merge(result)) end end def products @products ||= Catalog::Product.any_in(id: model.results.map { |r| r['_id'] }).to_lookup_hash end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems