Files
EasySoft-ZenTaoPMS/module/workestimation/view/index.html.php
2020-08-18 14:36:39 +08:00

98 lines
3.9 KiB
PHP

<?php include '../../common/view/header.html.php';?>
<style>.unify-padding{width:94px;}</style>
<div id='mainContent' class='main-content'>
<div class='center-block'>
<div class='main-header'>
<h2><?php echo $lang->workestimation->common;?></h2>
</div>
<form class='load-indicator main-form form-ajax' id='dataform' method='post' enctype='multipart/form-data'>
<table class='table table-form'>
<tbody>
<tr>
<th class='w-100px'><?php echo $lang->workestimation->scale;?></th>
<td class='w-300px'>
<div class='input-group'>
<?php echo html::input('scale', zget($budget, 'scale', ''), "class='form-control' required");?>
<span class='input-group-addon unify-padding'><?php echo $lang->hourCommon;?></span>
</div>
</td>
<td><?php if(isset($budget->duration) and $budget->duration) printf($lang->workestimation->programScaleTip, $programScale);?></td>
<td></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->workestimation->productivity;?></th>
<td>
<div class='input-group'>
<?php echo html::input('productivity', zget($budget, 'productivity', ''), "class='form-control'");?>
<span class='input-group-addon unify-padding'>
<?php echo $hourPoint == 3 ? $lang->custom->unitList['manhour'] . $lang->custom->unitList['loc'] : $lang->custom->unitList['efficiency'] . $lang->hourCommon;?>
</span>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->workestimation->duration;?></th>
<td>
<div class='input-group'>
<?php echo html::input('duration', zget($budget, 'duration', ''), "class='form-control'");?>
<span class='input-group-addon unify-padding'><?php echo $lang->workestimation->hour;?></span>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->workestimation->unitLaborCost;?></th>
<td>
<div class='input-group'>
<?php echo html::input('unitLaborCost', zget($budget, 'unitLaborCost', ''), "class='form-control'");?>
<span class='input-group-addon unify-padding'><?php echo $lang->custom->unitList['cost'];?></span>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->workestimation->totalLaborCost;?></th>
<td>
<div class='input-group'>
<?php echo html::input('totalLaborCost', zget($budget, 'totalLaborCost', ''), "class='form-control'");?>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->workestimation->dayHour;?></th>
<td><?php echo html::input('dayHour', zget($budget, 'dayHour', ''), "class='form-control'");?></td>
</tr>
<tr>
<td></td>
<td colspan='2' class='text-left form-actions'>
<?php echo html::submitButton();?>
<?php echo html::backButton();?>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<script>
$(function()
{
$('#useScale').click(function()
{
$('#scale').val('<?php echo $programScale;?>').keyup();
});
$(':input').keyup(function()
{
duration = parseFloat($('#scale').val()) * parseFloat($('#productivity').val());
if(!isNaN(duration)) $('#duration').val(duration);
if(isNaN(duration)) $('#duration').val('');
totalLaborCost = parseFloat($('#unitLaborCost').val()) * parseFloat($('#duration').val());
if(!isNaN(totalLaborCost)) $('#totalLaborCost').val(totalLaborCost);
if(isNaN(totalLaborCost)) $('#totalLaborCost').val('');
});
$('#scale').change();
});
</script>
<?php include '../../common/view/footer.html.php';?>