* Finish task #9095.

This commit is contained in:
tianshujie98
2021-01-26 14:10:23 +08:00
parent 704c2b0bb0
commit 570b32a2d4
8 changed files with 365 additions and 306 deletions
+44 -12
View File
@@ -3,6 +3,10 @@
<?php js::set('storyPoint', $lang->custom->conceptOptions->hourPoint[1]);?>
<?php js::set('functionPoint', $lang->custom->conceptOptions->hourPoint[2]);?>
<?php js::set('efficiency', $lang->custom->unitList['efficiency']);?>
<?php js::set('convertRelationTitle', $lang->custom->convertRelationTitle);?>
<?php js::set('convertRelationTips', $lang->custom->convertRelationTips);?>
<?php js::set('notempty', sprintf($this->lang->error->notempty, $this->lang->custom->scaleFactor));?>
<?php js::set('notNumber', sprintf($this->lang->error->float, $this->lang->custom->scaleFactor));?>
<?php js::set('unit', $unit);?>
<?php
$lang->custom->object = array();
@@ -11,6 +15,7 @@ $lang->custom->system[] = 'estimate';
?>
<style>
.unify-padding{width:94px;}
#title{font-weight: 700;}
</style>
<div id='mainContent' class='main-row'>
<div class='main-col main-content'>
@@ -26,17 +31,6 @@ $lang->custom->system[] = 'estimate';
<td class='w-350px'><?php echo html::radio('hourPoint', $lang->custom->conceptOptions->estimateUnit, $unit);?></td>
<td></td>
</tr>
<tr class='hidden' id='convertRelations'>
<th class='w-150px'><?php echo $lang->custom->one . $lang->custom->conceptOptions->hourPoint[$unit];?></th>
<td>
<div class='input-group w-300px'>
<span class='input-group-addon'><?php echo "=";?></span>
<?php echo html::input('scaleFactor', $scaleFactor, "class='form-control' required");?>
<span class='input-group-addon unify-padding'></span>
</div>
</td>
<td></td>
</tr>
<?php $hidden = $unit == 0 ? 'hidden' : '';?>
<tr class="efficiency <?php echo $hidden;?>">
<th class='w-150px'><?php echo $lang->custom->estimateEfficiency;?></th>
@@ -98,10 +92,48 @@ $lang->custom->system[] = 'estimate';
<td></td>
</tr>
<tr>
<td colspan='2' class='text-center'><?php echo html::submitButton();?></td>
<td colspan='2' class='text-center'>
<?php echo html::hidden('scaleFactor', '')?>
<?php echo html::submitButton();?>
</td>
</tr>
</table>
</form>
</div>
</div>
<div class="modal fade" id="convertRelations">
<div class="modal-dialog mw-500px">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id='title'><?php echo $lang->custom->convertRelationTitle;?></h4>
</div>
<div class="modal-body">
<form>
<table class='table table-form'>
<tr>
<th class='w-80px'><?php echo $lang->custom->oneUnit;?></th>
<td>
<div class='input-group w-300px'>
<span class='input-group-addon'><?php echo "=";?></span>
<?php echo html::input('factor', $scaleFactor, "class='form-control' required");?>
<span class='input-group-addon unify-padding'></span>
</div>
</td>
</tr>
<tr>
<td colspan='2'><div class='alert alert-info no-margin' id='tips'><?php echo $lang->custom->convertRelationTips;?></div></td>
</tr>
<tr>
<td colspan='2' class='text-center'>
<?php $gobackURL = $this->createLink('custom', 'estimate');?>
<?php echo html::commonButton($lang->save, 'onclick = "setScaleFactor();"', 'btn btn-primary btn-wide');?>
<?php echo html::a($gobackURL, $lang->goback, '', "class='btn btn-back btn-wide'");?>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>