103 lines
3.8 KiB
PHP
103 lines
3.8 KiB
PHP
<?php include '../../common/view/header.html.php';?>
|
|
<?php
|
|
$lang->custom->object = array();
|
|
$lang->custom->system = array();
|
|
$lang->custom->system[] = 'estimate';
|
|
?>
|
|
<style>
|
|
.unify-padding{width:94px;}
|
|
</style>
|
|
<div id='mainContent' class='main-row'>
|
|
<div class='main-col main-content'>
|
|
<form class="load-indicator main-form form-ajax" method='post'>
|
|
<!-- div class='main-header'>
|
|
<div class='heading'>
|
|
<strong><?php echo $lang->custom->estimate . $lang->arrow . $lang->custom->estimateConfig;?></strong>
|
|
</div>
|
|
</div -->
|
|
<table class='table table-form mw-900px'>
|
|
<tr>
|
|
<th class='thWidth'><?php echo $lang->custom->estimateUnit;?></th>
|
|
<td class='w-350px'><?php echo html::radio('hourPoint', $lang->custom->conceptOptions->hourPoint, $unit);?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-150px'><?php echo $lang->custom->estimateEfficiency;?></th>
|
|
<td>
|
|
<div class='input-group w-300px'>
|
|
<?php echo html::input('efficiency', $efficiency, "class='form-control'");?>
|
|
<span class='input-group-addon unify-padding'>
|
|
<?php
|
|
if($unit == 3)
|
|
{
|
|
echo $lang->custom->unitList['manhour'] . $lang->custom->unitList['loc'];
|
|
}
|
|
else
|
|
{
|
|
echo $lang->custom->unitList['efficiency'] . $lang->hourCommon;
|
|
}
|
|
?>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-150px'><?php echo $lang->custom->estimateCost;?></th>
|
|
<td>
|
|
<div class='input-group w-300px'>
|
|
<?php echo html::input('cost', $cost, "class='form-control'");?>
|
|
<span class='input-group-addon unify-padding'>
|
|
<?php echo $lang->custom->unitList['cost'];?>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-150px'><?php echo $lang->custom->estimateHours;?></th>
|
|
<td>
|
|
<div class='input-group w-300px'>
|
|
<?php echo html::input('defaultWorkhours', $hours, "class='form-control'");?>
|
|
<span class='input-group-addon unify-padding'>
|
|
<?php echo $lang->custom->unitList['hours'];?>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-150px'><?php echo $lang->custom->estimateDays;?></th>
|
|
<td>
|
|
<div class='input-group w-300px'>
|
|
<?php echo html::input('days', $days, "class='form-control'");?>
|
|
<span class='input-group-addon unify-padding'>
|
|
<?php echo $lang->custom->unitList['days'];?>
|
|
</span>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2' class='text-center'><?php echo html::submitButton();?></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php js::set('storyPoint', $lang->custom->conceptOptions->hourPoint[1]);?>
|
|
<?php js::set('functionPoint', $lang->custom->conceptOptions->hourPoint[2]);?>
|
|
<?php js::set('loc', $lang->custom->unitList['loc']);?>
|
|
<?php js::set('efficiency', $lang->custom->unitList['efficiency']);?>
|
|
<?php js::set('manhour', $lang->custom->unitList['manhour']);?>
|
|
<script>
|
|
$('#estimateTab').addClass('btn-active-text');
|
|
$('input[name="hourPoint"]').change(function()
|
|
{
|
|
if($(this).val() == 1) $('#efficiency + span').text(efficiency + storyPoint);
|
|
if($(this).val() == 2) $('#efficiency + span').text(efficiency + functionPoint);
|
|
if($(this).val() == 3) $('#efficiency + span').text(manhour + loc);
|
|
})
|
|
</script>
|
|
<?php include '../../common/view/footer.html.php';?>
|