190 lines
9.1 KiB
PHP
190 lines
9.1 KiB
PHP
<?php
|
|
/**
|
|
* The bug view file of project 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 project
|
|
* @version $Id: bug.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/datatable.fix.html.php';?>
|
|
<style>
|
|
#subHeader #dropMenu .col-left .list-group {margin-bottom: 0px; padding-top: 10px;}
|
|
#subHeader #dropMenu .col-left {padding-bottom: 0px;}
|
|
#currentBranch + #dropMenu .col-left {padding-bottom: 30px;}
|
|
.c-deadline {text-align: center;}
|
|
#mainContent .main-col {padding-bottom: 20px;}
|
|
</style>
|
|
<div id="mainMenu" class="clearfix main-row fade in">
|
|
<div id="sidebarHeader">
|
|
<div class="title" title="<?php echo $moduleName;?>">
|
|
<?php
|
|
echo $moduleName;
|
|
if(!empty($moduleID))
|
|
{
|
|
$removeLink = $this->createLink('project', 'bug', "project={$project->id}&productID={$productID}&branch=$branchID&orderBy=$orderBy&build=$buildID&type=$type¶m=0&recTotal=$pager->recTotal&recPerPage=$pager->recPerPage");
|
|
echo html::a($removeLink, "<i class='icon icon-sm icon-close'></i>", '', "class='text-muted' data-app='{$this->app->tab}'");
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class="btn-toolbar pull-left">
|
|
<?php
|
|
$buildName = $build ? " <span class='label label-danger'>Build:{$build->name}</span>" : '';
|
|
$module = $type != 'bysearch' ? "¶m=$param" : '';
|
|
foreach($lang->project->featureBar['bug'] as $key => $label)
|
|
{
|
|
$activeClass = $key == $type ? 'btn-active-text' : '';
|
|
$label = "<span class='text'>{$label}</span>";
|
|
if($type == $key) $label .= " <span class='label label-light label-badge'>{$pager->recTotal}</span>$buildName";
|
|
echo html::a($this->inlink('bug', "projectID={$project->id}&productID={$productID}&branch=$branchID&orderBy=status,id_desc&build=$buildID&type={$key}$module"), $label, '', "id='{$key}Tab' class='btn btn-link {$activeClass}'");
|
|
}
|
|
?>
|
|
<a class="btn btn-link querybox-toggle" id="bysearchTab"><i class="icon icon-search muted"></i> <?php echo $lang->bug->search;?></a>
|
|
</div>
|
|
<div class="btn-toolbar pull-right">
|
|
<?php common::printLink('bug', 'export', "productID=$productID&orderBy=$orderBy&browseType=&projectID=$project->id", "<i class='icon icon-export muted'> </i> " . $lang->bug->export, '', "class='btn btn-link export'");?>
|
|
<?php if(common::canModify('project', $project)) common::printLink('bug', 'create', "productID=$productID&branch=$branchID&extras=projectID=$project->id", "<i class='icon icon-plus'></i> " . $lang->bug->create, '', "class='btn btn-primary'");?>
|
|
</div>
|
|
</div>
|
|
<div id="mainContent" class='main-row split-row fade'>
|
|
<div class="side-col" id='sidebar' data-min-width='235'>
|
|
<div class="sidebar-toggle"><i class="icon icon-angle-left"></i></div>
|
|
<div class='cell'>
|
|
<?php if(!$moduleTree):?>
|
|
<hr class="space">
|
|
<div class="text-center text-muted"><?php echo $lang->bug->noModule;?></div>
|
|
<hr class="space">
|
|
<?php else:?>
|
|
<?php echo $moduleTree;?>
|
|
<?php endif;?>
|
|
<div class="text-center"></div>
|
|
</div>
|
|
</div>
|
|
<div class='main-col' data-min-width='400'>
|
|
<div class="cell <?php if($type == 'bysearch') echo 'show';?>" id="queryBox" data-module='projectBug'></div>
|
|
<?php if(empty($bugs)):?>
|
|
<div class="table-empty-tip">
|
|
<p>
|
|
<span class="text-muted"><?php echo $lang->bug->noBug;?></span>
|
|
<?php if(common::canModify('project', $project) and common::hasPriv('bug', 'create')):?>
|
|
<?php echo html::a($this->createLink('bug', 'create', "productID=$productID&branch=$branchID&extra=projectID=$project->id"), "<i class='icon icon-plus'></i> " . $lang->bug->create, '', "class='btn btn-info' data-app='project'");?>
|
|
<?php endif;?>
|
|
</p>
|
|
</div>
|
|
<?php else:?>
|
|
<?php
|
|
$datatableId = $this->moduleName . ucfirst($this->methodName);
|
|
$useDatatable = (isset($config->datatable->$datatableId->mode) and $config->datatable->$datatableId->mode == 'datatable');
|
|
?>
|
|
<form class='main-table' method='post' id='projectBugForm' <?php if(!$useDatatable) echo "data-ride='table'";?>>
|
|
<div class="table-header fixed-right">
|
|
<nav class="btn-toolbar pull-right setting"></nav>
|
|
</div>
|
|
<?php
|
|
$vars = "projectID={$project->id}&productID=$productID&branch=$branchID&orderBy=%s&build=$buildID&type=$type¶m=$param&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}";
|
|
if($useDatatable) include '../../common/view/datatable.html.php';
|
|
else include '../../common/view/tablesorter.html.php';
|
|
|
|
$setting = $this->datatable->getSetting('project');
|
|
$widths = $this->datatable->setFixedFieldWidth($setting);
|
|
$columns = 0;
|
|
|
|
$canBatchAssignTo = common::hasPriv('bug', 'batchAssignTo');
|
|
?>
|
|
<?php if(!$useDatatable) echo '<div class="table-responsive">';?>
|
|
<table class='table has-sort-head<?php if($useDatatable) echo ' datatable';?>' id='bugList' data-fixed-left-width='<?php echo $widths['leftWidth']?>' data-fixed-right-width='<?php echo $widths['rightWidth']?>'>
|
|
<thead>
|
|
<tr>
|
|
<?php
|
|
foreach($setting as $key => $value)
|
|
{
|
|
if(!$project->hasProduct and $project->model != 'scrum' and $value->id == 'plan') continue;
|
|
if(!$project->hasProduct and $value->id == 'branch') continue;
|
|
|
|
if($value->show)
|
|
{
|
|
$this->datatable->printHead($value, $orderBy, $vars, $canBatchAssignTo);
|
|
$columns ++;
|
|
}
|
|
}
|
|
?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($bugs as $bug):?>
|
|
<?php
|
|
$canBeChanged = common::canBeChanged('bug', $bug);
|
|
$arrtibute = $canBeChanged ? '' : 'disabled';
|
|
?>
|
|
<tr data-id='<?php echo $bug->id?>'>
|
|
<?php foreach($setting as $value)
|
|
{
|
|
if(!$project->hasProduct and $project->model != 'scrum' and $value->id == 'plan') continue;
|
|
if(!$project->hasProduct and $value->id == 'branch') continue;
|
|
$this->bug->printCell($value, $bug, $users, $builds, $branchOption, $modulePairs, $executions, $plans, $stories, $tasks, $useDatatable ? 'datatable' : 'table', $projectPairs);
|
|
}
|
|
?>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php if(!$useDatatable) echo '</div>';?>
|
|
<div class='table-footer'>
|
|
<?php if($canBatchAssignTo):?>
|
|
<div class="checkbox-primary check-all"><label><?php echo $lang->selectAll?></label></div>
|
|
<div class="table-actions btn-toolbar">
|
|
<div class="btn-group dropup">
|
|
<button data-toggle="dropdown" type="button" class="btn"><?php echo $lang->bug->assignedTo?> <span class="caret"></span></button>
|
|
<?php
|
|
$withSearch = count($memberPairs) > 10;
|
|
$actionLink = $this->createLink('bug', 'batchAssignTo', "projectID={$project->id}&type=project");
|
|
echo html::select('assignedTo', $memberPairs, '', 'class="hidden"');
|
|
|
|
if($withSearch)
|
|
{
|
|
echo "<div class='dropdown-menu search-list search-box-sink' data-ride='searchList'>";
|
|
echo '<div class="input-control search-box has-icon-left has-icon-right search-example">';
|
|
echo '<input id="userSearchBox" type="search" class="form-control search-input" autocomplete="off" />';
|
|
echo '<label for="userSearchBox" class="input-control-icon-left search-icon"><i class="icon icon-search"></i></label>';
|
|
echo '<a class="input-control-icon-right search-clear-btn"><i class="icon icon-close icon-sm"></i></a>';
|
|
echo '</div>';
|
|
$membersPinYin = common::convert2Pinyin($memberPairs);
|
|
}
|
|
else
|
|
{
|
|
echo "<div class='dropdown-menu search-list'>";
|
|
}
|
|
echo '<div class="list-group">';
|
|
foreach($memberPairs as $key => $value)
|
|
{
|
|
if(empty($key)) continue;
|
|
$searchKey = $withSearch ? ('data-key="' . zget($membersPinYin, $value, '') . " @$key\"") : "data-key='@$key'";
|
|
echo html::a("javascript:$(\".table-actions #assignedTo\").val(\"$key\");setFormAction(\"$actionLink\")", $value, '', $searchKey);
|
|
}
|
|
echo "</div>";
|
|
echo "</div>";
|
|
?>
|
|
</div>
|
|
</div>
|
|
<?php endif;?>
|
|
<?php $pager->show('right', 'pagerjs');?>
|
|
</div>
|
|
</form>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
<?php js::set('replaceID', 'bugList');?>
|
|
<?php js::set('browseType', $type);?>
|
|
<?php js::set('param', $param);?>
|
|
<script>
|
|
<?php if(!empty($useDatatable)):?>
|
|
$(function(){$('#projectBugForm').table();})
|
|
<?php endif;?>
|
|
</script>
|
|
<?php include '../../common/view/footer.html.php';?>
|