| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * The html template file of index method of index 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 ZenTaoPMS
- * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
- <?php
- js::set('copyProjectID', $copyProjectID);
- js::set('weekend', $this->config->execution->weekend);
- $hiddenDate = !empty($copyProject->isTpl) ? 'hidden' : '';
- ?>
- <div id='mainContent' class='main-content'>
- <div class='main-header'>
- <h2 class='confirm-title'><?php echo in_array($project->model, array('waterfall', 'waterfallplus')) ? $lang->project->stageInfoConfirm : $lang->project->executionInfoConfirm;?></h2>
- <?php if($project->model == 'scrum' or $project->model == 'agileplus'):?>
- <h2 class='info-tips'><?php echo $hiddenDate ? $lang->project->executionInfoTipsAbbr : $lang->project->executionInfoTips;?></h1>
- <?php endif;?>
- </div>
- <form method='post' class='load-indicator main-form form-ajax' enctype='multipart/form-data' id="copyConfirmForm">
- <?php if($project->model == 'scrum' or $project->model == 'agileplus'):?>
- <table class="table table-form">
- <thead>
- <tr>
- <?php if($project->model == 'agileplus'):?>
- <th class='c-id'><?php echo $lang->execution->method;?></th>
- <?php endif;?>
- <th class='c-name required' style='width:100%'><?php echo $lang->execution->name;?></th>
- <?php if(isset($config->setCode) and $config->setCode == 1):?>
- <??>
- <th class='c-code <?php echo strpos(",{$config->execution->create->requiredFields},", ',code,') !== false ? 'required' : ''?>'><?php echo $lang->execution->code;?></th>
- <?php endif;?>
- <th class='c-type'><?php echo $lang->execution->type;?></th>
- <th class="c-user"> <?php echo $lang->project->PM;?></th>
- <th class='c-date required <?php echo $hiddenDate;?>'><?php echo $lang->execution->begin;?></th>
- <th class='c-date required <?php echo $hiddenDate;?>'><?php echo $lang->execution->end;?></th>
- <th class='c-days <?php echo $hiddenDate;?>'><?php echo $lang->execution->days;?></th>
- </tr>
- </thead>
- <tbody>
- <?php $hasInfo = 'has-info';?>
- <?php foreach($executions as $executionID => $execution):?>
- <tr>
- <?php if($project->model == 'agileplus'):?>
- <td title='<?php echo zget($lang->execution->typeList, $execution->type);?>'><?php echo zget($lang->execution->typeList, $execution->type);?></td>
- <?php endif;?>
- <td title='<?php echo $execution->name;?>'>
- <?php echo html::hidden("executionIDList[$executionID]", $executionID);?>
- <?php echo html::input("names[$executionID]", $execution->name, "class='form-control $hasInfo'" );?>
- </td>
- <?php if(isset($config->setCode) and $config->setCode == 1):?>
- <td title='<?php echo $execution->code;?>'><?php echo html::input("codes[$executionID]", $execution->code, "class='form-control $hasInfo'");?></td>
- <?php endif;?>
- <td class='type'><?php echo html::select("lifetimes[$executionID]", $lang->execution->lifeTimeList, $executions[$executionID]->lifetime, 'class=form-control');?></td>
- <td class='text-left' style='overflow:visible'><?php echo html::select("PMs[$executionID]", $users, $executions[$executionID]->PM, "class='form-control picker-select'");?></td>
- <td class="<?php echo $hiddenDate;?>"><?php echo html::input("begins[$executionID]", $hiddenDate ? helper::today() : '', "id='begins[$executionID]' class='form-control form-date $hasInfo' onchange='computeWorkDays(this.id)'");?></td>
- <td class="<?php echo $hiddenDate;?>"><?php echo html::input("ends[$executionID]", $hiddenDate ? helper::today() : '', "id='ends[$executionID]' class='form-control form-date $hasInfo' onchange='computeWorkDays(this.id)'");?></td>
- <td class='days <?php echo $hiddenDate;?>'>
- <div class='input-group'>
- <?php echo html::input("dayses[$executionID]", $hiddenDate ? 1 : '', "id='dayses[$executionID]' class='form-control'");?>
- <span class='input-group-addon'><?php echo $lang->execution->day;?></span>
- </div>
- </td>
- <?php echo html::hidden("parents[$executionID]", $executions[$executionID]->parent);?>
- </tr>
- <?php if($hasInfo == 'has-info') $hasInfo = '';?>
- <?php endforeach;?>
- </tbody>
- </table>
- <?php elseif(in_array($project->model, array('waterfall', 'waterfallplus')) and $project->stageBy == 'product'):?>
- <?php $showProduct = !(count($executionIdList) == 1 and count($oldProductPairs) <= 1);?>
- <?php foreach($executionIdList as $productID => $stageIdList):?>
- <?php if($showProduct):?>
- <div class='waterfallstage'>
- <div class='waterfallheader'>
- <?php
- if(empty($copyProject->isTpl))
- {
- $oldProductPairs[0] = $lang->project->notCopyStage;
- reset($oldProductPairs);
- }
- $productChosen = html::select('', $oldProductPairs, isset($oldProductPairs[$productID]) ? $productID : key($oldProductPairs), "class='copyproducts' onchange='loadStages(this)'");
- ?>
- <span><?php printf($lang->project->chosenProductStage, zget($productPairs, $productID), $productChosen);?></span>
- </div>
- <div class='waterfallbody' data-productid='<?php echo $productID?>'>
- <?php endif;?>
- <?php include './ajaxloadstages.html.php';?>
- <?php if($showProduct):?>
- </div>
- </div>
- <?php endif;?>
- <?php if(!empty($copyProject->isTpl)) break;?>
- <?php endforeach;?>
- <?php elseif(in_array($project->model, array('waterfall', 'waterfallplus', 'ipd')) and $project->stageBy == 'project' and !empty($executionIdList)):?>
- <?php
- $productID = key($executionIdList);
- $stageIdList = current($executionIdList);
- include './ajaxloadstages.html.php';
- ?>
- <?php endif;?>
- <div class="text-center form-actions">
- <?php echo html::submitButton($lang->project->completeCopy);?>
- <?php echo html::a($this->createLink('project', !empty($copyProject->isTpl) ? 'createTemplate' : 'create', "project=$project->model&programID=0©ProjectID=$copyProjectID&extra=copyType=previous,copyFrom={$copyFrom}&pageType=copy"), $lang->project->previous, '', "class='btn btn-wide'");?>
- </div>
- </form>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|