2014-07-04 03:48:33 +00:00
|
|
|
class Admin::PatentsController < OrbitMemberController
|
|
|
|
layout "member_plugin"
|
2014-12-04 07:41:18 +00:00
|
|
|
include Admin::PersonalPatentsHelper
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2014-10-02 11:58:33 +00:00
|
|
|
before_action :set_patent, only: [:show, :edit , :update, :destroy]
|
2014-07-04 03:48:33 +00:00
|
|
|
before_action :set_plugin
|
|
|
|
before_action :get_settings,:only => [:new, :edit, :setting]
|
|
|
|
|
2014-08-01 04:24:34 +00:00
|
|
|
before_action :need_access_right
|
|
|
|
before_action :allow_admin_only, :only => [:index, :setting]
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
def index
|
2014-07-18 07:05:27 +00:00
|
|
|
@patents = Patent.order_by(:year=>'desc').page(params[:page]).per(10)
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@patent = Patent.new
|
2014-12-04 07:41:18 +00:00
|
|
|
|
|
|
|
if params[:desktop]
|
|
|
|
render :layout => false
|
|
|
|
end
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2015-01-20 06:46:24 +00:00
|
|
|
|
|
|
|
if !patent_params['member_profile_id'].blank?
|
|
|
|
|
|
|
|
@member = MemberProfile.find(patent_params['member_profile_id']) rescue nil
|
|
|
|
@patent = Patent.new(patent_params)
|
|
|
|
@patent.save
|
|
|
|
|
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
else
|
|
|
|
redirect_to params['referer_url']
|
|
|
|
end
|
|
|
|
|
|
|
|
elsif !params[:author_members].blank?
|
|
|
|
|
|
|
|
params[:author_members].each do |author_member|
|
|
|
|
|
|
|
|
patent_params['member_profile_id'] = author_member
|
|
|
|
@patent = Patent.new(patent_params)
|
|
|
|
@patent.save
|
|
|
|
|
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to params['referer_url']
|
|
|
|
|
2014-12-04 07:41:18 +00:00
|
|
|
else
|
2015-01-20 06:46:24 +00:00
|
|
|
|
|
|
|
patent_params['member_profile_id'] = User.find(current_user.id).member_profile_id
|
|
|
|
|
|
|
|
@patent = Patent.new(patent_params)
|
|
|
|
@patent.save
|
|
|
|
|
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
end
|
|
|
|
|
2014-12-04 07:41:18 +00:00
|
|
|
redirect_to params['referer_url']
|
2015-01-20 06:46:24 +00:00
|
|
|
|
2014-12-04 07:41:18 +00:00
|
|
|
end
|
2015-01-20 06:46:24 +00:00
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2014-10-02 11:58:33 +00:00
|
|
|
@member = @patent.member_profile rescue nil
|
2014-12-04 07:41:18 +00:00
|
|
|
if params[:desktop]
|
|
|
|
render :layout => false
|
|
|
|
end
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2014-10-02 11:58:33 +00:00
|
|
|
@member = @patent.member_profile rescue nil
|
2014-07-04 03:48:33 +00:00
|
|
|
@patent.update_attributes(patent_params)
|
|
|
|
@patent.save
|
2014-12-04 07:41:18 +00:00
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
else
|
|
|
|
redirect_to params['referer_url']
|
|
|
|
end
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@patent.destroy
|
2014-12-04 07:41:18 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to(admin_writing_conferences_url) }
|
|
|
|
# format.xml { head :ok }
|
|
|
|
format.js
|
|
|
|
format.json {render json: {"success" => true}}
|
|
|
|
end
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
2015-12-14 12:28:29 +00:00
|
|
|
def excel_format
|
|
|
|
respond_to do |format|
|
|
|
|
format.xlsx {
|
|
|
|
response.headers['Content-Disposition'] = 'attachment; filename="patents_format.xlsx"'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_from_excel
|
|
|
|
workbook = RubyXL::Parser.parse(params["import_file"].tempfile)
|
|
|
|
sheet = workbook[0]
|
|
|
|
if sheet.count <= 503
|
|
|
|
sheet.each_with_index do |row, i|
|
|
|
|
next if i < 3
|
|
|
|
user = User.where(:user_name => row.cells[0].value).first rescue nil
|
|
|
|
if !user.nil?
|
|
|
|
mp = user.member_profile
|
|
|
|
import_this_patent(row,mp)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
redirect_to admin_patents_url
|
|
|
|
else
|
|
|
|
redirect_to admin_patents_url(:error => "1")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
def toggle_hide
|
|
|
|
if params[:ids]
|
|
|
|
@patents = Patent.any_in(_id: params[:ids])
|
|
|
|
|
|
|
|
@patents.each do |patent|
|
|
|
|
patent.is_hidden = params[:disable]
|
|
|
|
patent.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: {"success"=>true}
|
|
|
|
end
|
|
|
|
|
|
|
|
def setting
|
|
|
|
end
|
|
|
|
|
|
|
|
def frontend_setting
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@intro = PatentIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? PatentIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_frontend_setting
|
|
|
|
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
|
|
|
|
@intro = PatentIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? PatentIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
@intro.update_attributes(intro_params)
|
|
|
|
@intro.save
|
2014-07-15 09:20:00 +00:00
|
|
|
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Patent')
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings
|
|
|
|
@patent_types = PatentType.all
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_plugin
|
|
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Patent'}.first
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2014-10-02 11:58:33 +00:00
|
|
|
def set_patent
|
|
|
|
path = request.path.split('/')
|
|
|
|
if path.last.include? '-'
|
|
|
|
uid = path[-1].split("-").last
|
|
|
|
uid = uid.split("?").first
|
|
|
|
else
|
|
|
|
uid = path[-2].split("-").last
|
|
|
|
uid = uid.split("?").first
|
|
|
|
end
|
|
|
|
@patent = Patent.find_by(:uid => uid) rescue Patent.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
def patent_params
|
|
|
|
params.require(:patent).permit! rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def intro_params
|
|
|
|
params.require(:patent_intro).permit! rescue nil
|
|
|
|
end
|
|
|
|
end
|