| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <?php
- /**
- * The browse view file of bug 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 Tingting Dai <daitingting@easycorp.ltd>
- * @package bug
- * @link https://www.zentao.net
- */
- namespace zin;
- jsVar('productID', $product->id);
- jsVar('branch', $branch);
- jsVar('today', date('Y-m-d'));
- jsVar('caseCommonLang', $this->lang->testcase->common);
- jsVar('from', $from);
- $queryMenuLink = createLink('bug', 'browse', "productID={$product->id}&branch={$branch}&browseType=bySearch¶m={queryID}");
- $currentType = $browseType == 'bysearch' ? $param : ($browseType == 'bymodule' ? $this->session->bugBrowseType : $browseType);
- $isFromDoc = $from === 'doc';
- $isFromAI = $from === 'ai';
- if($isFromDoc || $isFromAI)
- {
- $this->app->loadLang('doc');
- $products = $this->loadModel('product')->getPairs('', 0, '', 'all');
- $productChangeLink = createLink($app->rawModule, $app->rawMethod, "productID={productID}&branch=$branch&browseType=$browseType¶m=$param&orderBy=$orderBy&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}&from=$from&blockID=$blockID");
- $insertListLink = createLink($app->rawModule, $app->rawMethod, "productID=$product->id&branch=$branch&browseType=$browseType¶m=$param&orderBy=$orderBy&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}&from=$from&blockID={blockID}");
- formPanel
- (
- setID('zentaolist'),
- setClass('mb-4-important'),
- set::title(sprintf($this->lang->doc->insertTitle, $this->lang->doc->zentaoList['productBug'])),
- set::actions(array()),
- set::showExtra(false),
- to::titleSuffix
- (
- span
- (
- setClass('text-muted text-sm text-gray-600 font-light'),
- span(setClass('text-warning mr-1'), icon('help')),
- $lang->doc->previewTip
- )
- ),
- formRow
- (
- formGroup
- (
- set::width('1/2'),
- set::name('product'),
- set::label($lang->doc->product),
- set::control(array('required' => false)),
- set::items($products),
- set::value($product->id),
- set::required(),
- span
- (
- setClass('error-tip text-danger hidden'),
- $lang->doc->emptyError
- ),
- on::change('[name="product"]')->do("loadModal('$productChangeLink'.replace('{productID}', $(this).val()))")
- )
- )
- );
- }
- featureBar
- (
- set::current($currentType),
- set::linkParams("product={$product->id}&branch={$branch}&browseType={key}¶m={$param}&orderBy={$orderBy}&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}&from=$from&blockID=$blockID"),
- set::isModal($isFromDoc || $isFromAI),
- set::queryMenuLinkCallback(array(function ($key) use ($queryMenuLink) {
- return str_replace('{queryID}', (string)$key, $queryMenuLink);
- })),
- li(searchToggle
- (
- set::simple($isFromDoc || $isFromAI),
- set::open($browseType == 'bysearch'),
- ($isFromDoc || $isFromAI) ? set::target('#docSearchForm') : null,
- ($isFromDoc || $isFromAI) ? set::onSearch(jsRaw('function(){$(this.element).closest(".modal").find("#featureBar .nav-item>.active").removeClass("active").find(".label").hide()}')) : null
- ))
- );
- if($isFromDoc || $isFromAI)
- {
- div(setID('docSearchForm'));
- }
- $canBeChanged = common::canModify('product', $product);
- $canBatchEdit = $canBeChanged && hasPriv('bug', 'batchEdit');
- $canBatchConfirm = $canBeChanged && hasPriv('bug', 'batchConfirm');
- $canBatchActivate = $canBeChanged && hasPriv('bug', 'batchActivate');
- $canBatchChangeBranch = $canBeChanged && hasPriv('bug', 'batchChangeBranch');
- $canBatchChangeModule = $canBeChanged && hasPriv('bug', 'batchChangeModule');
- $canBatchResolve = $canBeChanged && hasPriv('bug', 'batchResolve');
- $canBatchAssignTo = $canBeChanged && hasPriv('bug', 'batchAssignTo');
- $canBatchClose = hasPriv('bug', 'batchClose');
- $canManageModule = hasPriv('tree', 'browse');
- /* 如果是多分支多平台产品,且选定的是所有分支,则不允许批量更改所属模块。 If it is a multi-branch multi-platform product, and all branches are selected, it is not allowed to batch change the module. */
- if($product->type != 'normal' && $branch == 'all') $canBatchChangeModule = false;
- $canBatchAction = $canBatchEdit || $canBatchConfirm || $canBatchClose || $canBatchActivate || $canBatchChangeBranch || $canBatchChangeModule || $canBatchResolve || $canBatchAssignTo;
- if(!isonlybody())
- {
- $canCreate = false;
- $canBatchCreate = false;
- if($canBeChanged)
- {
- $canCreate = hasPriv('bug', 'create');
- $canBatchCreate = hasPriv('bug', 'batchCreate');
- $selectedBranch = $branch != 'all' ? $branch : 0;
- $createLink = $this->createLink('bug', 'create', "productID={$product->id}&branch=$selectedBranch&extra=moduleID=$currentModuleID");
- $batchCreateLink = $this->createLink('bug', 'batchCreate', "productID={$product->id}&branch=$branch&executionID=0&moduleID=$currentModuleID");
- if(commonModel::isTutorialMode())
- {
- $wizardParams = helper::safe64Encode("productID={$product->id}&branch=$branch&extra=moduleID=$currentModuleID");
- $createLink = $this->createLink('tutorial', 'wizard', "module=bug&method=create¶ms=$wizardParams");
- }
- $createItem = array('text' => $lang->bug->create, 'url' => $createLink);
- $batchCreateItem = array('text' => $lang->bug->batchCreate, 'url' => $batchCreateLink);
- }
- toolbar
- (
- setClass(array('hidden' => $isFromDoc || $isFromAI)),
- hasPriv('bug', 'report') ? item(set(array
- (
- 'icon' => 'bar-chart',
- 'text' => $lang->bug->report->common,
- 'class' => 'ghost',
- 'url' => createLink('bug', 'report', "productID=$product->id&browseType=$browseType&branch=$branch&module=$currentModuleID")
- ))) : null,
- hasPriv('bug', 'export') ? item(set(array
- (
- 'text' => $lang->export,
- 'icon' => 'export',
- 'class' => 'ghost',
- 'url' => createLink('bug', 'export', "productID={$product->id}&browseType={$browseType}"),
- 'data-toggle' => 'modal'
- ))) : null,
- $canCreate && $canBatchCreate ? btngroup
- (
- btn(setClass('btn primary create-bug-btn'), set::icon('plus'), set::url($createLink), $lang->bug->create),
- dropdown
- (
- btn(setClass('btn primary dropdown-toggle'), setStyle(array('padding' => '6px', 'border-radius' => '0 2px 2px 0'))),
- set::items(array($createItem, $batchCreateItem)),
- set::placement('bottom-end')
- )
- ) : null,
- $canCreate && !$canBatchCreate ? item(set($createItem + array('class' => 'btn primary', 'icon' => 'plus'))) : null,
- $canBatchCreate && !$canCreate ? item(set($batchCreateItem + array('class' => 'btn primary', 'icon' => 'plus'))) : null
- );
- }
- $closeLink = createLink('bug', 'browse', "productID={$product->id}&branch={$branch}&browseType=byModule¶m=0&orderBy={$orderBy}&recTotal=0&recPerPage={$pager->recPerPage}");
- $settingLink = $canManageModule ? createLink('tree', 'browse', "productID={$product->id}&view=bug¤tModuleID=0&branch=0&from={$this->lang->navGroup->bug}") : '';
- if(!$isFromDoc && !$isFromAI)
- {
- sidebar
- (
- moduleMenu(set(array
- (
- 'modules' => $moduleTree,
- 'activeKey' => $currentModuleID,
- 'closeLink' => $closeLink,
- 'settingLink' => $settingLink
- )))
- );
- }
- $resolveItems = array();
- foreach($lang->bug->resolutionList as $key => $resolution)
- {
- if(empty($key) || $key == 'duplicate' || $key == 'tostory') continue;
- if($key == 'fixed')
- {
- $buildItems = array();
- foreach($builds as $key => $build) $buildItems[] = array('text' => $build, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => createLink('bug', 'batchResolve', "resolution=fixed&resolvedBuild=$key"));
- $resolveItems[] = array('text' => $resolution, 'class' => 'not-hide-menu', 'items' => $buildItems);
- }
- else
- {
- $resolveItems[] = array('text' => $resolution, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => createLink('bug', 'batchResolve', "resolution=$key"));
- }
- }
- $batchItems = array
- (
- array('text' => $lang->bug->confirm, 'innerClass' => 'batch-btn ajax-btn not-open-url ' . ($canBatchConfirm ? '' : 'hidden'), 'data-url' => helper::createLink('bug', 'batchConfirm')),
- array('text' => $lang->bug->close, 'innerClass' => 'batch-btn ajax-btn not-open-url ' . ($canBatchClose ? '' : 'hidden'), 'data-url' => helper::createLink('bug', 'batchClose')),
- array('text' => $lang->bug->activate, 'innerClass' => 'batch-btn not-open-url ' . ($canBatchActivate ? '' : 'hidden'), 'data-url' => helper::createLink('bug', 'batchActivate', "productID=$product->id&branch=$branch")),
- array('text' => $lang->bug->resolve, 'innerClass' => 'not-hide-menu ' . ($canBatchResolve ? '' : 'hidden'), 'items' => $resolveItems)
- );
- $branchItems = array();
- foreach($branchTagOption as $branchID => $branchName)
- {
- $branchItems[] = array('text' => $branchName, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('bug', 'batchChangeBranch', "branchID=$branchID"));
- }
- $moduleItems = array();
- foreach($modules as $moduleID => $module)
- {
- $moduleItems[] = array('text' => $module, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('bug', 'batchChangeModule', "moduleID=$moduleID"));
- }
- $footToolbar = array();
- if($canBatchAction)
- {
- $footToolbar['items'] = array();
- $footToolbar['items'][] = array('type' => 'btn-group', 'items' => array
- (
- array('text' => $lang->edit, 'className' => 'primary batch-btn not-open-url', 'disabled' => ($canBatchEdit ? '': 'disabled'), 'data-url' => createLink('bug', 'batchEdit', "productID={$product->id}&branch=$branch")),
- array('caret' => 'up', 'data-placement' => 'top-start', 'class' => 'btn btn-caret size-sm primary not-open-url', 'items' => $batchItems)
- ));
- if($canBatchChangeBranch && $product->type != 'normal')
- {
- $footToolbar['items'][] = array('caret' => 'up', 'text' => $lang->product->branchName[$product->type], 'type' => 'dropdown', 'data-placement' => 'top-start', 'items' => $branchItems);
- }
- if($canBatchChangeModule)
- {
- $footToolbar['items'][] = array('caret' => 'up', 'text' => $lang->bug->abbr->module, 'type' => 'dropdown', 'data-placement' => 'top-start', 'items' => $moduleItems, 'data-menu' => array('searchBox' => true));
- }
- if($canBatchAssignTo)
- {
- $pinyinItems = common::convert2Pinyin($memberPairs);
- $assignedToItems = array();
- foreach($memberPairs as $key => $value)
- {
- $key = base64_encode((string)$key); // 编码用户名中的特殊字符
- $assignedToItems[] = array('text' => $value, 'keys' => zget($pinyinItems, $value, ''), 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('bug', 'batchAssignTo', "assignedTo=$key&productID={$product->id}&type=product"));
- }
- $footToolbar['items'][] = array('caret' => 'up', 'text' => $lang->bug->assignedTo, 'type' => 'dropdown', 'data-placement' => 'top-start', 'items' => $assignedToItems, 'data-menu' => array('searchBox' => true));
- }
- $footToolbar['btnProps'] = array('size' => 'sm', 'btnType' => 'secondary');
- }
- if($isFromDoc) $footToolbar = array(array('text' => $lang->doc->insertText, 'data-on' => 'click', 'data-call' => "insertListToDoc('#bugs', 'bug', $blockID, '$insertListLink')"));
- if($isFromAI) $footToolbar = array(array('text' => $lang->doc->insertText, 'data-on' => 'click', 'data-call' => "insertListToAI('#bugs', 'bug')"));
- $cols = $this->loadModel('datatable')->getSetting('bug');
- if(isset($cols['branch'])) $cols['branch']['map'] = array(BRANCH_MAIN => $lang->trunk) + $branchTagOption;
- if(isset($cols['project'])) $cols['project']['map'] = array('') + $projectPairs;
- if(isset($cols['execution'])) $cols['execution']['map'] = array('') + $executions;
- if(isset($cols['plan'])) $cols['plan']['map'] = array('') + $plans;
- if(isset($cols['task'])) $cols['task']['map'] = array('') + $tasks;
- if(isset($cols['toTask'])) $cols['toTask']['map'] = array('') + $tasks;
- if(isset($cols['story'])) $cols['story']['map'] = array('') + $stories;
- if(isset($cols['activatedCount'])) $cols['activatedCount']['map'] = array('');
- if($product->type == 'normal') unset($cols['branch']);
- foreach($cols as $colName => $col)
- {
- if(!isset($col['sortType'])) $cols[$colName]['sortType'] = true;
- }
- if($isFromDoc || $isFromAI)
- {
- if(isset($cols['actions'])) unset($cols['actions']);
- foreach($cols as $key => $col)
- {
- $cols[$key]['sortType'] = false;
- if(isset($col['link'])) unset($cols[$key]['link']);
- if($key == 'assignedTo') $cols[$key]['type'] = 'user';
- if($key == 'pri') $cols[$key]['priList'] = $lang->bug->priList;
- if($key == 'severity') $cols[$key]['severityList'] = $lang->bug->severityList;
- if($key == 'title') $cols[$key]['link'] = array('url' => createLink('bug', 'view', "bugID={id}"), 'data-toggle' => 'modal', 'data-size' => 'lg');
- }
- }
- $bugs = initTableData($bugs, $cols, $this->bug);
- $createBugLink = $canBeChanged && hasPriv('bug', 'create') ? createLink('bug', 'create', "productID={$product->id}&branch={$branch}&extra=moduleID=$currentModuleID") : '';
- dtable
- (
- set::id('bugs'),
- set::cols($cols),
- set::data(array_values($bugs)),
- set::userMap($users),
- set::checkable($canBatchAction || $isFromDoc || $isFromAI),
- set::orderBy($orderBy),
- set::footToolbar($footToolbar),
- set::footPager(usePager()),
- !$isFromDoc ? null : set::afterRender(jsCallback()->call('toggleCheckRows', $idList)),
- (!$isFromDoc && !$isFromAI) ? null : set::height(400),
- (!$isFromDoc && !$isFromAI) ? null : set::onCheckChange(jsRaw('window.checkedChange')),
- ($isFromDoc || $isFromAI) ? null : set::customCols(true),
- ($isFromDoc || $isFromAI) ? null : set::sortLink(inlink('browse', "product={$product->id}&branch={$branch}&browseType={$browseType}¶m={$param}&orderBy={name}_{sortType}&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}")),
- set::onRenderCell(jsRaw('window.onRenderCell')),
- set::modules($modulePairs),
- set::emptyTip($lang->bug->notice->noBug),
- ($isFromDoc || $isFromAI) ? null : set::createTip($lang->bug->create),
- ($isFromDoc || $isFromAI) ? null : set::createLink($createBugLink)
- );
- render();
|