Update personal_books_controller.rb

This commit is contained in:
chiu 2019-08-14 15:07:07 +08:00
parent fcbd1d786c
commit d03e62138f
1 changed files with 1 additions and 6 deletions

View File

@ -63,12 +63,7 @@ class PersonalBooksController < ApplicationController
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"}
end
when "publish_date", "publication_date"
pd = ""
if !book.publication_date.nil?
pd = book.publication_date.strftime("%Y-%m-%d").split('-')
pd = pd[0]+"/"+pd[1]
end
t << {"value" => pd}
t << {"value" => book.publication_date.strftime("%Y/%m/%d")}
when "author_type"
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")}
when "language"