fix for column removal
This commit is contained in:
parent
be3945cd44
commit
485f9b5401
|
@ -52,7 +52,11 @@ class Honor
|
|||
pd_title = []
|
||||
|
||||
fields_to_show.each do |t|
|
||||
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false)
|
||||
if (self.fields[t].type == String || self.fields[t].type == Object rescue false)
|
||||
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, 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
|
||||
pd_title << {
|
||||
"plugin_data_title" => I18n.t("personal_honor.#{t}")
|
||||
} if !fields_to_remove.include?(t)
|
||||
|
|
Loading…
Reference in New Issue