diff --git a/.env b/.env index 6ef70f0..246791d 100644 --- a/.env +++ b/.env @@ -21,5 +21,5 @@ DB_HOST=127.0.0.1 DB_PORT=3306 DB_NAME=test_income_taxdb DB_USER=root -DB_PASSWORD=root +DB_PASSWORD=tiger diff --git a/static/js/ao_calc.js b/static/js/ao_calc.js index 0241981..79796ad 100644 --- a/static/js/ao_calc.js +++ b/static/js/ao_calc.js @@ -1,107 +1,150 @@ document.addEventListener("DOMContentLoaded", function () { + function getValue(id) { + var el = document.getElementsByName(id)[0]; + return el ? parseFloat(el.value) || 0 : 0; + } - function getValue(id) { - var el = document.getElementsByName(id)[0]; - return el ? parseFloat(el.value) || 0 : 0; + function setValue(id, val) { + var el = document.getElementsByName(id)[0]; + if (el) el.value = Number(val).toFixed(2); + } + + window.calculate = function () { + // --- BASIC INPUTS --- + var gross_total_income = getValue("gross_total_income"); + var disallowance_14a = getValue("disallowance_14a"); + var disallowance_37 = getValue("disallowance_37"); + + // -- total gross income -- + var gross_total = gross_total_income + disallowance_37 + disallowance_14a; + setValue("gti_as_per_ao", gross_total); + // console.log("gross_total income:: " + gross_total) + + // --- DEDUCTIONS --- + var d80_business = getValue("deduction_80ia_business"); + var d80_misc = getValue("deduction_80ia_misc"); + var d80_other = getValue("deduction_80ia_other"); + var d80_sec37 = getValue("deduction_sec37_disallowance"); + + // -- TAX A CALCULATIONS -- + var per_a = getValue("per_a"); + var tax_a = getValue("tax_a"); + var per_surcharge_a = getValue("per_surcharge_a"); + var surcharge_a = getValue("surcharge_a"); + var per_cess_a = getValue("per_cess_a"); + var edu_cess_a = getValue("edu_cess_a"); + + // -- TAX b CALCULATIONS -- + + var tax_book_profit = getValue("tax_book_profit"); + console.log(tax_book_profit); + + var per_surcharge_b = getValue("per_surcharge_b"); + var surcharge_b = getValue("surcharge_b"); + var per_cess_b = getValue("per_cess_b"); + var edu_cess_b = getValue("edu_cess_b"); + + var deduction = d80_business + d80_misc + d80_other + d80_sec37 - 1.35; + + var deduction_80g = getValue("deduction_80g"); + + // --- NET TAXABLE INCOME --- + var net_taxable_income = gross_total - deduction - deduction_80g; + setValue("net_taxable_income", net_taxable_income); + + // --- TAX (A)% AMOUNT --- + var tax_a = net_taxable_income * (per_a / 100); + setValue("tax_a", tax_a); + + // --- SURCHARGE (A)% AMOUNT --- + var surcharge_a = tax_a * (per_surcharge_a / 100); + setValue("surcharge_a", surcharge_a); + + // --- CESS (A)% AMOUNT --- + var edu_cess_a = (surcharge_a + tax_a) * (per_cess_a / 100); + setValue("edu_cess_a", edu_cess_a); + + //SUM OF (A)% + var sum_of_a = tax_a + surcharge_a + edu_cess_a; + + setValue("sum_of_a", sum_of_a); + + //----------------------------------------------------------------------------------------------------------- + //----------------------------------------------------------------------------------------------------------- + + // --- SURCHARGE (B)% AMOUNT --- + var surcharge_b = tax_book_profit * (per_surcharge_b / 100); + setValue("surcharge_b", surcharge_b); + + // --- CESS (B)% AMOUNT --- + var edu_cess_b = (surcharge_b + tax_book_profit) * (per_cess_b / 100); + setValue("edu_cess_b", edu_cess_b); + + //SUM OF (B)% + var sum_of_b = tax_book_profit + surcharge_b + edu_cess_b; + + setValue("sum_of_b", sum_of_b); + + // --- TAX PAYABLE (18.5%) --- + var tax185 = getValue("tax_book_profit_18_5"); + + // --- Education Cess 3% --- + var tax_payable = tax_a > tax_book_profit ? tax_a : tax_book_profit; + setValue("tax_payable", tax_payable); + + // --- SURCHARGE --- + var percent = getValue("persentage"); + var surcharge = tax_payable * (percent / 100); + setValue("surcharge", surcharge); + + // --- EDUCATION CESS --- + var per_cess = getValue("persentage_cess"); + var edu_cess = (tax_payable + surcharge) * (per_cess / 100); + setValue("edu_cess", edu_cess); + + // --- total tax payable --- + var total_tax_payable = sum_of_a > sum_of_b ? sum_of_a : sum_of_b; + setValue("total_tax_payable", total_tax_payable); + + // // --- mat_credit_created --- new + // setValue("mat_credit_created", Math.max(tax185 - total_tax_payable, 0)); + // // --- mat credit_utilized --- new + // setValue("mat_credit_utilized", Math.max(total_tax_payable - tax185, 0)); + + // --- MAT credit and utilized --- + var a = sum_of_a; + var b = sum_of_b; + var result = 0; + var zero = 0; + if (b > a) { + result = a - b; + setValue("mat_credit_created", result); + setValue("mat_credit_utilized", zero); } - function setValue(id, val) { - var el = document.getElementsByName(id)[0]; - if (el) el.value = Number(val).toFixed(2); + if (a > b) { + result = b - a; + setValue("mat_credit_utilized", result); + setValue("mat_credit_created", zero); } - window.calculate = function () { + // --- FINAL TAX --- + var mat_credit_uti = getValue("mat_credit_utilized"); + var interest_234c = getValue("interest_234c"); - // --- BASIC INPUTS --- - var gross_total_income = getValue("gross_total_income"); - var disallowance_14a = getValue("disallowance_14a"); - var disallowance_37 = getValue("disallowance_37"); + // var total_tax = total_tax_payable + mat_credit + interest_234c; + var total_tax = total_tax_payable + interest_234c - mat_credit_uti; + setValue("total_tax", total_tax); - // -- total gross income -- - var gross_total = gross_total_income + disallowance_37 + disallowance_14a - // console.log("gross_total income:: " + gross_total) + // --- ASSESSMENT --- + var adv_tax = getValue("advance_tax"); + var tds = getValue("tds"); + var tcs = getValue("tcs"); + var tax_on_regular_assessment = getValue("tax_on_assessment"); - // --- DEDUCTIONS --- - var d80_business = getValue("deduction_80ia_business"); - var d80_misc = getValue("deduction_80ia_misc"); - var d80_other = getValue("deduction_80ia_other"); - var d80_sec37 = getValue("deduction_sec37_disallowance"); + var all_tax = adv_tax + tds + tcs + tax_on_regular_assessment; - var deduction = d80_business + d80_misc + d80_other + d80_sec37 - 1.35; - - var deduction_80g = getValue("deduction_80g"); - - // --- NET TAXABLE INCOME --- - var net_taxable_income = gross_total - deduction - deduction_80g; - setValue("net_taxable_income", net_taxable_income); - - // --- TAX 30% --- - var tax30 = net_taxable_income * 0.30; - setValue("tax_30_percent", tax30); - - // --- TAX PAYABLE (18.5%) --- - var tax185 = getValue("tax_book_profit_18_5"); - - // --- Education Cess 3% --- - var tax_payable = (tax30 > tax185) ? tax30 : tax185; - setValue("tax_payable", tax_payable); - - // --- SURCHARGE --- - var percent = getValue("persentage"); - var surcharge = tax_payable * (percent / 100); - setValue("surcharge", surcharge); - - // --- EDUCATION CESS --- - var per_cess = getValue("persentage_cess"); - var edu_cess = (tax_payable + surcharge) * (per_cess / 100); - setValue("edu_cess", edu_cess); - - // --- total tax payable --- - var total_tax_payable = tax_payable + surcharge + edu_cess; - setValue("total_tax_payable", total_tax_payable); - - // // --- mat_credit_created --- new - // setValue("mat_credit_created", Math.max(tax185 - total_tax_payable, 0)); - // // --- mat credit_utilized --- new - // setValue("mat_credit_utilized", Math.max(total_tax_payable - tax185, 0)); - - // --- MAT credit and utilized --- - var a = tax185 - var b = total_tax_payable - var result = 0 - if (a > b) { - result = a - b - setValue("mat_credit_created", result); - } - else { - setValue("mat_credit_created", result); - } - - if (b > a) { - result = b - a - setValue("mat_credit_utilized", result); - } - else { - setValue("mat_credit_utilized", result); - } - - // --- FINAL TAX --- - var mat_credit = getValue("mat_credit_utilized"); - var interest_234c = getValue("interest_234c"); - - // var total_tax = total_tax_payable + mat_credit + interest_234c; - var total_tax = total_tax_payable - mat_credit + interest_234c; - setValue("total_tax", total_tax); - - // --- ASSESSMENT --- - var adv_tax = getValue("advance_tax"); - var tds = getValue("tds"); - var tcs = getValue("tcs"); - var tax_on_regular_assessment = getValue("tax_on_assessment"); - - var all_tax = adv_tax + tds + tcs + tax_on_regular_assessment; - - var refund = total_tax - all_tax; - setValue("refund", refund); - }; + var refund = total_tax - all_tax; + setValue("refund", refund); + }; }); diff --git a/templates/add_ao.html b/templates/add_ao.html index c5bef34..c5d3f32 100644 --- a/templates/add_ao.html +++ b/templates/add_ao.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% block title %}Add New AO Record{% endblock %} + {% block extra_css %} @@ -8,8 +9,7 @@ {% block content %}
- -

New Assessing Officer Form

+

New AO Form

@@ -27,7 +27,6 @@
-
@@ -42,6 +41,12 @@
+
+
+ + +
+
@@ -54,13 +59,12 @@
- +
-
Less: Deduction 80G:
- -
-
- -
- - + + +
+
+ +
+
+ +
- - + +
+
+ + +
+
+ + +
+ +
+ +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+ +
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- -
@@ -134,9 +180,12 @@
-
- - + +
+
+ + +
@@ -162,11 +211,10 @@
- +
-
@@ -183,11 +231,9 @@
- - {% endblock %} {% block extra_js %}