72 lines
2.8 KiB
PHP
72 lines
2.8 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;
|
|
|
|
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('app', $this->app->tab);
|
|
|
|
if(!empty($twinsTip)) js("zui.Modal.alert({message: '{$twinsTip}', icon: 'icon-exclamation-sign', iconClass: 'warning-pale rounded-full icon-2x'});\n");
|
|
|
|
$fields = $config->story->form->batchEdit;
|
|
|
|
$items = array();
|
|
$items['storyIdList'] = array('name' => 'storyIdList', 'label' => '', 'control' => 'hidden', 'hidden' => true);
|
|
$items['id'] = array('name' => 'id', 'label' => $lang->idAB, 'control' => 'index', 'width' => '60px');
|
|
foreach($fields as $fieldName => $field)
|
|
{
|
|
if(isset($field['options']) && $field['options'] == 'users') $field['options'] = $users;
|
|
$items[$fieldName] = array('name' => $fieldName, 'label' => zget($lang->story, $fieldName), 'control' => $field['control'], 'width' => $field['width'], 'required' => $field['required'], 'items' => zget($field, 'options', array()));
|
|
}
|
|
$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(!$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),
|
|
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();
|