74 lines
3.6 KiB
PHP
74 lines
3.6 KiB
PHP
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<?php js::set('browseType', $browseType);?>
|
|
<?php js::set('mode', $mode);?>
|
|
<?php js::set('total', $pager->recTotal);?>
|
|
<?php js::set('rawMethod', $app->rawMethod);?>
|
|
<style>
|
|
.c-severity {width: 100px}
|
|
.c-date {width: 110px;}
|
|
[lang^=zh] .c-date {width: 100px;}
|
|
</style>
|
|
<div id="mainMenu" class="clearfix">
|
|
<div class="btn-toolbar pull-left">
|
|
<?php
|
|
foreach($lang->my->featureBar[$app->rawMethod]['nc'] as $key => $name)
|
|
{
|
|
$label = "<span class='text'>{$name}</span>";
|
|
$label .= $key == $browseType ? " <span class='label label-light label-badge'>{$pager->recTotal}</span>" : '';
|
|
$active = $key == $browseType ? 'btn-active-text' : '';
|
|
$keyParam = $key == 'auditplan' ? 'mychecking' : $key;
|
|
$modeParam = $key == 'auditplan' ? 'auditplan' : 'nc';
|
|
echo html::a(inlink($app->rawMethod, "mode=$modeParam&type=$keyParam"), $label, '', "class='btn btn-link $active'");
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div id="mainContent" class='main-table'>
|
|
<?php if(empty($ncs)):?>
|
|
<div class="table-empty-tip">
|
|
<p>
|
|
<span class="text-muted"><?php echo $lang->noData;?></span>
|
|
</p>
|
|
</div>
|
|
<?php else:?>
|
|
<form id='myTaskForm' class="main-table table-risk" data-ride="table" method="post">
|
|
<?php $vars = "mode=$mode&browseType=$browseType¶m=$param&orderBy=%s&recTotal=$pager->recTotal&recPerPage=$pager->recPerPage&pageID=$pager->pageID"; ?>
|
|
<table class="table has-sort-head table-fixed" id='projectList'>
|
|
<thead>
|
|
<tr>
|
|
<th class='c-id'><?php common::printOrderLink('id', $orderBy, $vars, $lang->idAB);?></th>
|
|
<th class='c-name text-left'><?php common::printOrderLink('title', $orderBy, $vars, $lang->my->ncName);?></th>
|
|
<th class='text-left c-project'><?php common::printOrderLink('project', $orderBy, $vars, $lang->my->projects);?></th>
|
|
<th class='c-severity'><?php common::printOrderLink('severity', $orderBy, $vars, $lang->my->ncSeverity);?></th>
|
|
<th class='c-status'><?php common::printOrderLink('status', $orderBy, $vars, $lang->my->ncStatus);?></th>
|
|
<th class='c-user'><?php common::printOrderLink('createdBy', $orderBy, $vars, $lang->my->ncCreatedBy);?></th>
|
|
<th class='c-date'><?php common::printOrderLink('createdDate', $orderBy, $vars, $lang->my->ncCreatedDate);?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($ncs as $nc):?>
|
|
<?php $from = (isset($nc->model) and $nc->model == 'scrum') ? 'execution' : 'project';?>
|
|
<?php $ncLink = $this->createLink('nc', 'view', "ncID=$nc->id&from=$from", '', '', $nc->project);?>
|
|
<tr>
|
|
<td><?php echo $nc->id;?></td>
|
|
<td class='text-left' title="<?php echo $nc->title;?>"><?php echo html::a($ncLink, $nc->title);?></td>
|
|
<td class='text-left' title="<?php echo zget($projects, $nc->project);?>"><?php echo zget($projects, $nc->project);?></td>
|
|
<td class='c-severity'><span class='severity-<?php echo $nc->severity;?>'><?php echo zget($lang->nc->severityList, $nc->severity);?></span></td>
|
|
<td><?php echo zget($lang->nc->statusList, $nc->status);?></td>
|
|
<td><?php echo zget($users, $nc->createdBy);?></td>
|
|
<td><?php echo substr($nc->createdDate, 0, 10);?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<div class='table-footer'>
|
|
<?php $pager->show('right', 'pagerjs');?>
|
|
</div>
|
|
</form>
|
|
<?php endif;?>
|
|
</div>
|
|
<script>
|
|
$('.' + browseType).addClass('btn-active-text');
|
|
</script>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|