logdetails
This commit is contained in:
parent
508b3bd678
commit
1912eddc75
@ -2770,7 +2770,8 @@ function populateValueMainFormForEditServiceTax()
|
|||||||
{
|
{
|
||||||
|
|
||||||
var rows = document.getElementById('ServiceTable').rows.length;
|
var rows = document.getElementById('ServiceTable').rows.length;
|
||||||
|
// alert(rows);
|
||||||
|
var editrow = parseFloat(rows)-1;
|
||||||
var TotCgst = 0;
|
var TotCgst = 0;
|
||||||
var TotSgst = 0;
|
var TotSgst = 0;
|
||||||
var TotIgst = 0;
|
var TotIgst = 0;
|
||||||
@ -2810,7 +2811,7 @@ function populateValueMainFormForEditServiceTax()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} while (i < rows);
|
} while (i < editrow);
|
||||||
|
|
||||||
$('#txtTotBasicAmount').val(parseFloat(TotBasicAmout).toFixed(2) );
|
$('#txtTotBasicAmount').val(parseFloat(TotBasicAmout).toFixed(2) );
|
||||||
$('#txtTotCgst').val(parseFloat(TotCgst).toFixed(2) );
|
$('#txtTotCgst').val(parseFloat(TotCgst).toFixed(2) );
|
||||||
|
|||||||
@ -2103,7 +2103,8 @@ SetVatorCST();
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Editchange(){
|
function Editchange(){
|
||||||
ExceedEditQuantityCheck();
|
//alert('hi');
|
||||||
|
//ExceedEditQuantityCheck();
|
||||||
if($('#EditQuantity').val() != '' && $('#EditRate').val() != '')
|
if($('#EditQuantity').val() != '' && $('#EditRate').val() != '')
|
||||||
{
|
{
|
||||||
var txtQuantity = parseFloat( $('#EditQuantity').val());
|
var txtQuantity = parseFloat( $('#EditQuantity').val());
|
||||||
@ -4512,6 +4513,7 @@ $('.AddRevenue').click(function(){
|
|||||||
var basicval = $("#txtBasicValue").val();
|
var basicval = $("#txtBasicValue").val();
|
||||||
var Insval = $("#txtInsurance").val();
|
var Insval = $("#txtInsurance").val();
|
||||||
var TotalOrderValue = $("#txtTotalOrderValue").val();
|
var TotalOrderValue = $("#txtTotalOrderValue").val();
|
||||||
|
|
||||||
var service_description = $("#Add_Service_Description").val();
|
var service_description = $("#Add_Service_Description").val();
|
||||||
//alert(service_description);
|
//alert(service_description);
|
||||||
var TotalTaxValue = calculateTaxValue();
|
var TotalTaxValue = calculateTaxValue();
|
||||||
@ -4791,6 +4793,8 @@ function populateValueMainFormForEditRevenueTax()
|
|||||||
|
|
||||||
var rows = document.getElementById('revenueTax').rows.length;
|
var rows = document.getElementById('revenueTax').rows.length;
|
||||||
//alert(rows);
|
//alert(rows);
|
||||||
|
var editrow = parseFloat(rows)-1;
|
||||||
|
//alert(editrow);
|
||||||
var totBasicAmt = 0;
|
var totBasicAmt = 0;
|
||||||
var totDiscountAmt = 0;
|
var totDiscountAmt = 0;
|
||||||
var totPackagingAmt = 0;
|
var totPackagingAmt = 0;
|
||||||
@ -4804,7 +4808,7 @@ function populateValueMainFormForEditRevenueTax()
|
|||||||
do {
|
do {
|
||||||
i += 1;
|
i += 1;
|
||||||
|
|
||||||
|
alert(i);
|
||||||
var tr= document.getElementById(i);
|
var tr= document.getElementById(i);
|
||||||
//alert(tr);
|
//alert(tr);
|
||||||
if(tr != null)
|
if(tr != null)
|
||||||
@ -4837,7 +4841,7 @@ function populateValueMainFormForEditRevenueTax()
|
|||||||
totOrderSummaryAmt = parseFloat(totOrderSummaryAmt ) + parseFloat(TotalVal);
|
totOrderSummaryAmt = parseFloat(totOrderSummaryAmt ) + parseFloat(TotalVal);
|
||||||
}
|
}
|
||||||
|
|
||||||
} while (i < rows);
|
} while (i < editrow);
|
||||||
|
|
||||||
|
|
||||||
$('#txtTotBasicAmount').val(parseFloat(totBasicAmt).toFixed(2) );
|
$('#txtTotBasicAmount').val(parseFloat(totBasicAmt).toFixed(2) );
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user