94 lines
3.9 KiB
PHP
94 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* The change view file of story 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 story
|
|
* @version $Id: change.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include './header.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<span class='label label-id'><?php echo $story->id;?></span>
|
|
<?php echo html::a($this->createLink('story', 'view', "storyID=$story->id"), $story->title);?>
|
|
<small><?php echo $lang->arrow . ' ' . $lang->story->change;?></small>
|
|
</h2>
|
|
</div>
|
|
<form class="main-form" method='post' enctype='multipart/form-data' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-80px'><?php echo $lang->story->reviewedBy;?></th>
|
|
<td class='w-p35-f'>
|
|
<div class="input-group">
|
|
<?php echo html::select('assignedTo', $users, $story->reviewedBy, 'class="form-control chosen"');?>
|
|
<?php if(!$this->story->checkForceReview()):?>
|
|
<span class="input-group-addon">
|
|
<?php echo html::checkbox('needNotReview', $lang->story->needNotReview, '', "id='needNotReview' {$needReview}");?>
|
|
</span>
|
|
<?php endif;?>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr class='hide'>
|
|
<th><?php echo $lang->story->status;?></th>
|
|
<td><?php echo html::hidden('status', $story->status);?></td>
|
|
</tr>
|
|
<?php $this->printExtendFields($story, 'table');?>
|
|
<tr>
|
|
<th><?php echo $lang->story->title;?></th>
|
|
<td colspan='2'><?php echo html::input('title', $story->title, 'class="form-control"');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->story->spec;?></th>
|
|
<td colspan='2'><?php echo html::textarea('spec', htmlspecialchars($story->spec), 'rows=8 class="form-control"');?><span class='help-block'><?php echo $lang->story->specTemplate;?></span></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->story->verify;?></th>
|
|
<td colspan='2'><?php echo html::textarea('verify', htmlspecialchars($story->verify), 'rows=6 class="form-control"');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->story->comment;?></th>
|
|
<td colspan='2'><?php echo html::textarea('comment', '', 'rows=5 class="form-control"');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->attatch;?></th>
|
|
<td colspan='2'><?php echo $this->fetch('file', 'buildform');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->story->checkAffection;?></th>
|
|
<td colspan='2'><?php include './affected.html.php';?></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td colspan='2' class='text-center form-actions'>
|
|
<?php
|
|
echo html::hidden('lastEditedDate', $story->lastEditedDate);
|
|
echo html::submitButton();
|
|
echo html::a($app->session->storyList ? $app->session->storyList : inlink('view', "storyID=$story->id"), $lang->goback, '', 'class="btn btn-wide"');
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<hr class='small' />
|
|
<div class='main'>
|
|
<?php include '../../common/view/action.html.php';?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php js::set('storyID', $story->id);?>
|
|
<?php js::set('oldStoryTitle', $story->title);?>
|
|
<?php js::set('oldStorySpec', $story->spec);?>
|
|
<?php js::set('oldStoryVerify', $story->verify);?>
|
|
<?php js::set('changed', 0);?>
|
|
<?php js::set('storyType', $story->type);?>
|
|
<?php js::set('rawModule', $this->app->rawModule);?>
|
|
<?php include '../../common/view/footer.html.php';?>
|