diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 3d980718..b2464067 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -596,6 +596,27 @@ module ApplicationHelper GameCode.create(:game_id => game_id, :path => path) if game_code.blank? end + def total_graduation_count year + g_count = EcGraduationSubitem.where(:ec_graduation_requirement_id => year.ec_graduation_requirements).count + g_count == 0 ? "--" : g_count + # 36 + end + + def sigle_graduation_count + '--' + # 30 + end + + def total_graduation_course_count ec_year + ec_year.ec_courses.count == 0 ? '--' : ec_year.ec_courses.count + # 64 + end + + def sigle_graduation_course_count + '--' + # 60 + end + # 判断用户是否认证 def check_authentication # return true diff --git a/app/helpers/ec_major_schools_helper.rb b/app/helpers/ec_major_schools_helper.rb index 4f39913a..e7f4ccfc 100644 --- a/app/helpers/ec_major_schools_helper.rb +++ b/app/helpers/ec_major_schools_helper.rb @@ -1,22 +1,2 @@ module EcMajorSchoolsHelper - def total_graduation_count year - g_count = EcGraduationSubitem.where(:ec_graduation_requirement_id => year.ec_graduation_requirements).count - g_count == 0 ? "--" : g_count - # 36 - end - - def sigle_graduation_count - '--' - # 30 - end - - def total_graduation_course_count ec_year - ec_year.ec_courses.count == 0 ? '--' : ec_year.ec_courses.count - # 64 - end - - def sigle_graduation_course_count - '--' - # 60 - end end diff --git a/app/views/ec_years/create.js.erb b/app/views/ec_years/create.js.erb index 52e00e4a..11bfea12 100644 --- a/app/views/ec_years/create.js.erb +++ b/app/views/ec_years/create.js.erb @@ -2,5 +2,6 @@ notice_box("该界别已经存在,请勿重复创建") <% else %> //window.location.reload(); + console.log("##########<%= @years.count %>") $("#year_list").html('<%= j(render :partial => "ec_major_schools/year_list") %>') <% end %> \ No newline at end of file