FIX_The premium has been calculated as the total premium, but it should display only the premium without GST.

This commit is contained in:
VENKATESHWARAN 2025-11-28 15:55:57 +05:30
parent cdabe7673e
commit 340541ef45

View File

@ -554,7 +554,7 @@ $(document).ready(function() {
};
// Compute totals by column index
var totalPremium = getTotal(21);
var totalPremium = getTotal(20);
var totalRewards = getTotal(24);
var totalIrda = getTotal(25);
var totalBilled = getTotal(26);
@ -635,5 +635,10 @@ function appendTableData(data) {
});
}
$('table tbody').on('click', 'td', function () {
var index = $(this).index();
console.log('Clicked TD index:', index);
});
</script>