93 lines
4.7 KiB
PHP
93 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* The edit view of productplan 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 productplan
|
|
* @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<?php js::set('weekend', $config->execution->weekend);?>
|
|
<?php js::import($jsRoot . 'misc/date.js');?>
|
|
<?php js::set('today', helper::today());?>
|
|
<?php js::set('productID', $productID);?>
|
|
<?php js::set('oldBranch', $oldBranch);?>
|
|
<?php js::set('planID', $plan->id);?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2><?php echo html::a(inlink('view', "id=$plan->id"), $plan->title, '', "title='$plan->title'");?></strong></h2>
|
|
</div>
|
|
<form class='load-indicator main-form form-ajax' method='post' target='hiddenwin' id='dataform'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<?php if(!$product->shadow):?>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->product;?></th>
|
|
<td class='muted'><?php echo $product->name;?></td><td></td><td></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<?php if($plan->parent == '-1'):?>
|
|
<?php echo html::hidden('parent', $plan->parent);?>
|
|
<?php else:?>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->parent;?></th>
|
|
<td><?php echo html::select('parent', array(0 => '') + $parentPlanPairs, $plan->parent, "class='form-control chosen'");?>
|
|
</tr>
|
|
<?php endif;?>
|
|
<?php if(!$product->shadow and $product->type != 'normal'):?>
|
|
<tr>
|
|
<th><?php echo $lang->product->branch;?></th>
|
|
<td class='required'><?php echo html::select('branch[]', $branchTagOption, $plan->branch, "class='form-control chosen' multiple");?></td><td></td><td></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->title;?></th>
|
|
<td><?php echo html::input('title', $plan->title, "class='form-control' required");?></td><td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->status;?></th>
|
|
<?php $disabled = $plan->parent == -1 ? "disabled='disabled'" : '' ;?>
|
|
<td><?php echo html::select('status', array_slice($lang->productplan->statusList,($plan->status == 'wait' ? 0 : 1)), $plan->status, "class='form-control chosen' $disabled");?></td>
|
|
</tr>
|
|
<tr>
|
|
<?php $checked = ($plan->begin == $config->productplan->future and $plan->end == $config->productplan->future) ? "checked='checked'" : '';?>
|
|
<th><?php echo $lang->productplan->begin;?></th>
|
|
<td><?php echo html::input('begin', $plan->begin != $config->productplan->future ? formatTime($plan->begin) : '', "class='form-control form-date'");?></td>
|
|
<td>
|
|
<div class='checkbox-primary' id='checkBox'>
|
|
<input type='checkbox' id='future' name='future' value='1' <?php echo $checked;?> />
|
|
<label for='future'><?php echo $lang->productplan->future;?></label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->end;?></th>
|
|
<td><?php echo html::input('end', $plan->end != $config->productplan->future ? formatTime($plan->end) : '', "class='form-control form-date'");?></td>
|
|
<?php $deltaValue = $plan->end == $config->productplan->future ? 0 : (strtotime($plan->end) - strtotime($plan->begin)) / 3600 / 24 + 1;?>
|
|
<td colspan='2'><?php echo html::radio('delta', $lang->productplan->endList , $deltaValue, "onclick='computeEndDate(this.value)'");?></td>
|
|
</tr>
|
|
<?php $this->printExtendFields($plan, 'table', 'columns=3');?>
|
|
<tr>
|
|
<th><?php echo $lang->productplan->desc;?></th>
|
|
<td colspan='3'><?php echo html::textarea('desc', htmlSpecialString($plan->desc), "rows='10' class='form-control kindeditor' hidefocus='true'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='4' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton();?>
|
|
<?php echo html::hidden('product', $product->id);?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|