personal-experience/app/views/admin/experiences/excel_format.xlsx.axlsx

90 lines
2.0 KiB
Plaintext

# 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