在提交评审意见时增加了是否收稿的判断

This commit is contained in:
Li Jianxuan 2011-10-18 08:19:06 +00:00
parent 1f706e39b8
commit 5d6f94fb5f
1 changed files with 5 additions and 0 deletions

View File

@ -344,6 +344,11 @@ class ReviewController extends Zend_Controller_Action
$this->messenger->addMessage('该数据已经通过评审,不能再发表评审意见,如需提交问题,请联系数据管理员');
$this->_redirect($redirectlink);
}
if($md['status']==0)
{
$this->messenger->addMessage('已被数据中心接收的数据才可以进行评审');
$this->_redirect($redirectlink);
}
$auth = Zend_Auth::getInstance();
if($auth->hasIdentity())