| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php if(empty($groupCases)):?>
- <div class="table-empty-tip">
- <p>
- <span class="text-muted"><?php echo $lang->testcase->noCase;?></span>
- </p>
- </div>
- <?php else:?>
- <table class="table table-grouped text-center">
- <thead>
- <tr class="divider">
- <th class="c-side text-left has-btn group-menu">
- <div class="table-group-btns">
- <button type="button" class="btn btn-block btn-link group-collapse-all"><?php echo $lang->execution->treeLevel['root'];?> <i class="icon-caret-down"></i></button>
- <button type="button" class="btn btn-block btn-link group-expand-all"><?php echo $lang->execution->treeLevel['all'];?> <i class="icon-caret-up"></i></button>
- </div>
- </th>
- <th class='c-id-sm'><?php echo $lang->idAB;?></th>
- <th class='w-pri' title='<?php echo $lang->pri;?>'> <?php echo $lang->priAB;?></th>
- <th><?php echo $lang->testcase->title;?></th>
- <th class='w-80px'> <?php echo $lang->testtask->lastRunAccount;?></th>
- <th class='w-120px'><?php echo $lang->testtask->lastRunTime;?></th>
- <th class='w-80px'> <?php echo $lang->testtask->lastRunResult;?></th>
- <th class='w-30px' title='<?php echo $lang->testcase->bugs?>'><?php echo $lang->testcase->bugsAB;?></th>
- <th class='w-30px' title='<?php echo $lang->testcase->results?>'><?php echo $lang->testcase->resultsAB;?></th>
- <th class='w-30px' title='<?php echo $lang->testcase->stepNumber?>'><?php echo $lang->testcase->stepNumberAB;?></th>
- <th class='c-actions-1'> <?php echo $lang->actions;?></th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($groupCases as $suiteID => $cases):?>
- <?php
- $i = 0;
- $suite = zget($suites, $suiteID, '');
- $groupName = $suite ? $suite->name : '';
- ?>
- <?php foreach($cases as $caseID => $case):?>
- <tr data-id='<?php echo $suiteID;?>' <?php if($i == 0) echo "class='divider-top'";?>>
- <?php if($i == 0):?>
- <td rowspan='<?php echo count($cases);?>' class='c-side text-left group-toggle text-top'>
- <div class='group-header'><?php echo html::a('###', "<i class='icon-caret-down'></i> $groupName", '', "class='text-primary'");?></div>
- <?php echo $summary[$suiteID];?>
- </td>
- <?php endif;?>
- <td class='c-id-sm'><?php echo sprintf('%03d', $caseID);?></td>
- <td><span class='label-pri <?php echo 'label-pri-' . $case->pri;?>' title='<?php echo zget($lang->testcase->priList, $case->pri, $case->pri);?>'><?php echo zget($lang->testcase->priList, $case->pri, $case->pri);?></span></td>
- <td class='text-left title' title='<?php echo $case->title . "\n" . htmlSpecialString($case->xml)?>'><?php if(!common::printLink('testcase', 'view', "case=$case->case&version={$case->version}&from=testtask&task=$taskID", $case->title)) echo $case->title;?></td>
- <td><?php echo zget($users, $case->lastRunner);?></td>
- <td><?php if(!helper::isZeroDate($case->lastRunDate)) echo date(DT_MONTHTIME1, strtotime($case->lastRunDate));?></td>
- <td class='<?php echo $case->lastRunResult;?>'><?php if($case->lastRunResult) echo $lang->testcase->resultList[$case->lastRunResult];?></td>
- <td><?php echo (common::hasPriv('testcase', 'bugs') and $case->bugs) ? html::a($this->createLink('testcase', 'bugs', "runID={$case->id}&caseID={$case->case}"), $case->bugs, '', "class='iframe'") : $case->bugs;?></td>
- <td><?php echo (common::hasPriv('testtask', 'results') and $case->results) ? html::a($this->createLink('testtask', 'results', "runID={$case->id}&caseID={$case->case}"), $case->results, '', "class='iframe'") : $case->results;?></td>
- <td><?php echo $case->stepNumber;?></td>
- <td class='c-actions'>
- <?php common::printIcon('testtask', 'results', "runID=$case->id&caseID=$case->case", $case, 'list', '', '', 'iframe', true, "data-width='95%'");?>
- </td>
- </tr>
- <?php $i++;?>
- <?php endforeach;?>
- <tr data-id='<?php echo $suiteID;?>' class='group-toggle group-summary hidden divider-top'>
- <td class='c-side text-left'><?php echo html::a('###', "<i class='icon-caret-right'></i> $groupName");?></td>
- <td colspan='10' class="text-left">
- <div class="small with-padding"><?php echo $summary[$suiteID];?></div>
- </td>
- </tr>
- <?php endforeach;?>
- </tbody>
- </table>
- <?php endif;?>
|