Update personal_books_controller.rb
This commit is contained in:
parent
f9f6108f30
commit
6d3b6f5fcb
|
@ -33,7 +33,7 @@ class PersonalBooksController < ApplicationController
|
||||||
books_show = books_temp.select {|value| value.create_link.include? params[:keywords]}
|
books_show = books_temp.select {|value| value.create_link.include? params[:keywords]}
|
||||||
end
|
end
|
||||||
when "publish_date", "publication_date"
|
when "publish_date", "publication_date"
|
||||||
books_show = books_temp.select {|value| value.publish_date.strftime("%Y/%m/%d").to_s.include? params[:keywords]}
|
books_show = books_temp.select {|value| value.send(params[:selectbox]).strftime("%Y/%m/%d").to_s.include? params[:keywords]}
|
||||||
when "author_type"
|
when "author_type"
|
||||||
books_show = books_temp.select {|value| value.book_author_types.collect{|bat| bat.title}.join(", ").include? params[:keywords]}
|
books_show = books_temp.select {|value| value.book_author_types.collect{|bat| bat.title}.join(", ").include? params[:keywords]}
|
||||||
when "language"
|
when "language"
|
||||||
|
@ -64,7 +64,7 @@ class PersonalBooksController < ApplicationController
|
||||||
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"}
|
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"}
|
||||||
end
|
end
|
||||||
when "publish_date", "publication_date"
|
when "publish_date", "publication_date"
|
||||||
t << {"value" => (!book.publish_date.nil? ? book.publish_date.strftime('%Y/%m') : "")}
|
t << {"value" => (!book.send(fs).nil? ? book.send(fs).strftime('%Y/%m') : "")}
|
||||||
when "author_type"
|
when "author_type"
|
||||||
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")}
|
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")}
|
||||||
when "language"
|
when "language"
|
||||||
|
|
Loading…
Reference in New Issue