dev_haigong
parent
d8763cf284
commit
0eab38faae
@ -1,2 +1,22 @@
|
||||
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
|
||||
|
@ -1,7 +1,7 @@
|
||||
<% if @status.to_i == -1 %>
|
||||
notice_box("该界别已经存在,请勿重复创建")
|
||||
<% else %>
|
||||
//window.location.reload();
|
||||
window.location.reload();
|
||||
console.log("##########<%= @years.count %>")
|
||||
$("#year_list").html('<%= j(render :partial => "ec_major_schools/year_list") %>')
|
||||
//$("#year_list").html('<%#= j(render :partial => "ec_major_schools/year_list") %>')
|
||||
<% end %>
|
Loading…
Reference in new issue