I have a two models as:
Product { has_may variants}
Variant {belongs to product}
I used Sunspot search, and in result I retrieved selected variants, now I want this result as my search result contains the each Product who's one or more variant is retrieved by the search.
code sample of search is as follows:
@search = Sunspot.search(Spree::Variant) do
keywords params[:keywords]
with :is_active, true
with :deleted_at,nil
if params[:ah].present? && params[:al].present?
(Date.parse(params[:al])..Date.parse(params[:ah])).each do |d|
with :f2r_available_on, d.to_time
end
end
end
@products = @search.results
