Files
EasySoft-ZenTaoPMS/module/testreport/view/create.html.php
2020-07-26 14:44:40 +08:00

165 lines
7.2 KiB
PHP

<?php
/**
* The create view file of testreport module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package testreport
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/datepicker.html.php';?>
<?php include '../../common/view/kindeditor.html.php';?>
<?php include '../../common/view/chart.html.php';?>
<?php js::set('objectType', $objectType);?>
<div id='mainContent' class='main-content'>
<div class='center-block'>
<div class='main-header'>
<h2 class='clearfix'>
<div class='heading'><?php echo $lang->testreport->create;?></div>
<?php if(!empty($taskPairs)):?>
<div class='input-group'>
<span class='input-group-addon'><?php echo $lang->testtask->common;?></span>
<?php echo html::select('selectTask', $taskPairs, $objectID, "class='form-control chosen'");?>
</div>
<?php endif;?>
</h2>
</div>
<form method='post' enctype='multipart/form-data' target='hiddenwin'>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendBasic?></div>
<div class="detail-content">
<table class='table table-form'>
<tr>
<th class='w-100px'><?php echo $lang->testreport->startEnd?></th>
<td class='w-p50'>
<div class='input-group'>
<?php echo html::input('begin', $begin, "class='form-control form-date' onchange=changeDate()")?>
<span class='input-group-addon'> ~ </span>
<?php echo html::input('end', $end, "class='form-control form-date' onchange=changeDate()")?>
<?php echo "<div class='input-group-btn' id='refresh' style='display: none'>"?>
<a onclick=refreshPage() class='btn btn-icon' data-toggle='modal' data-type='iframe'><?php echo $lang->refresh?></a>
<?php echo "</div>";
echo html::hidden('product', $productIdList) . ($config->global->flow != 'onlyTest' ? html::hidden('project', isset($project->id) ? $project->id : 0) : '') . html::hidden('tasks', $tasks);
echo html::hidden('objectID', $objectID) . html::hidden('objectType', $objectType);
?>
</div>
</td>
<td>
<div class='input-group'>
<span class='input-group-addon'><?php echo $lang->testreport->owner?></span>
<?php echo html::select('owner', $users, $owner, "class='form-control chosen'")?>
</div>
</td>
<td class='w-50px'></td>
</tr>
<tr>
<th><?php echo $lang->testreport->members?></th>
<td colspan='2'><?php echo html::select('members[]', $users, $members, "class='form-control chosen' multiple")?></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->testreport->title?></th>
<td colspan='2'><?php echo html::input('title', $reportTitle, "class='form-control'")?></td>
<td></td>
</tr>
<?php if($config->global->flow != 'onlyTest'):?>
<tr>
<th><?php echo $lang->testreport->goal?></th>
<td colspan='2'><?php echo isset($project->desc) ? $project->desc : '';?></td>
<td></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->testreport->profile?></th>
<td colspan='2'>
<?php
echo '<div>' . $storySummary . '</div>';
echo '<div>' . sprintf($lang->testreport->buildSummary, empty($builds) ? 1 : count($builds)) . $caseSummary . '</div>';
echo '<div>' . sprintf($lang->testreport->bugSummary, $bugInfo['foundBugs'], count($legacyBugs), $bugInfo['countBugByTask'], $bugInfo['bugConfirmedRate'] . '%', $bugInfo['bugCreateByCaseRate'] . '%') . '</div>';
unset($bugInfo['countBugByTask']); unset($bugInfo['bugConfirmedRate']); unset($bugInfo['bugCreateByCaseRate']); unset($bugInfo['foundBugs']);
?>
</td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->testreport->report?></th>
<td colspan='2'><?php echo html::textarea('report', '', "class='form-control'")?></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->files?></th>
<td colspan='2'><?php echo $this->fetch('file', 'buildform');?></td>
<td></td>
</tr>
<tr>
<td class='text-center form-actions' colspan='4'>
<?php echo html::submitButton();?>
<?php echo html::backButton();?>
</td>
</tr>
</table>
</div>
</div>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendStoryAndBug?></div>
<div class="detail-content">
<?php include './blockstories.html.php'?>
<?php include './blockbugs.html.php'?>
</div>
</div>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendBuild?></div>
<div class="detail-content">
<?php include './blockbuilds.html.php'?>
</div>
</div>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendCase?></div>
<div class="detail-content">
<?php include './blockcases.html.php'?>
</div>
</div>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendLegacyBugs?></div>
<div class="detail-content">
<?php include './blocklegacybugs.html.php'?>
</div>
</div>
<div class='detail'>
<div class='detail-title'><?php echo $lang->testreport->legendReport?></div>
<div class="detail-content">
<?php include './blockbugreport.html.php'?>
</div>
</div>
</form>
</div>
</div>
<script>
function refreshPage()
{
var begin = $("#begin").val();
var end = $("#end").val();
var objectID = $("#objectID").val();
var objectType = $("#objectType").val();
var extra = <?php echo $extra;?>;
if(begin.indexOf('-') != -1)
{
var beginarray = begin.split("-");
var begin = '';
for(i = 0; i < beginarray.length; i++) begin = begin + beginarray[i];
}
if(end.indexOf('-') != -1)
{
var endarray = end.split("-");
var end = '';
for(i = 0 ; i < endarray.length ; i++) end = end + endarray[i];
}
location.href = createLink('testreport', 'create', "project=" + objectID + "&objectType=" + objectType + "&extra=" + extra + "&begin=" + begin + "&end=" + end);
}
</script>
<?php include '../../common/view/footer.html.php';?>