search for: min_price

Displaying 5 results from an estimated 5 matches for "min_price".

Did you mean: mean_price
2012 Dec 13
3
how to aggregate the dataset
HI, Sorry for messing up.. I want to transform the following dataset: product min_price max_price mean_price country price_band 11 34 50 40 VN 0-300 22 10 30 15 VN 0-300 Into: product VN price_band 11 40 0-300 [34,50] 22...
2006 Aug 18
4
HELP!!!! - number_to_currency in model?
Hi, I''m trying to use number_to_currency in one of my models, but i''m getting the following error: undefined method `number_to_currency'' for #<Product:0x396d680> Obviously, my Product model can''t access number_to_currency -- is there something I need to do to make it available? Thanks so much for your assistance. -- Posted via
2006 Sep 12
3
Querying against numeric fields? e.g. price:( >= min_price)
Using acts_as_ferret I''m trying to do a query like: active:(true) title|body:(#{params[:s]}) product_price:( >= #{params[:min]}) Where I want to return only the active products that contain the search term in the title or body and has a minimum price >= params[:min] I''m finding that even though I''m indexing the product price as an integer (so no .00 to cause
2006 Jan 31
11
ez_where plugin updated features.
Friends- I wanted to let people know that there is a new experimental release of this plugin. I would love feedback on syntax and features. There is now a full test suite with fixtures that covers all the available syntax. Look at the test suite for more syntax possibilities. There have been many additions since my last release. Fabien Atelier has been working on this with me and has
2010 Nov 05
0
Need a optimized version of this
...and view that in the search results I need to get the lowest price from prices belonging to the offer and check if its marked last_minute or promotion right now I''m doing this way to find promotions Offer.all(:conditions=>{:published=>true}).collect {|c| offers << c if c.min_price.promotion? } and I know this is counter productive way of searching but I couldn''t find a way to do that, my best guess was to use pure SQL but then I''m not that good at it (i was going for something find all where base_price is minimum and promotion is checked | last_minute is c...