141 lines
7.9 KiB
PHP
141 lines
7.9 KiB
PHP
<?php
|
|
/**
|
|
* The batch create view of story 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 Yangyang Shi <shiyangyang@cnezsoft.com>
|
|
* @package story
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id='titlebar'>
|
|
<div class='heading'>
|
|
<span class='prefix'><?php echo html::icon($lang->icons['bug']);?></span>
|
|
<strong>
|
|
<small class='text-muted'><?php echo html::icon($lang->icons['batchCreate']);?></small>
|
|
<?php if($this->session->currentProductType !== 'normal') echo '<span class="label label-info">' . $branches[$branch] . '</span>';?>
|
|
<?php echo $lang->bug->common . $lang->colon . $lang->bug->batchCreate;?>
|
|
</strong>
|
|
<div class='actions'>
|
|
<?php if(common::hasPriv('file', 'uploadImages')) echo html::a($this->createLink('file', 'uploadImages', 'module=bug¶ms=' . helper::safe64Encode("productID=$productID&projectID=$projectID&moduleID=$moduleID")), $lang->uploadImages, '', "data-toggle='modal' data-type='iframe' class='btn' data-width='600px'")?>
|
|
<?php echo html::commonButton($lang->pasteText, "data-toggle='myModal'")?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<form class='form-condensed' class='form-condensed' method='post' target='hiddenwin'>
|
|
<table class='table table-fixed table-form'>
|
|
<thead>
|
|
<tr>
|
|
<th class='w-50px'> <?php echo $lang->idAB;?></th>
|
|
<th class='w-120px'> <?php echo $lang->bug->module;?></th>
|
|
<th class='w-130px'> <?php echo $lang->bug->project;?></th>
|
|
<th class='w-150px'><?php echo $lang->bug->openedBuild;?> <span class='required'></span></th>
|
|
<th><?php echo $lang->bug->title;?> <span class='required'></span></th>
|
|
<th> <?php echo $lang->bug->steps;?></th>
|
|
<th class='w-100px'> <?php echo $lang->typeAB;?></th>
|
|
<th class='w-80px'> <?php echo $lang->bug->severity;?></th>
|
|
<th class='w-120px'> <?php echo $lang->bug->os;?></th>
|
|
<th class='w-100px'> <?php echo $lang->bug->browser;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
/* Remove the unused types. */
|
|
unset($lang->bug->typeList['designchange']);
|
|
unset($lang->bug->typeList['newfeature']);
|
|
unset($lang->bug->typeList['trackthings']);
|
|
|
|
$moduleOptionMenu += array('ditto' => $lang->bug->ditto);
|
|
$projects += array('ditto' => $lang->bug->ditto);
|
|
$lang->bug->typeList += array('ditto' => $lang->bug->ditto);
|
|
$lang->bug->osList += array('ditto' => $lang->bug->ditto);
|
|
$lang->bug->browserList += array('ditto' => $lang->bug->ditto);
|
|
?>
|
|
<?php $i = 0; ?>
|
|
<?php if(!empty($titles)):?>
|
|
<?php foreach($titles as $fileName => $bugTitle):?>
|
|
<?php
|
|
$moduleID = $i == 0 ? $moduleID : 'ditto';
|
|
$projectID = $i == 0 ? $projectID : 'ditto';
|
|
$type = $i == 0 ? '' : 'ditto';
|
|
$os = $i == 0 ? '' : 'ditto';
|
|
$browser = $i == 0 ? '' : 'ditto';
|
|
?>
|
|
<tr class='text-center'>
|
|
<td><?php echo $i+1;?></td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("modules[$i]", $moduleOptionMenu, $moduleID, "class='form-control chosen'");?></td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("projects[$i]", $projects, $projectID, "class='form-control chosen' onchange='loadProjectBuilds($productID, this.value, $i)'");?></td>
|
|
<td class='text-left' style='overflow:visible' id='buildBox<?php echo $i;?>'><?php echo html::select("openedBuilds[$i][]", $builds, 'trunk', "class='form-control chosen' multiple");?></td>
|
|
<td><?php echo html::input("title[$i]", $bugTitle, 'class=form-control');?></td>
|
|
<td>
|
|
<?php echo html::textarea("stepses[$i]", '', "rows='1' class='form-control autosize'");?>
|
|
</td>
|
|
<td><?php echo html::select("types[$i]", $lang->bug->typeList, $type, "class='form-control'");?></td>
|
|
<td><?php echo html::select("severities[$i]", $lang->bug->severityList, '', "class='form-control'");?></td>
|
|
<td><?php echo html::select("oses[$i]", $lang->bug->osList, $os, "class='form-control'");?></td>
|
|
<td>
|
|
<?php
|
|
echo html::select("browsers[$i]", $lang->bug->browserList, $browser, "class='form-control'");
|
|
echo html::hidden("uploadImage[$i]", $fileName);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php $i++;?>
|
|
<?php endforeach;?>
|
|
<?php endif;?>
|
|
<?php $nextStart = $i;?>
|
|
<?php for($i = $nextStart; $i < $config->bug->batchCreate; $i++):?>
|
|
<?php
|
|
$moduleID = $i - $nextStart == 0 ? $moduleID : 'ditto';
|
|
$projectID = $i - $nextStart == 0 ? $projectID : 'ditto';
|
|
$type = $i - $nextStart == 0 ? '' : 'ditto';
|
|
$os = $i - $nextStart == 0 ? '' : 'ditto';
|
|
$browser = $i - $nextStart == 0 ? '' : 'ditto';
|
|
?>
|
|
<tr class='text-center'>
|
|
<td><?php echo $i+1;?></td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("modules[$i]", $moduleOptionMenu, $moduleID, "class='form-control chosen'");?></td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("projects[$i]", $projects, $projectID, "class='form-control chosen' onchange='loadProjectBuilds($productID, this.value, $i)'");?></td>
|
|
<td class='text-left' style='overflow:visible' id='buildBox<?php echo $i;?>'><?php echo html::select("openedBuilds[$i][]", $builds, '', "class='form-control chosen' multiple");?></td>
|
|
<td><?php echo html::input("title[$i]", '', 'class=form-control');?></td>
|
|
<td>
|
|
<?php echo html::textarea("stepses[$i]", '', "rows='1' class='form-control autosize'");?>
|
|
</td>
|
|
<td><?php echo html::select("types[$i]", $lang->bug->typeList, $type, "class='form-control'");?></td>
|
|
<td><?php echo html::select("severities[$i]", $lang->bug->severityList, '', "class='form-control'");?></td>
|
|
<td><?php echo html::select("oses[$i]", $lang->bug->osList, $os, "class='form-control'");?></td>
|
|
<td><?php echo html::select("browsers[$i]", $lang->bug->browserList, $browser, "class='form-control'");?></td>
|
|
</tr>
|
|
<?php endfor;?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr><td colspan='8' class='text-center'><?php echo html::submitButton() . html::backButton();?></td></tr>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
<table class='hide' id='trTemp'>
|
|
<tbody>
|
|
<tr class='text-center'>
|
|
<td>%s</td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("modules[%s]", $moduleOptionMenu, $moduleID, "class='form-control'");?></td>
|
|
<td class='text-left' style='overflow:visible'><?php echo html::select("projects[%s]", $projects, $projectID, "class='form-control' onchange='loadProjectBuilds($productID, this.value, \"%s\")'");?></td>
|
|
<td class='text-left' style='overflow:visible' id='buildBox%s'><?php echo html::select("openedBuilds[%s][]", $builds, '', "class='form-control' multiple");?></td>
|
|
<td><?php echo html::input("titles[%s]", '', 'class=form-control');?></td>
|
|
<td>
|
|
<?php echo html::textarea("stepses[%s]", '', "rows='1' class='form-control autosize'");?>
|
|
</td>
|
|
<td><?php echo html::select("types[%s]", $lang->bug->typeList, '', "class='form-control'");?></td>
|
|
<td><?php echo html::select("severities[%s]", $lang->bug->severityList, '', "class='form-control'");?></td>
|
|
<td><?php echo html::select("oses[%s]", $lang->bug->osList, '', "class='form-control'");?></td>
|
|
<td><?php echo html::select("browsers[%s]", $lang->bug->browserList, '', "class='form-control'");?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<?php js::set('branch', $branch)?>
|
|
<?php include '../../common/view/pastetext.html.php';?>
|
|
<?php include '../../common/view/footer.html.php';?>
|