From 87d974f87e97bc5a37462123306afc04a0f1001a Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Wed, 8 May 2019 10:37:10 +0800 Subject: [PATCH] 1 --- app/controllers/managements_controller.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/managements_controller.rb b/app/controllers/managements_controller.rb index 11796cb0..7886b8db 100644 --- a/app/controllers/managements_controller.rb +++ b/app/controllers/managements_controller.rb @@ -4378,7 +4378,7 @@ end book = Spreadsheet::Workbook.new sheet1 = book.create_worksheet :name => "已发布实训课程" count_row = 2 - sheet1.row(1).concat(["", "地址", "实训课程名称","章节名称", "实训组成", "关卡数", "状态", "课程等级", "更新时间", "发布时间", ]) + sheet1.row(1).concat(["", "地址", "实训课程名称","章节名称", "实训组成", "关卡数", "状态", "实训发布时间", "课程等级", "更新时间", "发布时间", ]) Rails.logger.warn("##########subjects:#{subjects.count}") subjects.each do |subject| sheet1[count_row,1] = "paths/"+subject.id.to_s @@ -4391,6 +4391,7 @@ end sheet1[count_row,4] = "#{s_index + 1}-#{index + 1} #{shixun.name}" sheet1[count_row,5] = shixun.challenges.count sheet1[count_row,6] = shixun.shixun_status + sheet1[count_row,7] = shixun.publish_time if s_index == 0 && index == 0 sheet1[count_row,7] = subject.subject_level_system.try(:name) || "--" sheet1[count_row,8] = format_time subject.updated_at