<style>
input.result,
input.colvo {
border: 0;
text-align: center;
background-color: rgba(255, 255 ,255, .15);
}
input.result {
text-align: left;
background-color: rgba(255, 255 ,255, 0);
}
input.price {
display: none;
}
input.result,
input.price,
.first {
pointer-events:none;
}
</style>
<table class="first table table-hover">
<thead class="thead-light">
<tr>
<th scope="col">Показатель</th>
<th scope="col">Стоимость анализов</th>
<th scope="col" class="text-secondary">Количество анализов <sup><a href="#t--two" style="cursor: help;text-decoration: none;" class="text-danger" data-toggle="tooltip" data-placement="top" title="Максимальное количество проводимых анализов - 50">**</a></sup></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table class="table table-hover">
<thead class="thead-light">
<tr>
<th scope="col" style="width: 30%">Показатель</th>
<th scope="col" style="width: 20%">Время исполнения*</th>
<th scope="col"style="width: 20%">Стоимость за единицу</th>
<th scope="col" style="width: 30%">Введите коичество анализов <sup style="color:#990000">макс. 50*</sup></th>
</tr>
</thead>
<tbody>
<tr>
<td>Итоговая сумма: </td>
<td></td>
<td><input id="allresult" value="0"> ₽</td>
<td></td>
</tr>
<tr>
<td>1,1,2,2-тетрахлорэтан</td>
<td>1,5 часа</td>
<td><input class="result" value=""></td>
<td ><input class="colvo" value="0" type="number" min="0" max="50" step="1"> <input class="price" value="1500"></td>
</tr>
<tr>
<td>1,1,2-трихлорэтан</td>
<td>1,5 часа</td>
<td><input class="result " value=""></td>
<td ><input class="colvo" value="0" type="number" min="0" max="50" step="1"> <input class="price" value="1500"></td>
</tr>
</tbody>
</table>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('.colvo').on('input',function(){
var targetTable = $('table.first tbody');
targetTable.html('');
var par = $(this).parent().parent(),
res = $('#allresult');
par.find('.result').val(par.find('.price').val()*$(this).val());
res.val(0);
$('.result').each(function(ind, el) {
var p = $(el).parent().parent();
res.val(+res.val() + +el.value);
if(+el.value > 0) {
$(el).parent().parent().clone().appendTo(targetTable);
}
});
res.parent().parent().clone().appendTo(targetTable);
});
});
</script>