打印工程认证导入成绩的日志

dev_aliyun
daiao 5 years ago
parent 8dd226f77a
commit c7a8f1481b

@ -170,6 +170,12 @@ class EcCourseEvaluationsController < ApplicationController
score_count = @ce.evluation_count * length score_count = @ce.evluation_count * length
EcStudentAchievement.where(:ec_course_evaluation_subitem_id => subitems.pluck(:id)).destroy_all EcStudentAchievement.where(:ec_course_evaluation_subitem_id => subitems.pluck(:id)).destroy_all
score_type = worksheet.cell(2, score_count+1) && worksheet.cell(2, score_count+2) ? 1 : 2 score_type = worksheet.cell(2, score_count+1) && worksheet.cell(2, score_count+2) ? 1 : 2
logger.info("####evluation_count: #{@ce.evluation_count}")
logger.info("####length: #{length}")
logger.info("####score_type: #{score_type}")
logger.info("####worksheet.cell(2, score_count+1): #{worksheet.cell(2, score_count+1)}")
logger.info("####worksheet.cell(2, score_count+2): #{worksheet.cell(2, score_count+2)}")
if score_type == 2 && rows > 3 if score_type == 2 && rows > 3
render :json => {status: 0, message: "平均成绩只能有一行数据"} render :json => {status: 0, message: "平均成绩只能有一行数据"}
else else

Loading…
Cancel
Save