mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Decimal limit is fixed to 2 as earlier at some values the decimal limit were crossing this limit
28 lines
685 B
JavaScript
28 lines
685 B
JavaScript
function update_price($this){
|
|
var id = $this.data('id');
|
|
|
|
// Calculate price for row
|
|
var value = $this.val();
|
|
var price = $('#price_' + id).text();
|
|
$('#total_row_' + id).text((value * price).toFixed(2));
|
|
|
|
// Calculate total price
|
|
var total = 0;
|
|
$('.total_row').each(function( index ) {
|
|
total += parseFloat($(this).text());
|
|
});
|
|
$('#total_price').text(total.toFixed(2));
|
|
}
|
|
|
|
$( document ).ready(function() {
|
|
$('.quantity').each(function() {
|
|
update_price($(this));
|
|
});
|
|
|
|
$('.quantity').change(function() {
|
|
update_price($(this));
|
|
});
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
});
|
|
});
|