Created
December 13, 2012 17:50
-
-
Save roushkaman/4278259 to your computer and use it in GitHub Desktop.
Есть парочка проблем и вопросов: 1.не могу заставить работать как хелпер
2.как делать исключение?
3.и где установить limit, так как везде он получаеться не определенным методом?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def self.similar(current_product) | |
semilars = self.where(:part_id => current_product.part_id, :model_id => current_product.model_id) | |
if semilars.count < 5 | |
semilars |= self.where(:model_id => current_product.model_id) | |
if semilars.count < 5 | |
sem = semilars | self.all | |
else | |
semilars | |
end | |
end | |
end | |
def show | |
show! { @silimiar_products = ProductDecorator.decorate(Product.similar(@product)) } | |
end |
От двойной вложенности if
избавься и 5 сделай константой. Вынеси ее в Product
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Исключение:
Ограничение по кол-ву: