86 lines
4.5 KiB
PHP
86 lines
4.5 KiB
PHP
<?php
|
|
/**
|
|
* The browse view file of testtask module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package testtask
|
|
* @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/datepicker.html.php';?>
|
|
<?php include '../../testcase/view/caseheader.html.php';?>
|
|
<?php js::set('confirmDelete', $lang->testtask->confirmDelete)?>
|
|
<?php js::set('flow', $config->global->flow);?>
|
|
<style>
|
|
#action-divider{display: inline-block; line-height: 0px; border-right: 2px solid #ddd}
|
|
</style>
|
|
<div id='mainContent' class='main-row'>
|
|
<div class="main-col main-table">
|
|
<?php if(empty($tasks)):?>
|
|
<div class="table-empty-tip">
|
|
<p>
|
|
<span class="text-muted"><?php echo $lang->testtask->noTesttask;?></span>
|
|
</p>
|
|
</div>
|
|
<?php else:?>
|
|
<table class='table' data-ride='table' id='taskList'>
|
|
<thead>
|
|
<?php $vars = "productID=$productID&browseType=$browseType&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}"; ?>
|
|
<tr>
|
|
<th class='c-id text-left'> <?php common::printOrderLink('id', $orderBy, $vars, $lang->idAB);?></th>
|
|
<th class='w-300px text-left'><?php common::printOrderLink('name', $orderBy, $vars, $lang->testtask->name);?></th>
|
|
<th class='text-left'> <?php common::printOrderLink('execution', $orderBy, $vars, $lang->testtask->execution);?></th>
|
|
<th class='text-left'> <?php common::printOrderLink('build', $orderBy, $vars, $lang->testtask->build);?></th>
|
|
<th class='c-user text-left'> <?php common::printOrderLink('owner', $orderBy, $vars, $lang->testtask->owner);?></th>
|
|
<th class='w-90px text-left'> <?php common::printOrderLink('begin', $orderBy, $vars, $lang->testtask->execTime);?></th>
|
|
<th class='w-60px text-center'><?php echo $lang->testtask->caseCount;?></th>
|
|
<th class='w-60px text-center'><?php echo $lang->testtask->passCount;?></th>
|
|
<th class='w-60px text-center'><?php echo $lang->testtask->failCount;?></th>
|
|
<th class='c-actions-3 text-center'><?php echo $lang->actions;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($tasks as $task):?>
|
|
<tr class='text-left'>
|
|
<td><?php printf('%03d', $task->id);?></td>
|
|
<td class='c-name' title="<?php echo $task->name?>"><?php echo html::a(inlink('unitCases', "taskID=$task->id"), $task->name, '', "data-app={$this->app->tab}");?></td>
|
|
<td class='c-name' title="<?php echo $task->executionName?>"><?php echo $task->executionName?></td>
|
|
<td class='c-name' title="<?php echo $task->buildName;?>"><?php echo ($task->build == 'trunk' || empty($task->buildName)) ? $lang->trunk : html::a($this->createLink('build', 'view', "buildID=$task->build"), $task->buildName, '', 'data-app="execution"');?></td>
|
|
<td><?php echo zget($users, $task->owner);?></td>
|
|
<td><?php echo $task->begin?></td>
|
|
<td class='text-center'><?php echo $task->caseCount?></td>
|
|
<td class='text-center pass'><?php echo $task->passCount?></td>
|
|
<td class='text-center fail'><?php echo $task->failCount?></td>
|
|
<td class='c-actions'>
|
|
<?php
|
|
common::printIcon('testtask', 'unitCases', "taskID=$task->id", '', 'list', 'list-alt');
|
|
common::printIcon('testtask', 'edit', "taskID=$task->id", $task, 'list');
|
|
if(common::hasPriv('testtask', 'delete', $task))
|
|
{
|
|
$deleteURL = $this->createLink('testtask', 'delete', "taskID=$task->id&confirm=yes");
|
|
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"taskList\",confirmDelete)", '<i class="icon-common-delete icon-trash"></i>', '', "title='{$lang->testcase->delete}' class='btn'");
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php if($browseType != 'newest'):?>
|
|
<div class='table-footer'><?php $pager->show('right', 'pagerjs');?></div>
|
|
<?php endif;?>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(function()
|
|
{
|
|
$('#<?php echo $browseType?>UnitTab').addClass('btn-active-text');
|
|
})
|
|
</script>
|
|
<?php include '../../common/view/footer.html.php';?>
|