2021-02-07 14:56:22 +00:00
|
|
|
class Admin::AcademicAdvisingsController < OrbitMemberController
|
2014-07-02 09:37:34 +00:00
|
|
|
layout "member_plugin"
|
2021-02-07 14:56:22 +00:00
|
|
|
include Admin::AcademicAdvisingsHelper
|
2014-07-02 09:37:34 +00:00
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
before_action :set_academic_advising, 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
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advisings = Advising.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
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advising = Advising.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 {
|
2021-02-07 14:56:22 +00:00
|
|
|
response.headers['Content-Disposition'] = 'attachment; filename="academic_advisings.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
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
if !academic_advising_params['member_profile_id'].blank?
|
2015-01-20 06:44:40 +00:00
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
@member = MemberProfile.find(academic_advising_params['member_profile_id']) rescue nil
|
|
|
|
@academic_advising = Advising.new(academic_advising_params)
|
|
|
|
@academic_advising.save
|
2015-01-20 06:44:40 +00:00
|
|
|
|
|
|
|
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|
|
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
academic_advising_params['member_profile_id'] = author_member
|
|
|
|
@academic_advising = Advising.new(academic_advising_params)
|
|
|
|
@academic_advising.save
|
2015-01-20 06:44:40 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
academic_advising_params['member_profile_id'] = User.find(current_user.id).member_profile_id
|
2015-01-20 06:44:40 +00:00
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advising = Advising.new(academic_advising_params)
|
|
|
|
@academic_advising.save
|
2015-01-20 06:44:40 +00:00
|
|
|
|
|
|
|
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
|
2021-02-07 14:56:22 +00:00
|
|
|
@member = @academic_advising.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
|
2021-02-07 14:56:22 +00:00
|
|
|
@member = @academic_advising.member_profile rescue nil
|
|
|
|
@academic_advising.update_attributes(academic_advising_params)
|
|
|
|
@academic_advising.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
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advising.destroy
|
2014-12-04 09:55:01 +00:00
|
|
|
respond_to do |format|
|
2021-02-07 14:56:22 +00:00
|
|
|
format.html { redirect_to(admin_academic_advising_url) }
|
2014-12-04 09:55:01 +00:00
|
|
|
# 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]
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advisings = Advising.any_in(_id: params[:ids])
|
2014-07-02 09:37:34 +00:00
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advisings.each do |academic_advising|
|
|
|
|
academic_advising.is_hidden = params[:disable]
|
|
|
|
academic_advising.save
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: {"success"=>true}
|
|
|
|
end
|
|
|
|
|
2015-12-14 07:18:27 +00:00
|
|
|
def excel_format
|
|
|
|
respond_to do |format|
|
|
|
|
format.xlsx {
|
2021-02-07 14:56:22 +00:00
|
|
|
response.headers['Content-Disposition'] = 'attachment; filename="academic_advising_format.xlsx"'
|
2015-12-14 07:18:27 +00:00
|
|
|
}
|
|
|
|
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
|
2021-02-07 14:56:22 +00:00
|
|
|
import_this_academic_advising(row,mp)
|
2015-12-14 07:18:27 +00:00
|
|
|
end
|
|
|
|
end
|
2021-02-07 14:56:22 +00:00
|
|
|
redirect_to admin_academic_advisings_url
|
2015-12-14 07:18:27 +00:00
|
|
|
else
|
2021-02-07 14:56:22 +00:00
|
|
|
redirect_to admin_academic_advisings_url(:error => "1")
|
2015-12-14 07:18:27 +00:00
|
|
|
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
|
2021-02-07 14:56:22 +00:00
|
|
|
@intro = AdvisingIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? AdvisingIntro.new({:member_profile_id=>@member.id}) : @intro
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_frontend_setting
|
|
|
|
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
|
2021-02-07 14:56:22 +00:00
|
|
|
@intro = AdvisingIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? AdvisingIntro.new({:member_profile_id=>@member.id}) : @intro
|
2014-07-02 09:37:34 +00:00
|
|
|
@intro.update_attributes(intro_params)
|
|
|
|
@intro.save
|
2021-02-07 14:56:22 +00:00
|
|
|
redirect_to URI.encode('/admin/members/'+@member.to_param+'/AcademicAdvising')
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advising_types = AdvisingType.all
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_plugin
|
2021-02-07 14:56:22 +00:00
|
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'AcademicAdvising'}.first
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
def set_academic_advising
|
2014-10-02 11:46:12 +00:00
|
|
|
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
|
2021-02-07 14:56:22 +00:00
|
|
|
@academic_advising = Advising.find_by(:uid => uid) rescue Advising.find(params[:id])
|
2014-10-02 11:46:12 +00:00
|
|
|
end
|
|
|
|
|
2021-02-07 14:56:22 +00:00
|
|
|
def academic_advising_params
|
|
|
|
params.require(:advising).permit! rescue nil
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def intro_params
|
2021-02-07 14:56:22 +00:00
|
|
|
params.require(:advising_intro).permit! rescue nil
|
2014-07-02 09:37:34 +00:00
|
|
|
end
|
|
|
|
end
|