diff --git a/app/controllers/admin/patents_controller.rb b/app/controllers/admin/patents_controller.rb
index e77fa69..0edd23d 100644
--- a/app/controllers/admin/patents_controller.rb
+++ b/app/controllers/admin/patents_controller.rb
@@ -22,6 +22,28 @@ class Admin::PatentsController < OrbitMemberController
end
end
+ def analysis_report
+ role = params[:role_id]
+ year_start = params[:year_start].to_i
+ year_end = params[:year_end].to_i
+ graph_by = params[:graph_by]
+
+ @data = get_chart_data(year_start,year_end,role,params[:graph_by])
+
+ render :layout => false
+ end
+
+ def download_excel
+ year_start = params[:year_start].to_i
+ year_end = params[:year_end].to_i
+ @data = get_data_for_excel(year_start,year_end)
+ respond_to do |format|
+ format.xlsx {
+ response.headers['Content-Disposition'] = 'attachment; filename="projects.xlsx"'
+ }
+ end
+ end
+
def create
if !patent_params['member_profile_id'].blank?
diff --git a/app/helpers/admin/personal_patents_helper.rb b/app/helpers/admin/personal_patents_helper.rb
index 0a48b69..e0af44f 100644
--- a/app/helpers/admin/personal_patents_helper.rb
+++ b/app/helpers/admin/personal_patents_helper.rb
@@ -87,4 +87,62 @@ module Admin::PersonalPatentsHelper
patent.member_profile = mp
patent.save
end
+
+ def get_data_for_excel(year_start,year_end)
+ data = []
+ roles = Role.where(:disabled => false, :title.ne => "", :title.ne => nil).asc(:key)
+ roles.each do |role|
+ d = {}
+ d["name"] = role.title
+ mps = role.member_profile_ids
+ # d1 = DateTime.new(year_start,1,1,0,0)
+ # d2 = DateTime.new(year_end,12,31,23,59)
+ d["data"] = Patent.where(:year.gte => year_start, :year.lte => year_end, :member_profile_id.in => mps) rescue []
+ data << d
+ end
+ return data
+ end
+
+ def get_chart_data(year_start,year_end,role,type)
+ case type
+ when "category"
+ jls = PatentType.all
+ when "author_type"
+ jls = PatentAuthorType.all
+ end
+
+ finaldata = []
+ role = Role.find(role) rescue nil
+ mps = []
+ if !role.nil?
+ mps = role.member_profile_ids
+ end
+ jls.each do |jl|
+ data = {}
+ data["name"] = jl.title
+ data["data"] = {}
+ (year_start..year_end).each do |year|
+ # d1 = DateTime.new(year,1,1,0,0)
+ # d2 = DateTime.new(year,12,31,23,59)
+ t = jl.patents.where(:year => year, :member_profile_id.in => mps).count rescue 0
+ data["data"][year.to_s] = t
+ end
+ finaldata << data
+ end
+ data = {"name" => "N/A", "data" => {}}
+ (year_start..year_end).each do |year|
+ # d1 = DateTime.new(year,1,1,0,0)
+ # d2 = DateTime.new(year,12,31,23,59)
+ case type
+ when "category"
+ t = Patent.where(:year => year, :member_profile_id.in => mps, :patent_type_ids => nil).count rescue 0
+ when "author_type"
+ t = Patent.where(:year => year, :member_profile_id.in => mps, :patent_author_type_ids => nil).count rescue 0
+ end
+
+ data["data"][year.to_s] = t
+ end
+ finaldata << data
+ finaldata
+ end
end
\ No newline at end of file
diff --git a/app/views/admin/patents/analysis.html.erb b/app/views/admin/patents/analysis.html.erb
new file mode 100644
index 0000000..cd37d38
--- /dev/null
+++ b/app/views/admin/patents/analysis.html.erb
@@ -0,0 +1,115 @@
+<% # encoding: utf-8 %>
+<% content_for :page_specific_css do %>
+ <%= stylesheet_link_tag "lib/main-forms" %>
+ <%= stylesheet_link_tag "lib/fileupload" %>
+ <%= stylesheet_link_tag "lib/main-list" %>
+ <%= stylesheet_link_tag "lib/main-form-col2" %>
+
+<% end %>
+<% content_for :page_specific_javascript do %>
+ <%= javascript_include_tag "//www.google.com/jsapi", "chartkick"%>
+ <%= javascript_include_tag "justgage.1.0.1.min" %>
+ <%= javascript_include_tag "raphael.2.1.0.min" %>
+ <%= javascript_include_tag "validator" %>
+<% end %>
+
+
+
+ <% Role.where(:disabled => false, :title.ne => "", :title.ne => nil).asc(:key).each do |role| %>
+
+
<%= role.title %>
+
+
+
+
+ <% end %>
+
+
+
+
+
+
+
diff --git a/app/views/admin/patents/analysis_report.html.erb b/app/views/admin/patents/analysis_report.html.erb
new file mode 100644
index 0000000..b4e8aa4
--- /dev/null
+++ b/app/views/admin/patents/analysis_report.html.erb
@@ -0,0 +1 @@
+<%= column_chart @data, :id => params[:role_id], :height => "350px", :xtitle => "Year", :ytitle => "Total number" %>
\ No newline at end of file
diff --git a/app/views/admin/patents/download_excel.xlsx.axlsx b/app/views/admin/patents/download_excel.xlsx.axlsx
new file mode 100644
index 0000000..a5aff3b
--- /dev/null
+++ b/app/views/admin/patents/download_excel.xlsx.axlsx
@@ -0,0 +1,65 @@
+# encoding: utf-8
+
+wb = xlsx_package.workbook
+@data.each_with_index do |role,idx|
+ data = role["data"]
+ wb.add_worksheet(name: role["name"] + "-" + idx.to_s) do |sheet|
+
+ heading = sheet.styles.add_style(:b => true, :locked => true)
+
+ row = ["Name"]
+
+ @site_in_use_locales.each do |locale|
+ row << t("personal_patent.patent_title") + " - " + t(locale.to_s)
+ end
+
+ @site_in_use_locales.each do |locale|
+ row << t("personal_patent.patent_country") + " - " + t(locale.to_s)
+ end
+
+ @site_in_use_locales.each do |locale|
+ row << t("personal_patent.authors") + " - " + t(locale.to_s)
+ end
+
+ row << t("personal_patent.year")
+
+ row << t("personal_patent.language")
+
+ row << t("personal_patent.patent_category")
+
+ row << t("personal_patent.issue_no")
+
+ row << t("personal_patent.publication_date")
+
+ row << t("personal_patent.url")
+
+ row << t("personal_patent.keywords")
+
+ row << t("personal_patent.note")
+
+ sheet.add_row row, :style => heading
+
+ data.each do |patent|
+ row = [patent.member_profile.name]
+ @site_in_use_locales.each do |locale|
+ row << patent.patent_title_translations[locale.to_s]
+ end
+ @site_in_use_locales.each do |locale|
+ row << patent.patent_country_translations[locale.to_s]
+ end
+ @site_in_use_locales.each do |locale|
+ row << patent.authors_translations[locale.to_s]
+ end
+
+ row << patent.year
+ row << patent.language
+ row << patent.patent_types.map{|pt| pt.title}.join(", ") rescue ""
+ row << patent.issue_no
+ row << patent.publication_date.strftime("%Y-%m-%d") rescue ""
+ row << patent.url
+ row << patent.keywords
+ row << patent.note
+ sheet.add_row row
+ end
+ end
+end
\ No newline at end of file
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 37d6213..2d2a7fb 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -39,6 +39,7 @@ en:
description : "File Description"
pages : "Pages"
book_paper_type : "Book Paper Type"
+ graph_by : "Graph By"
frontend:
writing_patents: "Patent Front-end"
diff --git a/config/locales/zh_tw.yml b/config/locales/zh_tw.yml
index c9dd38c..74000c1 100644
--- a/config/locales/zh_tw.yml
+++ b/config/locales/zh_tw.yml
@@ -37,6 +37,7 @@ zh_tw:
file : "檔案"
file_name : "檔案名稱"
description : "描述"
+ graph_by : "Graph By"
frontend:
writing_patents: "專利前台"
diff --git a/config/routes.rb b/config/routes.rb
index 47d9bc5..c7e5dde 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -9,6 +9,9 @@ Rails.application.routes.draw do
resources :patents do
collection do
get 'toggle_hide' => 'patents#toggle_hide'
+ get 'analysis'
+ get 'analysis_report'
+ get "download_excel"
end
end
diff --git a/lib/personal_patent/engine.rb b/lib/personal_patent/engine.rb
index d99a86d..a917986 100644
--- a/lib/personal_patent/engine.rb
+++ b/lib/personal_patent/engine.rb
@@ -4,7 +4,7 @@ module PersonalPatent
OrbitApp.registration "PersonalPatent",:type=> 'ModuleApp' do
module_label 'module_name.personal_patent'
base_url File.expand_path File.dirname(__FILE__)
- personal_plugin :enable => true, :sort_number => '35', :app_name=>"Patent", :intro_app_name=>"PersonalPatentIntro",:path=>"/plugin/personal_patent/profile",:front_path=>"/profile",:admin_path=>"/admin/patents",:i18n=>'module_name.personal_patent', :module_app_name=>"PersonalPatent", :field_modifiable => true
+ personal_plugin :enable => true, :sort_number => '35', :app_name=>"Patent", :intro_app_name=>"PersonalPatentIntro",:path=>"/plugin/personal_patent/profile",:front_path=>"/profile",:admin_path=>"/admin/patents",:i18n=>'module_name.personal_patent', :module_app_name=>"PersonalPatent", :field_modifiable => true, :analysis => true, :analysis_path => "/admin/patents/analysis"
version "0.1"
desktop_enabled true