Merge remote-tracking branch 'remotes/origin/szzh' into develop

This commit is contained in:
nwb 2014-07-22 10:52:21 +08:00
commit 3ba8ba010d
3 changed files with 24 additions and 2 deletions

View File

@ -75,7 +75,9 @@ class ZipdownController < ApplicationController
# 得到每一个人所有文件打包的zip文件
# 并将每一个人的zip打包为一个并返回路径
user_zip_paths = homeattaches.map do |homeattach|
zip_homework_by_user homeattach
if homeattach.attachments.count > 0
zip_homework_by_user homeattach
end
end
zipping "#{Time.now.to_i}_#{bid.name}.zip", user_zip_paths, OUTPUT_FOLDER

View File

@ -8,7 +8,7 @@
<table width="100%" valign="center">
<tr>
<td ><span style="margin-left:0px"><%= l(:label_task_plural)%>(<%= @homework_list.count%>)</span>
<%#= link_to "作业打包下载", zipdown_assort_path(obj_class: @bid.class, obj_id: @bid), remote: false, class: "button_submit button_submit_font_white", style: "margin: 5px 10px;line-height: 20px;height: 20px;display: inline-block;" if(is_teacher) %>
<%= link_to "作业打包下载", zipdown_assort_path(obj_class: @bid.class, obj_id: @bid), remote: false, class: "button_submit button_submit_font_white", style: "margin: 5px 10px;line-height: 20px;height: 20px;display: inline-block;" if(is_teacher && @bid.homeworks.count > 0) %>
</td>
<td align="right">
<div class="project-search">

View File

@ -0,0 +1,20 @@
class UpdateCourseAttachment < ActiveRecord::Migration
# 更新课程资源类型
def up
Attachment.all.each do |attachment|
if attachment.container_type == 'Course'
if attachment.attachtype == 1
attachment.attachtype = 4
elsif attachment.attachtype == 2
attachment.attachtype = 5
elsif attachment.attachtype == 3
attachment.attachtype = 6
end
attachment.save
end
end
end
def down
end
end