81 lines
3.6 KiB
PHP
81 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* The record file of task module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang<wwccss@gmail.com>
|
|
* @package task
|
|
* @version $Id: record.html.php 935 2013-01-08 07:49:24Z wwccss@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<?php include '../../common/view/datepicker.html.php';?>
|
|
<?php js::set('confirmRecord', $lang->task->confirmRecord);?>
|
|
<div id='titlebar'>
|
|
<div class='heading'>
|
|
<span class='prefix'><?php echo html::icon($lang->icons['task']) . ' #' . $task->id;;?></span>
|
|
<strong><?php echo html::a($this->createLink('task', 'view', 'task=' . $task->id), $task->name, '_blank');?></strong>
|
|
<small class='text-muted'> <?php echo $lang->task->logEfforts;?> <?php echo html::icon($lang->icons['recordEstimate']);?></small>
|
|
</div>
|
|
</div>
|
|
<form class='form-condensed' id="recordForm" method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<?php if(count($estimates)):?>
|
|
<thead>
|
|
<tr class='text-center'>
|
|
<th class="w-id"><?php echo $lang->idAB;?></th>
|
|
<th class="w-100px"><?php echo $lang->task->date;?></th>
|
|
<th class="w-60px"><?php echo $lang->task->consumedThisTime;?></th>
|
|
<th class="w-60px"><?php echo $lang->task->leftThisTime;?></th>
|
|
<th><?php echo $lang->comment;?></th>
|
|
<th class="w-60px"><?php echo $lang->actions;?></th>
|
|
</tr>
|
|
</thead>
|
|
<?php foreach($estimates as $estimate):?>
|
|
<tr class="a-center">
|
|
<td><?php echo $estimate->id;?></td>
|
|
<td><?php echo $estimate->date;?></td>
|
|
<td><?php echo $estimate->consumed;?></td>
|
|
<td><?php echo $estimate->left;?></td>
|
|
<td class="a-left"><?php echo $estimate->work;?></td>
|
|
<td align='center'>
|
|
<?php
|
|
if($task->status == 'wait' or $task->status == 'doing')
|
|
{
|
|
common::printIcon('task', 'editEstimate', "estimateID=$estimate->id", '', 'list', 'pencil', '', 'showinonlybody', true);
|
|
common::printIcon('task', 'deleteEstimate', "estimateID=$estimate->id", '', 'list', 'remove', 'hiddenwin', 'showinonlybody');
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<?php endif;?>
|
|
<?php if($task->status == 'wait' or $task->status == 'doing'):?>
|
|
<thead>
|
|
<tr class='text-center'>
|
|
<th class="w-id"><?php echo $lang->idAB;?></th>
|
|
<th class="w-120px"><?php echo $lang->task->date;?></th>
|
|
<th class="w-60px"><?php echo $lang->task->consumedThisTime;?></th>
|
|
<th class="w-60px"><?php echo $lang->task->leftThisTime;?></th>
|
|
<th><?php echo $lang->comment;?></th><th></th>
|
|
</tr>
|
|
</thead>
|
|
<?php for($i = 1; $i <= 5; $i++):?>
|
|
<tr class="text-center">
|
|
<td><?php echo $i . html::hidden("id[$i]", $i);?></td>
|
|
<td><?php echo html::input("dates[$i]", '', "class='form-control text-center form-datetime'");?></td>
|
|
<td><?php echo html::input("consumed[$i]", '', "class='form-control text-center'");?></td>
|
|
<td><?php echo html::input("left[$i]", '', "class='form-control text-center left'");?></td>
|
|
<td class="text-left"><?php echo html::textarea("work[$i]", '', "class='form-control' rows='1'");?></td>
|
|
</tr>
|
|
<?php endfor;?>
|
|
<tr>
|
|
<td colspan='6' class='text-center'><?php echo html::submitButton() . html::backButton();?></td>
|
|
</tr>
|
|
</table>
|
|
<?php endif;?>
|
|
</form>
|
|
<?php include '../../common/view/footer.lite.html.php';?>
|