| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- <?php
- /**
- * The create view of task module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package task
- * @version $Id: create.html.php 5090 2013-07-10 05:49:24Z zhujinyonging@gmail.com $
- * @link http://www.zentao.net
- */
- ?>
- <?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
- <?php include $this->app->getModuleRoot() . '/common/view/kindeditor.html.php';?>
- <?php include $this->app->getModuleRoot() . '/common/view/sortable.html.php';?>
- <?php js::set('toTaskList', !empty($task->id));?>
- <?php js::set('blockID', $blockID);?>
- <?php js::set('vision', $this->config->vision);?>
- <?php js::set('projectID', $projectID);?>
- <?php js::set('productID', $productID);?>
- <?php js::set('teamMemberError', $lang->task->error->teamMember);?>
- <?php js::set('estimateNotEmpty', sprintf($lang->error->gt, $lang->task->estimate, '0'))?>
- <?php if(!empty($storyID)):?>
- <?php endif;?>
- <div id='mainContent' class='main-content'>
- <div class='center-block'>
- <div class='main-header'>
- <h2><?php echo $lang->task->create;?></h2>
- <div class='btn-toolbar pull-right'>
- <?php $customLink = $this->createLink('custom', 'ajaxSaveCustomFields', 'module=task§ion=custom&key=createFields')?>
- <?php include $this->app->getModuleRoot() . '/common/view/customfield.html.php';?>
- </div>
- </div>
- <?php
- foreach(explode(',', $config->task->create->requiredFields) as $field)
- {
- if($field and strpos($showFields, $field) === false) $showFields .= ',' . $field;
- }
- ?>
- <form class='main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
- <table class='table table-form'>
- <?php if($execution->type != 'kanban' or $this->config->vision == 'lite'):?>
- <tr>
- <th><?php echo $lang->task->execution;?></th>
- <td><?php echo html::select('execution', $executions, $execution->id, "class='form-control chosen' onchange='loadPage(this.value)' required");?></td><td></td><td></td>
- </tr>
- <?php endif;?>
- <?php if(count($regionList) > 1 or count($laneList) > 1 or empty($extra)):?>
- <tr>
- <th><?php echo $lang->task->region;?></th>
- <td><?php echo html::select('region', $regionList, isset($regionID) ? $regionID : '', "class='form-control chosen' onchange='loadLaneGroup(this.value)' required");?>
- </tr>
- <tr>
- <th><?php echo $lang->task->lane;?></th>
- <td class='required'><?php echo html::select('otherLane', '', '', "class='form-control chosen' required");?>
- </tr>
- <?php endif;?>
- <tr>
- <th><?php echo $lang->task->type;?></th>
- <td><?php echo html::select('type', $lang->task->typeList, $task->type, "class='form-control chosen' onchange='setOwners(this.value)' required");?></td>
- <td>
- <div class="checkbox-primary hidden" id='selectTestStoryBox'>
- <input type="checkbox" name='selectTestStory' id="selectTestStory" value='1' onchange='toggleSelectTestStory()' /><label for="selectTestStory" class="no-margin"><?php echo $lang->task->selectTestStory;?></label>
- </div>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->task->module;?></th>
- <td id='moduleIdBox'><?php echo html::select('module', $moduleOptionMenu, $task->module, "class='form-control chosen' onchange='setStories(this.value, $execution->id)'");?></td>
- <td>
- <div class="checkbox-primary">
- <input type="checkbox" id="showAllModule" <?php if($showAllModule) echo 'checked';?>><label for="showAllModule" class="no-margin"><?php echo $lang->task->allModule;?></label>
- </div>
- </td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->task->assignedTo;?></th>
- <td>
- <div class="input-group" id="dataPlanGroup">
- <?php echo html::select('assignedTo[]', $members, $task->assignedTo, "class='form-control chosen'");?>
- <?php echo html::input('teamMember', '', "class='form-control team-group fix-border hidden' readonly='readonly'");?>
- <span class="input-group-btn team-group hidden"><a class="btn br-0" href="#modalTeam" data-toggle="modal"><?php echo $lang->task->team;?></a></span>
- </div>
- </td>
- <td>
- <div class="checkbox-primary affair">
- <input type="checkbox" name="multiple" value="1" id="multipleBox"><label for="multipleBox" class="no-margin"><?php echo $lang->task->multiple;?></label>
- </div>
- <button id='selectAllUser' type="button" class="btn btn-link<?php if($task->type !== 'affair') echo ' hidden';?>"><?php echo $lang->task->selectAllUser;?></button>
- </td>
- </tr>
- <tr class='hidden modeBox'>
- <th><?php echo $lang->task->mode;?></th>
- <td><?php echo html::select('mode', $lang->task->modeList, '', "class='form-control chosen'");?></td>
- </tr>
- <tr class='hide'>
- <th><?php echo $lang->task->status;?></th>
- <td><?php echo html::hidden('status', 'wait');?></td>
- </tr>
- <?php $this->printExtendFields('', 'table', 'columns=3');?>
- <?php if(strpos(",$showFields,", ',story,') !== false and $execution->lifetime != 'ops'):?>
- <tr>
- <th><?php echo $lang->task->story;?></th>
- <td colspan='3'>
- <span id='storyBox' class="<?php if(!empty($stories)) echo 'hidden';?> "><?php printf($lang->task->noticeLinkStory, html::a($this->createLink('story', 'create', "productID=$productID&branch=0&moduleID=0&storyID=0&projectID=$projectID&bugID=0&planID=0&todoID=0&extra=&type=story&_single"), $lang->execution->linkStory, '', 'class="text-primary"'), html::a("javascript:loadStories($execution->id)", $lang->refresh, '', 'class="text-primary"'));?></span>
- <div class='input-group <?php if(empty($stories)) echo "hidden";?>'>
- <?php echo html::select('story', $stories, $task->story, "class='form-control chosen' onchange='setStoryRelated();'");?>
- <span class='input-group-btn' id='preview'><a href='#' class='btn iframe'><?php echo $lang->preview;?></a></span>
- </div>
- </td>
- </tr>
- <?php endif;?>
- <?php if($execution->type != 'ops'):?>
- <tr id='testStoryBox' class='hidden'>
- <th><?php echo $lang->task->selectTestStory;?></th>
- <td colspan='3'>
- <table class='table table-form mg-0 table-bordered'>
- <thead>
- <tr>
- <th class='w-150px'><?php echo $lang->task->storyAB;?></th>
- <th class='w-80px'><?php echo $lang->task->pri;?></th>
- <th class='w-300px'><?php echo $lang->task->datePlan;?></th>
- <th class='w-150px'><?php echo $lang->task->assignedTo;?></th>
- <th class='w-80px'><?php echo $lang->task->estimate;?></th>
- <th class='w-80px'><?php echo $lang->actions;?></th>
- </tr>
- </thead>
- <tbody>
- <?php $i = 0;?>
- <?php foreach($stories as $storyID => $storyTitle):?>
- <?php if(empty($storyID) or isset($testStoryIdList[$storyID])) continue;?>
- <tr>
- <td><?php echo html::select("testStory[]", array($storyID => $storyTitle), $storyID, "class='form-control chosen'");?></td>
- <td><?php echo html::select("testPri[]", $lang->task->priList, $task->pri, "class='form-control chosen'");?></td>
- <td>
- <div class='input-group'>
- <?php echo html::input("testEstStarted[]", $task->estStarted, "class='form-control form-date' placeholder='{$lang->task->estStarted}'");?>
- <span class='input-group-addon fix-border'>~</span>
- <?php echo html::input("testDeadline[]", $task->deadline, "class='form-control form-date' placeholder='{$lang->task->deadline}'");?>
- </div>
- </td>
- <td><?php echo html::select("testAssignedTo[]", $members, $task->assignedTo, "class='form-control chosen'");?></td>
- <td><?php echo html::input("testEstimate[]", '', "class='form-control'");?></td>
- <td class='text-center'>
- <div class="btn-group">
- <button type="button" class="btn btn-sm" tabindex="-1" onclick='addItem(this)'><i class="icon icon-plus"></i></button>
- <button type="button" class="btn btn-sm" tabindex="-1" onclick='removeItem(this)'><i class="icon icon-close"></i></button>
- </div>
- </td>
- </tr>
- <?php $i++;?>
- <?php if($i > 30) break;?>
- <?php endforeach;?>
- </tbody>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <tr>
- <th><?php echo $lang->task->name;?></th>
- <td colspan='3'>
- <div class="input-group title-group">
- <div class="input-control has-icon-right">
- <div class="colorpicker">
- <button type="button" class="btn btn-link dropdown-toggle" data-toggle="dropdown"><span class="cp-title"></span><span class="color-bar"></span><i class="ic"></i></button>
- <ul class="dropdown-menu clearfix">
- <li class="heading"><?php echo $lang->task->colorTag;?><i class="icon icon-close"></i></li>
- </ul>
- <input type="hidden" class="colorpicker" id="color" name="color" value="" data-icon="color" data-wrapper="input-control-icon-right" data-update-color="#name" data-provide="colorpicker">
- </div>
- <?php echo html::input('name', $task->name, "class='form-control' required");?>
- <a href='javascript:copyStoryTitle();' id='copyButton' class='input-control-icon-right'><?php echo $lang->task->copyStoryTitle;?></a>
- <?php echo html::hidden("storyEstimate") . html::hidden("storyDesc") . html::hidden("storyPri");?>
- </div>
- <?php if(strpos(",$showFields,", ',pri,') !== false): // begin print pri selector?>
- <span class="input-group-addon fix-border br-0"><?php echo $lang->task->pri;?></span>
- <?php
- $hasCustomPri = false;
- foreach($lang->task->priList as $priKey => $priValue)
- {
- if(!empty($priKey) and (string)$priKey != (string)$priValue)
- {
- $hasCustomPri = true;
- break;
- }
- }
- $priList = $lang->task->priList;
- if(end($priList)) unset($priList[0]);
- if(!isset($priList[$task->pri]))
- {
- reset($priList);
- $task->pri = key($priList);
- }
- ?>
- <?php if($hasCustomPri):?>
- <?php echo html::select('pri', (array)$priList, $task->pri, "class='form-control'");?>
- <?php else: ?>
- <div class="input-group-btn pri-selector" data-type="pri">
- <button type="button" class="btn dropdown-toggle br-0" data-toggle="dropdown">
- <span class="pri-text"><span class="label-pri label-pri-<?php echo empty($task->pri) ? '0' : $task->pri?>" title="<?php echo $task->pri?>"><?php echo $task->pri?></span></span> <span class="caret"></span>
- </button>
- <div class='dropdown-menu pull-right'>
- <?php echo html::select('pri', (array)$priList, $task->pri, "class='form-control' data-provide='labelSelector' data-label-class='label-pri'");?>
- </div>
- </div>
- <?php endif; ?>
- <?php endif; // end print pri selector ?>
- <?php if(strpos(",$showFields,", ',estimate,') !== false):?>
- <div class='table-col w-120px'>
- <div class="input-group">
- <span class="input-group-addon fix-border br-0"><?php echo $lang->task->estimateAB;?></span>
- <input type="text" name="estimate" id="estimate" value="<?php echo $task->estimate;?>" class="form-control" autocomplete="off">
- </div>
- </div>
- <?php endif;?>
- </div>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->task->desc;?></th>
- <td colspan='3'>
- <?php echo $this->fetch('user', 'ajaxPrintTemplates', 'type=task&link=desc');?>
- <?php echo html::textarea('desc', htmlSpecialString($task->desc), "rows='10' class='form-control'");?>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->files;?></th>
- <td colspan='3'><?php echo $this->fetch('file', 'buildform');?></td>
- </tr>
- <?php
- $hiddenEstStarted = strpos(",$showFields,", ',estStarted,') === false;
- $hiddenDeadline = strpos(",$showFields,", ',deadline,') === false;
- ?>
- <?php if(!$hiddenEstStarted or !$hiddenDeadline):?>
- <tr>
- <th><?php echo $lang->task->datePlan;?></th>
- <td colspan='2'>
- <div class='input-group'>
- <?php if(!$hiddenEstStarted):?>
- <?php echo html::input('estStarted', $task->estStarted, "class='form-control form-date' placeholder='{$lang->task->estStarted}'");?>
- <?php endif;?>
- <?php if(!$hiddenEstStarted and !$hiddenDeadline):?>
- <span class='input-group-addon fix-border'>~</span>
- <?php endif;?>
- <?php if(!$hiddenDeadline):?>
- <?php echo html::input('deadline', $task->deadline, "class='form-control form-date' placeholder='{$lang->task->deadline}'");?>
- <?php endif;?>
- </div>
- </td>
- </tr>
- <?php endif;?>
- <?php if(strpos(",$showFields,", ',mailto,') !== false):?>
- <tr>
- <th><?php echo $lang->story->mailto;?></th>
- <td colspan='3'>
- <div class="input-group">
- <?php echo html::select('mailto[]', $execution->acl == 'private' ? $members : $users, str_replace(' ', '', $task->mailto), "class='form-control chosen' data-placeholder='{$lang->chooseUsersToMail}' multiple");?>
- <?php if($execution->acl != 'private') echo $this->fetch('my', 'buildContactLists');?>
- </div>
- </td>
- </tr>
- <?php endif;?>
- <?php if(!isonlybody()):?>
- <tr id='after-tr'>
- <th><?php echo $lang->task->afterSubmit;?></th>
- <td colspan='3'><?php echo html::radio('after', $lang->task->afterChoices, !empty($task->id) ? 'toTaskList' : 'continueAdding');?></td>
- </tr>
- <?php endif;?>
- <tr>
- <td colspan='4' class='text-center form-actions'>
- <?php echo html::submitButton();?>
- <?php echo $gobackLink ? html::a($gobackLink, $lang->goback, '', 'class="btn btn-wide"') : html::backButton();?>
- </td>
- </tr>
- </table>
- <div class='modal fade modal-team' id='modalTeam' data-scroll-inside='false'>
- <div class='modal-dialog'>
- <div class='modal-content with-padding'>
- <div class='modal-header'>
- <button type='button' class='close' data-dismiss='modal'>
- <i class="icon icon-close"></i>
- </button>
- <h4 class='modal-title'><?php echo $lang->task->team;?></h4>
- </div>
- <div class='modal-body'>
- <table class="table table-form" id='taskTeamEditor'>
- <tbody class='sortable'>
- <?php include $app->getModuleRoot() . 'task/view/taskteam.html.php';?>
- </tbody>
- <tfoot>
- <tr>
- <td colspan='4' class='text-center'><?php echo html::a('javascript:void(0)', $lang->confirm, '', "class='btn btn-primary'");?></td>
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
- </div>
- </div>
- </form>
- </div>
- </div>
- <table class='hidden' id='testStoryTemplate'>
- <tr>
- <td><?php echo html::select("testStory[]", array(0 => ''), 0, "class='form-control chosen'");?></td>
- <td><?php echo html::select("testPri[]", $lang->task->priList, '', "class='form-control chosen'");?></td>
- <td>
- <div class='input-group'>
- <?php echo html::input("testEstStarted[]", '', "class='form-control form-date' placeholder='{$lang->task->estStarted}'");?>
- <span class='input-group-addon fix-border'>~</span>
- <?php echo html::input("testDeadline[]", '', "class='form-control form-date' placeholder='{$lang->task->deadline}'");?>
- </div>
- </td>
- <td><?php echo html::select("testAssignedTo[]", array('' => ''), '', "class='form-control chosen'");?></td>
- <td><?php echo html::input("testEstimate[]", '', "class='form-control'");?></td>
- <td class='text-center'>
- <div class="btn-group">
- <button type="button" class="btn btn-sm" tabindex="-1" onclick='addItem(this)'><i class="icon icon-plus"></i></button>
- <button type="button" class="btn btn-sm" tabindex="-1" onclick='removeItem(this)'><i class="icon icon-close"></i></button>
- </div>
- </td>
- </tr>
- </table>
- <?php js::set('stories', $stories);?>
- <?php js::set('storyPinYin', (empty($config->isINT) and class_exists('common')) ? common::convert2Pinyin($stories) : array());?>
- <?php js::set('testStoryIdList', $testStoryIdList);?>
- <?php js::set('executionID', $execution->id);?>
- <?php js::set('executionType', $execution->type);?>
- <?php if(isonlybody()):?>
- <style>
- .body-modal .main-header {padding-right: 0px; z-index: 1000;}
- .btn-toolbar > .dropdown {margin: 0px;}
- </style>
- <?php $html = '<div class="divider"></div><button id="closeModal" type="button" class="btn btn-link" data-dismiss="modal"><i class="icon icon-close"></i></button>';?>
- <script>
- $(function()
- {
- parent.$('#triggerModal .modal-content .modal-header .close').hide();
- $('#mainContent .main-header .pull-right.btn-toolbar').append(<?php echo json_encode($html)?>);
- })
- </script>
- <?php endif;?>
- <?php js::set('newRowCount', 5);?>
- <script>
- $(function()
- {
- var regionID = $('#region').val();
- loadLaneGroup(regionID);
- parent.$('body.hide-modal-close').removeClass('hide-modal-close');
- })
- function loadLaneGroup(regionID)
- {
- var link = createLink('kanban', 'ajaxGetLanes', 'regionID=' + regionID + '&type=task');
- $.post(link, function(data)
- {
- $('#otherLane').replaceWith(data);
- $('#otherLane_chosen').remove();
- $('#otherLane').chosen();
- /* Hide region and lane select if there are only one of each. */
- if($('#otherLane').children().length < 2 && $('#region').children().length < 2)
- {
- $('#region').parent().parent().addClass('hide');
- $('#otherLane').parent().parent().addClass('hide');
- }
- })
- }
- function loadPage(executionID)
- {
- var link = createLink('task', 'create', 'executionID=' + executionID);
- window.location.replace(link)
- }
- </script>
- <?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|