Guest User

Untitled

a guest
Oct 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. def current_jobs
  2. # Jezeli uzytkownik nie wybral zadneego klubu wyswietlona zostaje Lista wszystkich Zawodow
  3. # w innym wypadku pobierane sa tylko te Zawody ktore posiadaja aktualnie wybrani poslowie
  4.  
  5. if (!@club_ids.empty? || !@query.empty?)
  6. @envoys ||= run
  7. job_ids = ::EnvoyJob.where(:envoy_id => @envoys.map(&:id).uniq.flatten)
  8. ::Job.where(:id => job_ids.map(&:job_id))
  9. else
  10. ::Job.scoped
  11. end
  12. end
Add Comment
Please, Sign In to add comment