personal-patent/app/controllers/personal_patents_controller.rb

122 lines
3.5 KiB
Ruby
Raw Normal View History

2014-07-04 03:48:33 +00:00
class PersonalPatentsController < ApplicationController
def index
2016-04-06 10:52:57 +00:00
params = OrbitHelper.params
2014-07-18 07:05:27 +00:00
patents = Patent.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
2016-04-06 10:52:57 +00:00
fields_to_show = Page.where(:page_id => params[:page_id]).first.custom_array_field rescue []
if fields_to_show.blank?
fields_to_show = [
"publish_date",
"patent_title",
"patent_no",
"patent_country",
"authors"
]
end
patent_list = []
patents.each do |patent|
t = []
fields_to_show.each do |fs|
case fs
2016-04-06 11:06:30 +00:00
when "patent_title"
2016-04-08 06:35:58 +00:00
t << {"value" => "<a href='#{OrbitHelper.url_to_show(patent.to_param)}' target='_blank'>" + (patent.send(fs) rescue "") + "</a>"}
2016-04-06 10:52:57 +00:00
when "publish_date"
t << {"value" => (patent.publish_date.strftime("%Y/%m/%d") rescue "")}
when "application_date"
t << {"value" => (patent.application_date.strftime("%Y/%m/%d") rescue "")}
when "end_date"
t << {"value" => (patent.end_date.strftime("%Y/%m/%d") rescue "")}
when "patent_category"
t << {"value" => (patent.patent_types.collect{|pt| pt.title}.join(", ") rescue "")}
when "author_type"
t << {"value" => (patent.patent_author_types.collect{|pt| pt.title}.join(", ") rescue "")}
else
t << {"value" => patent.send(fs)}
end
end
patent_list << {"patent_list" => t}
end
headers = []
fields_to_show.each do |fs|
col = 2
col = 3 if fs == "patent_title"
header = fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")
headers << {
"head-title" => header,
"col" => col
2014-07-04 03:48:33 +00:00
}
end
{
"patents" => patent_list,
2016-04-06 10:52:57 +00:00
"extras" => { "widget-title" => t("module_name.personal_patent") },
"headers" => headers,
2014-07-18 07:05:27 +00:00
"total_pages" => patents.total_pages
2014-07-04 03:48:33 +00:00
}
end
def show
params = OrbitHelper.params
2014-08-01 11:48:52 +00:00
plugin = Patent.where(:is_hidden=>false).find_by(uid: params[:uid])
fields_to_show = [
2015-01-09 07:41:08 +00:00
"patent_title",
2014-08-01 11:48:52 +00:00
"patent_no",
2016-04-06 12:11:45 +00:00
"patent_category",
"patent_country",
2016-04-06 12:31:36 +00:00
"progress_status",
2016-04-06 12:11:45 +00:00
"author_type",
2016-04-06 10:52:57 +00:00
"application_date",
"publish_date",
2016-04-06 12:11:45 +00:00
"end_date",
"patent_organization",
2016-04-06 12:28:46 +00:00
"year",
2015-01-09 07:41:08 +00:00
"authors",
2014-08-01 11:48:52 +00:00
"url",
2015-01-09 07:41:08 +00:00
"language",
"keywords",
2014-08-01 11:48:52 +00:00
"note",
"file"
]
2014-07-04 03:48:33 +00:00
2014-08-01 11:48:52 +00:00
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
2014-07-04 03:48:33 +00:00
end
2016-04-06 10:52:57 +00:00
def get_fields_for_index
@page = Page.find(params[:page_id]) rescue nil
@fields_to_show = [
"patent_category",
"year",
"publish_date",
"patent_title",
"patent_no",
"patent_organization",
"progress_status",
"application_date",
"end_date",
"publish_date",
"author_type",
"patent_country",
"authors",
"url",
"language",
"keywords",
"note"
]
@fields_to_show = @fields_to_show.map{|fs| [(fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")), fs]}
@default_fields_to_show = [
"publish_date",
"patent_title",
"patent_no",
"patent_country",
"authors"
]
render :layout => false
end
def save_index_fields
page = Page.find(params[:page_id]) rescue nil
page.custom_array_field = params[:keys]
page.save
render :json => {"success" => true}.to_json
end
2014-07-04 03:48:33 +00:00
end