更新后台评审的投稿操作
This commit is contained in:
parent
55df6a1352
commit
dd9a48ddd3
|
@ -805,9 +805,10 @@ class Admin_ReviewController extends Zend_Controller_Action
|
||||||
$this->view->keyword = $keyword;
|
$this->view->keyword = $keyword;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = "select m.id,md.title,md.uuid,u.username,u.realname,m.status,m.ts_created from mdstatus m
|
$sql = "select m.id,md.title,md.uuid,u.username,u.realname,m.status,m.ts_created,gn.id as gnid from mdstatus m
|
||||||
right join metadata md on md.uuid=m.uuid
|
right join metadata md on md.uuid=m.uuid
|
||||||
left join users u on u.id=m.userid
|
left join users u on u.id=m.userid
|
||||||
|
left join geonetworkmetadata gn on m.uuid=gn.uuid
|
||||||
where status=0 $searchjoin order by m.ts_created desc";
|
where status=0 $searchjoin order by m.ts_created desc";
|
||||||
|
|
||||||
$re = $this->db->query($sql);
|
$re = $this->db->query($sql);
|
||||||
|
|
|
@ -44,9 +44,10 @@ table thead tr th {background:#EBF2F6;color:#444;}
|
||||||
<?php foreach ($this->paginator as $item): ?>
|
<?php foreach ($this->paginator as $item): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><input type="checkbox" name="update[]" value="<?php echo $item['id']; ?>"/></td>
|
<td><input type="checkbox" name="update[]" value="<?php echo $item['id']; ?>"/></td>
|
||||||
<td><a href="/data/<?php echo $item['uuid'];?>"><?php echo $item['title']; ?></a></td>
|
<td><?php echo $item['title']; ?>【<a href="/service/geonetwork?url=metadata.show?id=<?php echo $item['gnid'];?>">GeoNetwork查看</a>】</td>
|
||||||
<td><?php echo date("Y-m-d H:i",strtotime($item['ts_created']));?></td>
|
<td><?php echo date("Y-m-d H:i",strtotime($item['ts_created']));?></td>
|
||||||
<td><a href="/admin/review/draft/update/<?php echo $item['id']; ?>">接收</a>
|
<td><a href="/admin/review/draft/update/<?php echo $item['id']; ?>">接收</a> |
|
||||||
|
<a href="/admin/review/accept/cancel/<?php echo $item['id']; ?>">取消评审</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
Loading…
Reference in New Issue