znt/module/story/ui/batchedit.html.php

88 lines
4.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* The UI view file of story 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 Wang Yidong <yidong@easycorp.ltd>
* @package story
* @link https://www.zentao.net
*/
namespace zin;
data('activeMenuID', $from != 'work' && $from != 'contribute' ? $storyType : $from);
jsVar('branchTagOption', $branchTagOption);
jsVar('moduleList', $moduleList);
jsVar('planGroups', $plans);
jsVar('meeting', isset($meetings) ? $meetings : array());
jsVar('researchReports', isset($researchReports) ? $researchReports : array());
jsVar('productStoryList', $productStoryList);
jsVar('storyType', $storyType);
jsVar('urStageOptions', $urStageOptions);
$URSourceItems = array();
foreach($lang->requirement->sourceList as $key => $name) $URSourceItems[] = array('value' => $key, 'text' => $name);
jsVar('URSourceItems', $URSourceItems);
if(!empty($twinsTip)) pageJS("zui.Modal.alert({message: '{$twinsTip}', icon: 'icon-exclamation-sign', iconClass: 'warning-pale rounded-full icon-2x'});\n");
if(!empty($frozenTips)) pageJS("zui.Modal.alert({message: '{$frozenTips}', icon: 'icon-exclamation-sign', iconClass: 'warning-pale rounded-full icon-2x'});\n");
$items = array();
$items['storyIdList'] = array('name' => 'storyIdList', 'label' => '', 'control' => 'hidden', 'hidden' => true);
$items['id'] = array('name' => 'id', 'label' => $lang->idAB, 'control' => 'index', 'width' => '60px');
$fields = $config->story->form->batchEdit;
foreach($fields as $fieldName => $field)
{
if($fieldName == 'color') continue;
if(isset($field['options']) && $field['options'] == 'users') $field['options'] = $users;
if($fieldName == 'source') $field['options'] = $lang->{$storyType}->sourceList;
if($fieldName == 'pri') $field['options'] = $lang->{$storyType}->priList;
if($fieldName == 'category') $field['options'] = $lang->{$storyType}->categoryList;
$items[$fieldName] = array('name' => $fieldName, 'label' => zget($lang->story, $fieldName), 'control' => $field['control'], 'width' => $field['width'], 'required' => $field['required']);
if(isset($field['options'])) $items[$fieldName]['items'] = $field['options'];
if(isset($customFields[$fieldName]) && strpos(",$showFields,", ",$fieldName,") === false) $items[$fieldName]['hidden'] = true;
if($fieldName == 'sourceNote' && strpos(",$showFields,", ",source,") === false) $items['sourceNote']['hidden'] = true;
}
$items['title']['inputClass'] = 'filter-none';
$items['assignedTo']['ditto'] = true;
$items['source']['ditto'] = true;
$items['stage']['ditto'] = true;
$items['assignedTo']['defaultDitto'] = 'off';
$items['source']['defaultDitto'] = 'off';
$items['stage']['defaultDitto'] = 'off';
if(!empty($fields['plan'])) $items['plan']['tip'] = $lang->story->planTip;
if(!$branchProduct) unset($items['branch'], $customFields['branch']);
/* Build form field value for batch edit. */
$fieldNameList = array_keys($items);
$data = array();
foreach($stories as $storyID => $story)
{
if(empty($story->pri)) $story->pri = $this->config->story->defaultPriority;
$data[$storyID] = $story;
foreach($fieldNameList as $fieldName)
{
if($fieldName == 'storyIdList')$data[$storyID]->storyIdList = $story->id;
if($fieldName == 'status')
{
$data[$storyID]->rawStatus = $story->status;
$data[$storyID]->$fieldName = $this->processStatus('story', $story);
}
}
}
formBatchPanel
(
set::title($lang->story->batchEdit),
on::change('[data-name="source"]')->call('setSourceNote', jsRaw('event')),
set::onRenderCol(jsRaw('window.handleRenderFieldCol')),
set::mode('edit'),
set::items($items),
set::data(array_values($data)),
set::customFields(array('list' => $customFields, 'show' => explode(',', $showFields), 'key' => 'batchEditFields')),
set::onRenderRow(jsRaw('renderRowData'))
);
render();