diff options
author | HombreLaser <sebastian-440@live.com> | 2023-04-16 13:02:26 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-04-16 13:02:26 -0600 |
commit | 62ebfcb0901002c1377d5677ed1a0d062ab94ff0 (patch) | |
tree | e6eb92f5d1fe2dc618e02f577c43ef0b4d256f79 /app/queries/searches/product_search.rb | |
parent | f158d350f10ae6850c7ee168f0345197c3265d5c (diff) |
Añade búsqueda de productos
Diffstat (limited to 'app/queries/searches/product_search.rb')
-rw-r--r-- | app/queries/searches/product_search.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/queries/searches/product_search.rb b/app/queries/searches/product_search.rb new file mode 100644 index 0000000..d426211 --- /dev/null +++ b/app/queries/searches/product_search.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +module Searches + # ProductSearch + class ProductSearch < BaseSearch + def call + @scope_filter.by_name + .by_company + .by_category + .order_by_available_quantity + .order_by_price + .order_by_bulk_price + .query_result + end + end +end |