|
|
|
@ -460,8 +460,6 @@ class ExercisesController < ApplicationController
|
|
|
|
|
if unified_setting || (course_group_ids.size == 0)
|
|
|
|
|
tip_exception("发布时间不能为空") if params[:publish_time].blank?
|
|
|
|
|
tip_exception("截止时间不能为空") if params[:end_time].blank?
|
|
|
|
|
tip_exception("发布时间不能早于当前时间") if params[:publish_time].to_time <= Time.now
|
|
|
|
|
tip_exception("截止时间不能早于当前时间") if params[:end_time].to_time <= Time.now
|
|
|
|
|
tip_exception("截止时间不能早于发布时间") if params[:publish_time].to_time > params[:end_time].to_time
|
|
|
|
|
tip_exception("截止时间不能晚于课堂结束时间(#{@course.end_date.end_of_day.strftime("%Y-%m-%d %H:%M")})") if
|
|
|
|
|
@course.end_date.present? && params[:end_time].to_time > @course.end_date.end_of_day
|
|
|
|
|