fix for empty columns
This commit is contained in:
parent
80ba6fc882
commit
5a3f50bc77
|
@ -51,11 +51,22 @@ class Patent
|
||||||
"authors"
|
"authors"
|
||||||
]
|
]
|
||||||
|
|
||||||
pd_title = fields_to_show.collect do |t|
|
fields_to_remove = []
|
||||||
{
|
|
||||||
"plugin_data_title" => I18n.t("personal_patent.#{t}")
|
pd_title = []
|
||||||
}
|
|
||||||
|
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, 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
|
end
|
||||||
|
pd_title << {
|
||||||
|
"plugin_data_title" => I18n.t("personal_project.#{t}")
|
||||||
|
} if !fields_to_remove.include?(t)
|
||||||
|
end
|
||||||
|
|
||||||
|
fields_to_show = fields_to_show - fields_to_remove
|
||||||
|
|
||||||
plugin_datas = datas.sort_for_frontend.collect do |p|
|
plugin_datas = datas.sort_for_frontend.collect do |p|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue