Ticket #202 增加了查看接收及查看我参审的元数据的功能
This commit is contained in:
parent
34a9f7bec6
commit
3d47587d58
|
@ -1,48 +1,148 @@
|
||||||
<?php
|
<?php
|
||||||
class ReviewController extends Zend_Controller_Action
|
class ReviewController extends Zend_Controller_Action
|
||||||
{
|
{
|
||||||
function preDispatch()
|
function preDispatch()
|
||||||
{
|
{
|
||||||
$this->view->config = Zend_Registry::get('config');
|
$this->view->config = Zend_Registry::get('config');
|
||||||
$this->db=Zend_Registry::get('db');
|
$this->db=Zend_Registry::get('db');
|
||||||
}
|
$this->messenger=$this->_helper->getHelper('FlashMessenger');
|
||||||
function indexAction()
|
$this->view->messages = $this->messenger->getMessages();
|
||||||
{
|
}
|
||||||
//最新10个收稿
|
function indexAction()
|
||||||
$sql="select m.uuid,m.title,s.ts_created from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=0 order by s.ts_created desc limit 10";
|
{
|
||||||
$this->view->mdreceived = $this->db->fetchAll($sql);
|
//最新10个收稿
|
||||||
//最新10个接收
|
$sql="select m.uuid,m.title,s.ts_created from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=0 order by s.ts_created desc limit 10";
|
||||||
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=1 order by s.ts_created desc limit 10";
|
$this->view->mdreceived = $this->db->fetchAll($sql);
|
||||||
$this->view->mdaccepted = $this->db->fetchAll($sql);
|
//最新10个接收
|
||||||
//最新10个送审
|
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=1 order by s.ts_created desc limit 10";
|
||||||
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status in (2,3,4) order by s.ts_created desc limit 10";
|
$this->view->mdaccepted = $this->db->fetchAll($sql);
|
||||||
$this->view->mdinreview = $this->db->fetchAll($sql);
|
//最新10个送审
|
||||||
//最新10个已审
|
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status in (2,3,4) order by s.ts_created desc limit 10";
|
||||||
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=5 order by s.ts_created desc limit 10";
|
$this->view->mdinreview = $this->db->fetchAll($sql);
|
||||||
$this->view->mdreviewed = $this->db->fetchAll($sql);
|
//最新10个已审
|
||||||
//统计数字
|
$sql="select m.uuid,m.title,s.ts_accepted from mdstatus s left join metadata m on m.uuid=s.uuid where s.status=5 order by s.ts_created desc limit 10";
|
||||||
$sql="select (select count(*) from mdexperts) as experts,(select count(*) from mdstatus where status=0) as draft,(select count(*) from mdstatus where status=1) as accept,(select count(*) from mdstatus where status in (2,3,4)) as inreview,(select count(*) from mdstatus where status=5) as reviewed,(select count(*) from mdreview) as openreview,(select count(distinct(userid)) from mdreview) as openreviewuser";
|
$this->view->mdreviewed = $this->db->fetchAll($sql);
|
||||||
$this->view->stat=$this->db->fetchRow($sql);
|
//统计数字
|
||||||
}
|
$sql="select (select count(*) from mdexperts) as experts,(select count(*) from mdstatus where status=0) as draft,(select count(*) from mdstatus where status=1) as accept,(select count(*) from mdstatus where status in (2,3,4)) as inreview,(select count(*) from mdstatus where status=5) as reviewed,(select count(*) from mdreview) as openreview,(select count(distinct(userid)) from mdreview) as openreviewuser";
|
||||||
/*
|
$this->view->stat=$this->db->fetchRow($sql);
|
||||||
* 数据浏览
|
}
|
||||||
*/
|
/*
|
||||||
function browseAction()
|
* 数据浏览
|
||||||
{
|
*/
|
||||||
$md=new MetadataTable();
|
function browseAction()
|
||||||
$db=$md->getAdapter();
|
{
|
||||||
$page=(int)$this->_request->getParam('page');
|
$md=new MetadataTable();
|
||||||
if (empty($page)) $page=1;
|
$db=$md->getAdapter();
|
||||||
$limit=10;
|
$page=(int)$this->_request->getParam('page');
|
||||||
$offset=$limit*($page-1);
|
if (empty($page)) $page=1;
|
||||||
$state=$db->query('select count(*) from metadata');
|
$limit=10;
|
||||||
$row=$state->fetchAll();
|
$offset=$limit*($page-1);
|
||||||
$sum=$row[0]['count'];
|
$state=$db->query('select count(*) from metadata');
|
||||||
$select=$db->select();
|
$row=$state->fetchAll();
|
||||||
$select->from('metadata','*')->order('id desc')->limitPage($page,$limit);
|
$sum=$row[0]['count'];
|
||||||
$this->view->metadata = $db->fetchAll($select);
|
$select=$db->select();
|
||||||
$this->view->page=new Pagination($sum,$page,$limit);
|
$select->from('metadata','*')->order('id desc')->limitPage($page,$limit);
|
||||||
}
|
$this->view->metadata = $db->fetchAll($select);
|
||||||
|
$this->view->page=new Pagination($sum,$page,$limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function myreviewAction(){
|
||||||
|
|
||||||
|
$keyword = $this->_request->getParam('q');
|
||||||
|
$search = $this->_request->getParam('search');
|
||||||
|
|
||||||
|
try{
|
||||||
|
$auth = Zend_Auth::getInstance();
|
||||||
|
if($auth->hasIdentity())
|
||||||
|
{
|
||||||
|
$user = $auth->getIdentity();
|
||||||
|
$uid = $user->id;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->_redirect('/account/login/?href=/review/myreview');
|
||||||
|
}
|
||||||
|
|
||||||
|
$wheresql = array();
|
||||||
|
$wheresql[]=" mdexp.id=7381 ";
|
||||||
|
|
||||||
|
if(!empty($keyword) && !empty($search))
|
||||||
|
{
|
||||||
|
if (preg_match("/[<|>|#|$|%|^|*|(|)|{|}|'|\"|;|:]/i",$keyword) || !is_numeric($search))
|
||||||
|
{
|
||||||
|
$this->messenger->addMessage('您的输入的搜索条件包含非法请求,请不要输入特殊符号');
|
||||||
|
$this->_redirect('/review/myreview');
|
||||||
|
}//非法请求过滤
|
||||||
|
$this->view->keyword = $keyword;
|
||||||
|
$wheresql[] = " md.title like '%$keyword%' ";
|
||||||
|
// e.g. (... or md.author like '%keyword%')
|
||||||
|
}
|
||||||
|
|
||||||
|
$wheresql = join(' and ',$wheresql);
|
||||||
|
|
||||||
|
$sql = "select mdexp.id,mdexp.uuid,md.title from mdexpertreview mdexp
|
||||||
|
left join metadata md on md.uuid=mdexp.uuid
|
||||||
|
where $wheresql";
|
||||||
|
|
||||||
|
$rs = $this->db->query($sql);
|
||||||
|
$rows = $rs->fetchAll();
|
||||||
|
|
||||||
|
$paginator = Zend_Paginator::factory($rows);
|
||||||
|
$paginator->setCurrentPageNumber($this->_getParam('page'));
|
||||||
|
$paginator->setItemCountPerPage($this->view->config->page->max);
|
||||||
|
$paginator->setView($this->view);
|
||||||
|
Zend_View_Helper_PaginationControl::setDefaultViewPartial('pagination_param.phtml');
|
||||||
|
$this->view->paginator=$paginator;
|
||||||
|
}catch(Exception $e){
|
||||||
|
$this->messenger->addMessage('查询失败,请稍后重试 :(');
|
||||||
|
$this->_redirect('/review/myreview');
|
||||||
|
}
|
||||||
|
|
||||||
|
}//我参审的
|
||||||
|
|
||||||
|
function draftAction(){
|
||||||
|
|
||||||
|
$keyword = $this->_request->getParam('q');
|
||||||
|
$search = $this->_request->getParam('search');
|
||||||
|
|
||||||
|
try{
|
||||||
|
|
||||||
|
$wheresql = array();
|
||||||
|
$wheresql[]=" ms.status=1 ";
|
||||||
|
|
||||||
|
if(!empty($keyword) && !empty($search))
|
||||||
|
{
|
||||||
|
if (preg_match("/[<|>|#|$|%|^|*|(|)|{|}|'|\"|;|:]/i",$keyword) || !is_numeric($search))
|
||||||
|
{
|
||||||
|
$this->messenger->addMessage('您的输入的搜索条件包含非法请求,请不要输入特殊符号');
|
||||||
|
$this->_redirect('/review/myreview');
|
||||||
|
}//非法请求过滤
|
||||||
|
$this->view->keyword = $keyword;
|
||||||
|
$wheresql[] = " md.title like '%$keyword%' ";
|
||||||
|
}
|
||||||
|
|
||||||
|
$wheresql = join(' and ',$wheresql);
|
||||||
|
|
||||||
|
$sql = "select ms.uuid,ms.status,ms.ts_created,md.title,md.author from mdstatus ms
|
||||||
|
left join metadata md on md.uuid=ms.uuid
|
||||||
|
where $wheresql";
|
||||||
|
|
||||||
|
$rs = $this->db->query($sql);
|
||||||
|
$rows = $rs->fetchAll();
|
||||||
|
|
||||||
|
$paginator = Zend_Paginator::factory($rows);
|
||||||
|
$paginator->setCurrentPageNumber($this->_getParam('page'));
|
||||||
|
$paginator->setItemCountPerPage($this->view->config->page->max);
|
||||||
|
$paginator->setView($this->view);
|
||||||
|
Zend_View_Helper_PaginationControl::setDefaultViewPartial('pagination_param.phtml');
|
||||||
|
$this->view->paginator=$paginator;
|
||||||
|
|
||||||
|
}catch(Exception $e){
|
||||||
|
$this->messenger->addMessage('查询失败,请稍后重试 :(');
|
||||||
|
$this->_redirect('/review/draft');
|
||||||
|
}
|
||||||
|
|
||||||
|
}//最新收稿
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?php
|
||||||
|
$config = Zend_Registry::get('config');
|
||||||
|
$this->headTitle($config->title->site);
|
||||||
|
$this->headTitle($config->title->mdreview);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/review">元数据评审</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='rightPanel'>
|
||||||
|
|
||||||
|
<?php if ($this->msg or $this->messages) :?>
|
||||||
|
<div class="box box-info">
|
||||||
|
<?php if ($this->msg) : ?>
|
||||||
|
<?php echo $this->msg; ?>
|
||||||
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
||||||
|
<?php echo $msg; ?>
|
||||||
|
<?php endforeach;endif; ?>
|
||||||
|
<script language="javascript">
|
||||||
|
setTimeout("document.getElementsByClassName('box-info').remove(0)",5000);
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<h3>最新收稿的元数据:</h3>
|
||||||
|
|
||||||
|
<form action="/review/myreview" method="POST">
|
||||||
|
<input class="" type="text" id="q" name="q" value="<?php echo $this->keyword;?>" />
|
||||||
|
<input type="hidden" name="search" value="1" />
|
||||||
|
<input type="submit" value="搜索" /></form>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>元数据标题</th>
|
||||||
|
<th>收稿时间</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<?php
|
||||||
|
if (count($this->paginator)):
|
||||||
|
$autoindex=0;
|
||||||
|
foreach ($this->paginator as $item):
|
||||||
|
$autoindex++;?>
|
||||||
|
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
||||||
|
<td> <img src="/images/westdc_20w.gif" /> <a href="<?php echo $item['uuid'];?>"><?php echo $item['title'];?></a></td>
|
||||||
|
<td>
|
||||||
|
<?php echo date("Y-m-d H:i",strtotime($item['ts_created']));?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; endif; ?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
|
|
||||||
|
</div>
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?php
|
||||||
|
$config = Zend_Registry::get('config');
|
||||||
|
$this->headTitle($config->title->site);
|
||||||
|
$this->headTitle($config->title->mdreview);
|
||||||
|
$this->headTitle()->setSeparator(' - ');
|
||||||
|
$this->headLink()->appendStylesheet('/css/mdreview.css');
|
||||||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
|
$this->breadcrumb('<a href="/review">元数据评审</a>');
|
||||||
|
$this->breadcrumb()->setSeparator(' > ');
|
||||||
|
?>
|
||||||
|
<div id='rightPanel'>
|
||||||
|
|
||||||
|
<?php if ($this->msg or $this->messages) :?>
|
||||||
|
<div class="box box-info">
|
||||||
|
<?php if ($this->msg) : ?>
|
||||||
|
<?php echo $this->msg; ?>
|
||||||
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
||||||
|
<?php echo $msg; ?>
|
||||||
|
<?php endforeach;endif; ?>
|
||||||
|
<script language="javascript">
|
||||||
|
setTimeout("document.getElementsByClassName('box-info').remove(0)",5000);
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<h3>我参审的元数据:</h3>
|
||||||
|
|
||||||
|
<form action="/review/myreview" method="POST">
|
||||||
|
<input class="" type="text" id="q" name="q" value="<?php echo $this->keyword;?>" />
|
||||||
|
<input type="hidden" name="search" value="1" />
|
||||||
|
<input type="submit" value="搜索" /></form>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>元数据标题</th>
|
||||||
|
<th>操作</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<?php
|
||||||
|
if (count($this->paginator)):
|
||||||
|
$autoindex=0;
|
||||||
|
foreach ($this->paginator as $item):
|
||||||
|
$autoindex++;?>
|
||||||
|
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
||||||
|
<td> <img src="/images/westdc_20w.gif" /> <a href="<?php echo $item['uuid'];?>"><?php echo $item['title'];?></a></td>
|
||||||
|
<td>
|
||||||
|
提交评审意见
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; endif; ?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
|
|
||||||
|
</div>
|
Loading…
Reference in New Issue