From 9549cbaa5f59fabdb2e6ced824cfbd5d00342628 Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Mon, 15 Feb 2016 20:01:50 +0800 Subject: [PATCH] small fix for book columns --- app/models/book.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/book.rb b/app/models/book.rb index 1e44ffe..11368a6 100644 --- a/app/models/book.rb +++ b/app/models/book.rb @@ -7,7 +7,7 @@ class Book include MemberHelper include Slug - field :book_title, as: :slug_title, type: String, localize: true + field :book_title, as: :slug_title, localize: true field :extracted_chapters, type: String, localize: true field :publisher, type: String, localize: true field :editor, type: String, localize: true @@ -73,7 +73,7 @@ class Book fields_to_show.each do |t| if (self.fields[t].type.to_s == "String" rescue false) - fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 && datas.where(t.to_sym.ne => "").count == 0 rescue false) + fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false) else fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false) end