changes of ITAT from new desing and sql insert update proce chnage code of v2

This commit is contained in:
2026-01-06 15:52:08 +05:30
parent a65e7efa63
commit 91b7932a2f
26 changed files with 516 additions and 1119 deletions

View File

@@ -17,10 +17,7 @@ document.addEventListener("DOMContentLoaded", function () {
var disallowance_14a = getValue("disallowance_14a");
var disallowance_37 = getValue("disallowance_37");
// // Auto-calculations (your logic)
// setValue("gross_total_income", disallowance_37 + gross_total_income);
// setValue("disallowance_37", disallowance_14a + disallowance_37);
// -- total gross income ---
var gross_total = gross_total_income + disallowance_37 + disallowance_14a
console.log("gross_total income:: " + gross_total)
@@ -71,11 +68,11 @@ document.addEventListener("DOMContentLoaded", function () {
var adv_tax = getValue("advance_tax");
var tds = getValue("tds");
var tcs = getValue("tcs");
var tax_on_regular_assessment = getValue("tax_on_assessment");
var tax_on_assessment = adv_tax + tds + tcs;
setValue("tax_on_assessment", tax_on_assessment);
var all_tax = adv_tax + tds + tcs + tax_on_regular_assessment;
var refund = total_tax - tax_on_assessment;
var refund = total_tax - all_tax;
setValue("refund", refund);
};
});