修改添加应用不能刷新的问题

This commit is contained in:
wanglinchun 2014-04-16 21:44:52 +08:00
parent 7adb1f8a60
commit a52e057d94
2 changed files with 6 additions and 3 deletions

View File

@ -300,13 +300,13 @@ class ContestsController < ApplicationController
contest_message = params[:contest_for_save][:contest_message]
if ContestingSoftapplication.where("softapplication_id = ? and contest_id = ?", softapplication.id, @contest.id).size == 0
if ContestingSoftapplication.create_softapplication_contesting(@contest.id, softapplication.id, contest_message)
flash.now[:notice] = l(:label_bidding_contest_succeed)
flash.now[:notice] = l(:label_release_add_contest_succeed)
end
else
flash.now[:error] = l(:label_bidding_fail)
flash.now[:error] = l(:label_add_contest_succeed_fail)
end
@contesting_softapplication = @contest.contesting_softapplications
@contesting_softapplication = paginateHelper @contest.contesting_softapplications
respond_to do |format|

View File

@ -1847,5 +1847,8 @@ zh:
label_tags_contest: 竞赛标签
label_tags_contest: 竞赛名称
label_tags_contest_description: 竞赛描述
label_release_add_contest_succeed: 该应用发布并添加成功.
label_add_contest_succeed_fail: 添加失败,该应用已参赛.