mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
While buying the ticket, user was only able to see the integer part in total.So in javascript parseInt was replaced with parseFloat to show the decimal part too Fixes https://github.com/openSUSE/osem/issues/1702
28 lines
661 B
JavaScript
28 lines
661 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);
|
|
|
|
// Calculate total price
|
|
var total = 0;
|
|
$('.total_row').each(function( index ) {
|
|
total += parseFloat($(this).text());
|
|
});
|
|
$('#total_price').text(total);
|
|
}
|
|
|
|
$( document ).ready(function() {
|
|
$('.quantity').each(function() {
|
|
update_price($(this));
|
|
});
|
|
|
|
$('.quantity').change(function() {
|
|
update_price($(this));
|
|
});
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
});
|
|
});
|