| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * The testcase view file of my module of ZenTaoPMS.
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Yuting Wang <wangyuting@easycorp.ltd>
- * @package my
- * @link https://www.zentao.net
- */
- namespace zin;
- include 'header.html.php';
- jsVar('unexecuted', $lang->testcase->unexecuted);
- featureBar
- (
- set::current($type),
- set::linkParams("mode=testcase&type={key}¶m=&orderBy={$orderBy}"),
- li(searchToggle(set::module($this->app->rawMethod . 'Testcase'), set::open($type == 'bysearch')))
- );
- $canBatchEdit = common::hasPriv('testcase', 'batchEdit');
- $footToolbar = array('items' => array
- (
- $canBatchEdit ? array('text' => $lang->edit, 'className' => 'batch-btn', 'data-url' => helper::createLink('testcase', 'batchEdit', "productID=0&branch=all&type=case&from={$app->rawMethod}")) : null
- ), 'btnProps' => array('size' => 'sm', 'btnType' => 'secondary'));
- if($type == 'openedbyme' || $app->rawMethod == 'contribute')
- {
- unset($config->my->testcase->dtable->fieldList['testtask']);
- unset($config->my->testcase->dtable->fieldList['openedBy']);
- }
- if($type == 'assigntome')
- {
- $config->my->testcase->dtable->fieldList['title']['link']['params'] .= "&from=testtask&taskID={task}";
- $config->my->testcase->dtable->fieldList['actions']['list']['runCase']['url'] = array('module' => 'testtask', 'method' => 'runCase', 'params' => 'id={run}');
- $config->my->testcase->dtable->fieldList['actions']['list']['runResult']['url'] = array('module' => 'testtask', 'method' => 'results', 'params' => 'id={run}');
- $config->my->testcase->dtable->fieldList['actions']['list']['createBug']['url'] = array('module' => 'testcase', 'method' => 'createBug', 'params' => 'product={product}&caseID={case}&version={version}&runID={run}');
- $config->my->testcase->dtable->fieldList['actions']['menu'] = array('runCase', 'runResult', 'edit', 'createBug', 'create');
- }
- foreach($config->my->testcase->dtable->fieldList['actions']['list'] as &$action) $action['url']['params'] = str_replace(array('{caseID}', '%executionID%', '{runID}'), array('{id}', '0', '0'), $action['url']['params']);
- $cases = initTableData($cases, $config->my->testcase->dtable->fieldList, $this->testcase);
- $data = array_values($cases);
- $defaultSummary = sprintf($lang->testcase->failSummary, count($cases), $failCount);
- dtable
- (
- set::data($data),
- set::cols($config->my->testcase->dtable->fieldList),
- set::userMap($users),
- set::fixedLeftWidth('44%'),
- set::checkable(true),
- set::defaultSummary(array('html' => $defaultSummary)),
- set::checkedSummary($lang->testcase->failCheckedSummary),
- set::checkInfo(jsRaw('function(checkedIDList){return window.setStatistics(this, checkedIDList);}')),
- set::orderBy($orderBy),
- set::sortLink(createLink('my', $app->rawMethod, "mode={$mode}&type={$type}¶m={$param}&orderBy={name}_{sortType}&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}")),
- set::footToolbar($footToolbar),
- set::footPager(usePager()),
- set::emptyTip($lang->testcase->noCase)
- );
- render();
|