personal-journal/app/views/admin/journal_papers/excel_format.xlsx.axlsx

145 lines
3.2 KiB
Plaintext

# encoding: utf-8
wb = xlsx_package.workbook
wb.add_worksheet(name: "Journal Paper") 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_journal.paper_title") + " - " + t("en")
row1 << "textfield"
row2 << ""
row << t("personal_journal.paper_title") + " - " + t("zh_tw")
row1 << "textfield"
row2 << ""
row << t("personal_journal.journal_title") + " - " + t("en")
row1 << "textfield"
row2 << ""
row << t("personal_journal.journal_title") + " - " + t("zh_tw")
row1 << "textfield"
row2 << ""
row << t("personal_journal.authors") + " - " + t("en")
row1 << "textarea"
row2 << ""
row << t("personal_journal.authors") + " - " + t("zh_tw")
row1 << "textarea"
row2 << ""
row << t("personal_journal.year")
row1 << "number"
row2 << "Example : 2015 or 2014 or 1987"
row << t("personal_journal.language")
row1 << "select"
row2 << "en -> English, zh_tw -> Chinese"
row << t("personal_journal.vol_no")
row1 << "textfield"
row2 << ""
row << t("personal_journal.issue_no")
row1 << "textfield"
row2 << ""
row << t("personal_journal.total_pages")
row1 << "number"
row2 << "Example: 10 or 20 or 100"
row << t("personal_journal.level_type")
row1 << "checkbox"
t = ""
JournalLevel.asc(:created_at).each_with_index do |jl,i|
t = t + "#{i}" + " -> " + jl.title + ", "
end
if JournalLevel.count > 0
t = t + " Example : 0, if more than one then : 0,1"
else
t = "Leave this field blank"
end
row2 << t
row << t("personal_journal.paper_type")
row1 << "select"
t = ""
JournalPaperType.asc(:created_at).each_with_index do |jl,i|
t = t + "#{i}" + " -> " + jl.title + ", "
end
if JournalPaperType.count > 0
t = t + " Example : 0"
else
t = "Leave this field blank"
end
row2 << t
row << t("personal_journal.author_type")
row1 << "checkbox"
t = ""
JournalPaperAuthorType.asc(:created_at).each_with_index do |jl,i|
t = t + "#{i}" + " -> " + jl.title + ", "
end
if JournalPaperAuthorType.count > 0
t = t + " Example : 0, if more than one then : 0,1"
else
t = "Leave this field blank"
end
row2 << t
row << t("personal_journal.number_of_authors")
row1 << "number"
row2 << "Example: 1 or 2 or 10"
row << t("personal_journal.isbn")
row1 << "textfield"
row2 << ""
row << t("personal_journal.publication_date")
row1 << "date"
row2 << "Format: YYYY/MM/DD, Example: 2015/12/10"
row << t("personal_journal.url")
row1 << "textfield"
row2 << "http://domain.com/path"
row << t("personal_journal.keywords")
row1 << "textfield"
row2 << "Example: keyword1,keyword2"
row << t("personal_journal.abstract")
row1 << "textarea"
row2 << ""
row << t("personal_journal.note")
row1 << "textarea"
row2 << ""
row << t("personal_journal.associated_project")
row1 << "textfield"
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