Files
EasySoft-ZenTaoPMS/module/task/view/m.recordestimate.html.php
Catouse ad3a1c29b8 * ajusted views.
* changed css names.
2014-03-27 14:40:55 +08:00

44 lines
1.5 KiB
PHP

<?php include '../../common/view/m.header.html.php';?>
</div>
<form class='form-condensed' method='post' target='hiddenwin'>
<h3><?php echo $lang->task->recordEstimate . $this->lang->colon . $task->name;?></h3>
<?php
$allConsumed = 0;
$allLeft = 0;
foreach($estimates as $estimate)
{
$allConsumed += $estimate->consumed;
$allLeft = $estimate->left;
}
?>
<table class='table-1'>
<tr>
<td colspan="2"><?php echo $lang->task->consumed . ':' . $allConsumed . $lang->task->hour . ', ' . $lang->task->left . ':' . $allLeft . $lang->task->hour;?></td>
</tr>
<?php if($task->status == 'wait' or $task->status == 'doing'):?>
<tr>
<td class="w-70px"><?php echo $lang->task->consumedThisTime;?></td>
<td><?php echo html::input('consumed[1]', '');?></td>
</tr>
<tr>
<td class="w-70px"><?php echo $lang->task->left;?></td>
<td><?php echo html::input('left[1]', '');?></td>
</tr>
<tr>
<td class='w-70px'><?php echo $lang->comment;?></td>
<td><?php echo html::textarea('comment', '', "data-mini='true'");?></td>
</tr>
<tr class="a-center">
<td colspan="2">
<?php
echo html::submitButton('', 'data-inline="true" data-theme="b"');
echo html::linkButton($lang->goback, $this->createLink('task', 'view', "taskID=$task->id"), 'self', "data-inline='true'");
echo html::hidden('dates[1]', helper::today()) . html::hidden("id[1]", 1);
?>
</td>
</tr>
<?php endif;?>
<table>
</form>
<?php include '../../common/view/m.footer.html.php';?>