excel import for expereince

This commit is contained in:
Harry Bomrah 2015-12-14 16:13:25 +08:00
parent 0b345a8377
commit 5f32e0a828
6 changed files with 199 additions and 1 deletions

View File

@ -97,6 +97,32 @@ class Admin::ExperiencesController < OrbitMemberController
end
end
def excel_format
respond_to do |format|
format.xlsx {
response.headers['Content-Disposition'] = 'attachment; filename="experiences_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_experience(row,mp)
end
end
redirect_to admin_experiences_url
else
redirect_to admin_experiences_url(:error => "1")
end
end
def toggle_hide
if params[:ids]
@experiences = Experience.any_in(_id: params[:ids])

View File

@ -17,4 +17,61 @@ module Admin::PersonalExperiencesHelper
end
experiences
end
def import_this_experience(row,mp)
value = nil
exp = Experience.new
row.cells.each_with_index do |cell,index|
next if index < 2
next if cell.nil?
val = cell.value
next if val.nil? || val == ""
case index
when 2
value = {"en" => val}
when 3
begin
value["zh_tw"] = val
rescue
value = {"zh_tw" => val}
end
exp.organizationt_title_translations = value
when 4
value = {"en" => val}
when 5
begin
value["zh_tw"] = val
rescue
value = {"zh_tw" => val}
end
exp.department_translations = value
when 6
value = {"en" => val}
when 7
begin
value["zh_tw"] = val
rescue
value = {"zh_tw" => val}
end
exp.job_title_translations = value
when 8
ets = ExperienceType.asc(:created_at).all.to_a
exp.experience_type = ets[val.to_i] if val.to_s.is_i? && val.to_i < ets.count
when 9
exp.language = val
when 10
exp.start_date = val
when 11
exp.end_date = val
when 12
exp.url = val
when 13
exp.keywords = val
when 14
exp.note = val
end
end
exp.member_profile = mp
exp.save
end
end

View File

@ -0,0 +1,90 @@
# encoding: utf-8
wb = xlsx_package.workbook
wb.add_worksheet(name: "Experience") do |sheet|
heading = sheet.styles.add_style(:b => true, :locked => true)
example = sheet.styles.add_style(:i => true)
row = ["user_id"]
row1 = [""]
row2 = [""]
row << "name"
row1 << ""
row2 << ""
row << t("personal_experience.organizationt_title") + " - " + t("en")
row1 << "textfield"
row2 << ""
row << t("personal_experience.organizationt_title") + " - " + t("zh_tw")
row1 << "textfield"
row2 << ""
row << t("personal_experience.department") + " - " + t("en")
row1 << "textfield"
row2 << ""
row << t("personal_experience.department") + " - " + t("zh_tw")
row1 << "textfield"
row2 << ""
row << t("personal_experience.job_title") + " - " + t("en")
row1 << "textfield"
row2 << ""
row << t("personal_experience.job_title") + " - " + t("zh_tw")
row1 << "textfield"
row2 << ""
row << t("personal_experience.experience_category")
row1 << "select"
t = ""
ExperienceType.asc(:created_at).each_with_index do |jl,i|
t = t + "#{i}" + " -> " + jl.title + ", "
end
if ExperienceType.count > 0
t = t + " Example : 0"
else
t = "Leave this field blank"
end
row2 << t
row << t("personal_experience.language")
row1 << "select"
row2 << "en -> English, zh_tw -> Chinese"
row << t("personal_experience.start_date")
row1 << "date"
row2 << "Format: YYYY/MM/DD, Example: 2015/12/10"
row << t("personal_experience.end_date")
row1 << "date"
row2 << "Format: YYYY/MM/DD, Example: 2015/12/10"
row << t("personal_experience.url")
row1 << "textfield"
row2 << "http://domain.com/path"
row << t("personal_experience.keywords")
row1 << "textfield"
row2 << "Example: keyword1,keyword2"
row << t("personal_experience.note")
row1 << "textarea"
row2 << ""
sheet.add_row row, :style => heading
sheet.add_row row1
sheet.add_row row2, :style => example
User.where(:user_name.ne => "rulingcom").each do |user|
r = [user.user_name]
r << user.name
sheet.add_row r
end
end

View File

@ -15,10 +15,30 @@
<div class="bottomnav clearfix">
<div class="action pull-right">
<div class="dropup upload-button">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">
<i class="icon-upload-alt icon-white"></i>上傳
<span class="caret"></span>
</button>
<div class="dropdown-menu upload-box">
<form action="/admin/experiences/import_from_excel" method="post" enctype="multipart/form-data">
<%= hidden_field_tag :authenticity_token, form_authenticity_token %>
<input type="file" name="import_file" >
<button class="btn btn-primary" type="submit"><%= t(:submit) %></button>
<a class="" href="/admin/experiences/download_excel_format.xlsx">Download excel format</a>
</form>
</div>
</div>
<%= link_to content_tag(:i, nil, :class => 'icon-plus icon-white') + t(:new_), new_admin_experience_path, :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-cog icon-white') + t('setting'), admin_experience_setting_path, :class => 'btn btn-primary pull-right' %>
</div>
<div class="pagination pagination-centered">
<%= content_tag :div, paginate(@experiences), class: "pagination pagination-centered" %>
</div>
</div>
</div>
<% if params[:error] == "1" %>
<script type="text/javascript">
alert("File cannot be imported. File has more than 500 entries. Please seperate the entries in different files.");
window.location.href = "<%= admin_experiences_url %>"
</script>
<% end %>

View File

@ -14,6 +14,8 @@ en:
authors : "Authors"
tags : "Tags"
year : "Year"
start_date : Start Date
end_date : End Date
language : "Language"
isbn : "ISSN(ISBN)"
vol_no : "Vol.No"

View File

@ -3,6 +3,9 @@ Rails.application.routes.draw do
scope "(:locale)", locale: Regexp.new(locales.join("|")) do
namespace :admin do
get 'experience_setting' => "experiences#setting"
get 'experiences/download_excel_format' => 'experiences#excel_format'
post 'experiences/import_from_excel' => 'experiences#import_from_excel'
resources :experiences do
collection do