2014-07-02 09:37:34 +00:00
|
|
|
class Admin::HonorsController < OrbitMemberController
|
|
|
|
layout "member_plugin"
|
2014-12-04 09:55:01 +00:00
|
|
|
include Admin::PersonalHonorsHelper
|
2014-07-02 09:37:34 +00:00
|
|
|
|
2014-10-02 11:46:12 +00:00
|
|
|
before_action :set_honor, only: [:show, :edit , :update, :destroy]
|
2014-07-02 09:37:34 +00:00
|
|
|
before_action :set_plugin
|
|
|
|
before_action :get_settings,:only => [:new, :edit, :setting]
|
|
|
|
|
2014-08-01 04:23:36 +00:00
|
|
|
before_action :need_access_right
|
|
|
|
before_action :allow_admin_only, :only => [:index, :setting]
|
|
|
|
|
2014-07-02 09:37:34 +00:00
|
|
|
def index
|
2014-07-18 07:03:24 +00:00
|
|
|
@honors = Honor.order_by(:year=>'desc').page(params[:page]).per(10)
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@honor = Honor.new
|
2014-12-04 09:55:01 +00:00
|
|
|
|
|
|
|
if params[:desktop]
|
|
|
|
render :layout => false
|
|
|
|
end
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
2016-06-06 09:15:12 +00:00
|
|
|
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 {
|
2016-06-06 09:37:04 +00:00
|
|
|
response.headers['Content-Disposition'] = 'attachment; filename="honors.xlsx"'
|
2016-06-06 09:15:12 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-02 09:37:34 +00:00
|
|
|
def create
|
2015-01-20 06:44:40 +00:00
|
|
|
|
|
|
|
if !honor_params['member_profile_id'].blank?
|
|
|
|
|
|
|
|
@member = MemberProfile.find(honor_params['member_profile_id']) rescue nil
|
|
|
|
@honor = Honor.new(honor_params)
|
|
|
|
@honor.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|
|
|
|
|
|
|
|
|
honor_params['member_profile_id'] = author_member
|
|
|
|
@honor = Honor.new(honor_params)
|
|
|
|
@honor.save
|
|
|
|
|
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to params['referer_url']
|
|
|
|
|
2014-12-04 09:55:01 +00:00
|
|
|
else
|
2015-01-20 06:44:40 +00:00
|
|
|
|
|
|
|
honor_params['member_profile_id'] = User.find(current_user.id).member_profile_id
|
|
|
|
|
|
|
|
@honor = Honor.new(honor_params)
|
|
|
|
@honor.save
|
|
|
|
|
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
end
|
|
|
|
|
2014-12-04 09:55:01 +00:00
|
|
|
redirect_to params['referer_url']
|
2015-01-20 06:44:40 +00:00
|
|
|
|
2014-12-04 09:55:01 +00:00
|
|
|
end
|
2015-01-20 06:44:40 +00:00
|
|
|
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2014-10-02 11:46:12 +00:00
|
|
|
@member = @honor.member_profile rescue nil
|
2014-12-04 09:55:01 +00:00
|
|
|
if params[:desktop]
|
|
|
|
render :layout => false
|
|
|
|
end
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2014-10-02 11:46:12 +00:00
|
|
|
@member = @honor.member_profile rescue nil
|
2014-07-02 09:37:34 +00:00
|
|
|
@honor.update_attributes(honor_params)
|
|
|
|
@honor.save
|
2014-12-04 09:55:01 +00:00
|
|
|
if params[:desktop] == "true"
|
|
|
|
render json: {"data" => get_paper_list}.to_json
|
|
|
|
else
|
|
|
|
redirect_to params['referer_url']
|
|
|
|
end
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@honor.destroy
|
2014-12-04 09:55:01 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to(admin_honor_url) }
|
|
|
|
# format.xml { head :ok }
|
|
|
|
format.js
|
|
|
|
format.json {render json: {"success" => true}}
|
|
|
|
end
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def toggle_hide
|
|
|
|
if params[:ids]
|
|
|
|
@honors = Honor.any_in(_id: params[:ids])
|
|
|
|
|
|
|
|
@honors.each do |honor|
|
|
|
|
honor.is_hidden = params[:disable]
|
|
|
|
honor.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: {"success"=>true}
|
|
|
|
end
|
|
|
|
|
2015-12-14 07:18:27 +00:00
|
|
|
def excel_format
|
|
|
|
respond_to do |format|
|
|
|
|
format.xlsx {
|
|
|
|
response.headers['Content-Disposition'] = 'attachment; filename="honor_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_honor(row,mp)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
redirect_to admin_honors_url
|
|
|
|
else
|
|
|
|
redirect_to admin_honors_url(:error => "1")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-02 09:37:34 +00:00
|
|
|
def setting
|
|
|
|
end
|
|
|
|
|
|
|
|
def frontend_setting
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@intro = HonorIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? HonorIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_frontend_setting
|
|
|
|
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
|
|
|
|
@intro = HonorIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? HonorIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
@intro.update_attributes(intro_params)
|
|
|
|
@intro.save
|
2014-07-15 09:26:23 +00:00
|
|
|
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Honor')
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings
|
|
|
|
@honor_types = HonorType.all
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_plugin
|
|
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Honor'}.first
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2014-10-02 11:46:12 +00:00
|
|
|
def set_honor
|
|
|
|
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
|
|
|
|
@honor = Honor.find_by(:uid => uid) rescue Honor.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2014-07-02 09:37:34 +00:00
|
|
|
def honor_params
|
|
|
|
params.require(:honor).permit! rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def intro_params
|
|
|
|
params.require(:honor_intro).permit! rescue nil
|
|
|
|
end
|
|
|
|
end
|