在提交评审意见时增加了是否收稿的判断
This commit is contained in:
parent
1f706e39b8
commit
5d6f94fb5f
|
@ -344,6 +344,11 @@ class ReviewController extends Zend_Controller_Action
|
||||||
$this->messenger->addMessage('该数据已经通过评审,不能再发表评审意见,如需提交问题,请联系数据管理员');
|
$this->messenger->addMessage('该数据已经通过评审,不能再发表评审意见,如需提交问题,请联系数据管理员');
|
||||||
$this->_redirect($redirectlink);
|
$this->_redirect($redirectlink);
|
||||||
}
|
}
|
||||||
|
if($md['status']==0)
|
||||||
|
{
|
||||||
|
$this->messenger->addMessage('已被数据中心接收的数据才可以进行评审');
|
||||||
|
$this->_redirect($redirectlink);
|
||||||
|
}
|
||||||
|
|
||||||
$auth = Zend_Auth::getInstance();
|
$auth = Zend_Auth::getInstance();
|
||||||
if($auth->hasIdentity())
|
if($auth->hasIdentity())
|
||||||
|
|
Loading…
Reference in New Issue