186 lines
8.7 KiB
PHP
186 lines
8.7 KiB
PHP
<?php
|
|
/**
|
|
* The prjedit view file of program module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package program
|
|
* @version $Id
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<?php js::import($jsRoot . 'misc/date.js');?>
|
|
<?php js::set('weekend', $config->project->weekend);?>
|
|
<?php js::set('errorSameProducts', $lang->project->errorSameProducts);?>
|
|
<?php $aclList = $project->parent ? $lang->program->PGMPRJAclList : $lang->program->PRJAclList;?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->program->PRJEdit;?></h2>
|
|
</div>
|
|
<form class='form-indicator main-form form-ajax' method='post' target='hiddenwin' id='dataform'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-120px'><?php echo $lang->program->PRJTemplate;?></th>
|
|
<td><?php echo zget($lang->program->modelList, $project->model, '');?></td><td></td><td>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PGMParent;?></th>
|
|
<td><?php echo zget($parents, $project->parent, '/');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJName;?></th>
|
|
<td class="col-main"><?php echo html::input('name', $project->name, "class='form-control' required");?></td><td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJCode;?></th>
|
|
<td><?php echo html::input('code', $project->code, "class='form-control' required");?></td><td></td><td></td>
|
|
</tr>
|
|
<?php if($project->model == 'scrum'):?>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJCategory;?></th>
|
|
<td><?php echo html::select('lifetime', $lang->program->PRJLifeTimeList, $project->lifetime, "class='form-control'");?></td><td></td><td></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<?php if($project->model == 'waterfall'):?>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJCategory;?></th>
|
|
<td><?php echo html::select('product', $lang->program->PRJCategoryList, $project->product, "class='form-control'");?></td><td></td><td></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<tr>
|
|
<th><?php echo $lang->project->manageProducts;?></th>
|
|
<td class='text-left' id='productsBox' colspan="2">
|
|
<div class='row'>
|
|
<?php $i = 0;?>
|
|
<?php foreach($linkedProducts as $product):?>
|
|
<div class='col-sm-4'>
|
|
<?php $hasBranch = $product->type != 'normal' and isset($branchGroups[$product->id]);?>
|
|
<div class="input-group<?php if($hasBranch) echo ' has-branch';?>">
|
|
<?php echo html::select("products[$i]", $allProducts, $product->id, "class='form-control chosen' onchange='loadBranches(this)' data-last='" . $product->id . "'");?>
|
|
<span class='input-group-addon fix-border'></span>
|
|
<?php if($hasBranch) echo html::select("branch[$i]", $branchGroups[$product->id], $product->branch, "class='form-control chosen' onchange=\"loadPlans('#products{$i}', this.value)\"");?>
|
|
</div>
|
|
</div>
|
|
<?php $i++;?>
|
|
<?php endforeach;?>
|
|
<div class='col-sm-4'>
|
|
<div class='input-group'>
|
|
<?php echo html::select("products[$i]", $allProducts, '', "class='form-control chosen' onchange='loadBranches(this)'");?>
|
|
<span class='input-group-addon fix-border'></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->project->linkPlan;?></th>
|
|
<td id="plansBox" colspan="2">
|
|
<div class='row'>
|
|
<?php $i = 0;?>
|
|
<?php foreach($linkedProducts as $product):?>
|
|
<?php $plans = zget($productPlans, $product->id, array(0 => ''));?>
|
|
<div class="col-sm-4" id="plan<?php echo $i;?>"><?php echo html::select("plans[" . $product->id . "]", $plans, $product->plan, "class='form-control chosen'");?></div>
|
|
<?php $i++;?>
|
|
<?php endforeach;?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJPM;?></th>
|
|
<td><?php echo html::select('PM', $pmUsers, $project->PM, "class='form-control chosen'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJBudget;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input('budget', $project->budget, "class='form-control'");?>
|
|
<span class='input-group-addon'></span>
|
|
<?php echo html::select('budgetUnit', $lang->program->unitList, $project->budgetUnit, "class='form-control'");?>
|
|
</div>
|
|
</td>
|
|
<td class='muted'></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->dateRange;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input('begin', $project->begin, "class='form-control form-date' onchange='computeWorkDays();' placeholder='" . $lang->program->begin . "' required");?>
|
|
<span class='input-group-addon'><?php echo $lang->program->to;?></span>
|
|
<?php
|
|
$disabledEnd = empty($project->end) ? 'disabled' : '';
|
|
echo html::input('end', $project->end, "class='form-control form-date' onchange='computeWorkDays();' $disabledEnd placeholder='" . $lang->program->end . "' required");
|
|
?>
|
|
<span class='input-group-addon' id='longTimeBox'>
|
|
<div class="checkbox-primary">
|
|
<input type="checkbox" name="longTime" value="1" <?php echo empty($project->end) ? 'checked' : '';?> id="longTime">
|
|
<label for="longTime"><?php echo $lang->program->PRJLongTime;?></label>
|
|
</div>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td class='muted'></td>
|
|
</tr>
|
|
<?php if($project->model == 'scrum'):?>
|
|
<tr>
|
|
<th><?php echo $lang->project->days;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input('days', $project->days, "class='form-control'");?>
|
|
<span class='input-group-addon'><?php echo $lang->project->day;?></span>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<tr>
|
|
<th><?php echo $lang->project->teamname;?></th>
|
|
<td><?php echo html::input('team', $project->team, "class='form-control'");?></td><td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->PRJDesc;?></th>
|
|
<td colspan='3'>
|
|
<?php echo $this->fetch('user', 'ajaxPrintTemplates', 'type=project&link=desc');?>
|
|
<?php echo html::textarea('desc', $project->desc, "rows='6' class='form-control kindeditor' hidefocus='true'");?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->program->auth;?></th>
|
|
<td colspan='3'><?php echo html::radio('auth', $lang->program->PRJAuthList, $project->auth, '', 'block');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->project->acl;?></th>
|
|
<td colspan='3' class='aclBox'><?php echo nl2br(html::radio('acl', $aclList, $project->acl, "onclick='setWhite(this.value);'", 'block'));?></td>
|
|
</tr>
|
|
<tr class="<?php if($project->acl == 'open') echo 'hidden';?>" id="whitelistBox">
|
|
<th><?php echo $lang->whitelist;?></th>
|
|
<td><?php echo html::select('whitelist[]', $users, $project->whitelist, 'class="form-control chosen" multiple');?></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='4' class='text-center form-actions'>
|
|
<?php
|
|
echo html::hidden('model', $project->model);
|
|
echo html::submitButton();
|
|
echo html::backButton();
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id='PRJAcl' class='hidden'>
|
|
<?php echo nl2br(html::radio('acl', $lang->program->PRJAclList, $project->acl == 'program' ? 'private' : 'open', "onclick='setWhite(this.value);'", 'block'));?>
|
|
</div>
|
|
<div id='PGMAcl' class='hidden'>
|
|
<?php echo nl2br(html::radio('acl', $lang->program->PGMPRJAclList, $project->acl, "onclick='setWhite(this.value);'", 'block'));?>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|