modification of report, froms, models
This commit is contained in:
@@ -108,7 +108,7 @@ class AOHandler:
|
||||
"deduction_sec37_disallowance": "On Sec 37 Disallowance",
|
||||
"deduction_80g": "Less: Deduction u/s 80G",
|
||||
"net_taxable_income": "Net Taxable Income",
|
||||
"-" : "-",
|
||||
"--" : "-",
|
||||
"per_tax_a" : "Per% Tax @(A)",
|
||||
"tax_a_cal" : "Tax cal(A)",
|
||||
"per_surcharge_a" : "Per% surcharge @(A)",
|
||||
@@ -116,7 +116,7 @@ class AOHandler:
|
||||
"per_cess_a" : "Per% cess(A)",
|
||||
"edu_cess_a_cal" : "Edu cess cal(A)",
|
||||
"sum_of_a" : "Sum of tax_cal(A)",
|
||||
"-" : "-",
|
||||
"---" : "-",
|
||||
"per_tax_b" : "Per% Tax @(B)",
|
||||
"tax_b_cal" : "Tax cal(B)",
|
||||
"per_surcharge_b" : "Per% surcharge @(B)",
|
||||
|
||||
@@ -103,7 +103,7 @@ class CITHandler:
|
||||
"deduction_sec37_disallowance": "On Sec 37 Disallowance",
|
||||
"deduction_80g": "Less: Deduction u/s 80G",
|
||||
"net_taxable_income": "Net Taxable Income",
|
||||
"-" : "-",
|
||||
"--" : "-",
|
||||
"per_tax_a" : "Per% Tax @(A)",
|
||||
"tax_a_cal" : "Tax cal(A)",
|
||||
"per_surcharge_a" : "Per% surcharge @(A)",
|
||||
@@ -111,7 +111,7 @@ class CITHandler:
|
||||
"per_cess_a" : "Per% cess(A)",
|
||||
"edu_cess_a_cal" : "Edu cess cal(A)",
|
||||
"sum_of_a" : "Sum of tax_cal(A)",
|
||||
"-" : "-",
|
||||
"---" : "-",
|
||||
"per_tax_b" : "Per% Tax @(B)",
|
||||
"tax_b_cal" : "Tax cal(B)",
|
||||
"per_surcharge_b" : "Per% surcharge @(B)",
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
from flask import (
|
||||
render_template, request, send_file, jsonify
|
||||
)
|
||||
from flask import render_template, request, send_file, jsonify
|
||||
from werkzeug.utils import secure_filename
|
||||
import pandas as pd
|
||||
import os
|
||||
@@ -111,10 +109,7 @@ class DocumentHandler:
|
||||
|
||||
file.save(filepath)
|
||||
|
||||
cursor.callproc(
|
||||
'InsertDocument',
|
||||
[filename, filepath, extension, year, stage]
|
||||
)
|
||||
cursor.callproc('InsertDocument',[filename, filepath, extension, year, stage])
|
||||
|
||||
connection.commit()
|
||||
cursor.close()
|
||||
@@ -124,9 +119,7 @@ class DocumentHandler:
|
||||
# Summary Preview (JSON)
|
||||
# =========================
|
||||
def Summary_preview(self, request):
|
||||
"""
|
||||
Returns JSON preview of summary report for selected year.
|
||||
"""
|
||||
|
||||
year_raw = request.args.get("year")
|
||||
year = self.parse_year(year_raw)
|
||||
|
||||
@@ -403,26 +396,9 @@ class DocumentHandler:
|
||||
workbook = writer.book
|
||||
worksheet = writer.sheets[sheet_name]
|
||||
|
||||
title = workbook.add_format({
|
||||
'bold': True,
|
||||
'font_size': 14,
|
||||
'align': 'center'
|
||||
})
|
||||
|
||||
worksheet.merge_range(
|
||||
0, 0, 0, len(df.columns) - 1,
|
||||
"Laxmi Civil Engineering Services Pvt Ltd",
|
||||
title
|
||||
)
|
||||
|
||||
header = workbook.add_format({
|
||||
'bold': True,
|
||||
'align': 'center',
|
||||
'bg_color': '#007bff',
|
||||
'font_color': 'white',
|
||||
'border': 1
|
||||
})
|
||||
|
||||
title = workbook.add_format({'bold': True,'font_size': 14,'align': 'center'})
|
||||
worksheet.merge_range(0, 0, 0, len(df.columns) - 1,"Laxmi Civil Engineering Services Pvt Ltd",title)
|
||||
header = workbook.add_format({'bold': True,'align': 'center', 'bg_color': '#007bff','font_color': 'white','border': 1 })
|
||||
cell = workbook.add_format({'border': 1})
|
||||
|
||||
for col_num, col_name in enumerate(df.columns):
|
||||
|
||||
@@ -98,7 +98,7 @@ class ITATHandler:
|
||||
"deduction_sec37_disallowance": "On Sec 37 Disallowance",
|
||||
"deduction_80g": "Less: Deduction u/s 80G",
|
||||
"net_taxable_income": "Net Taxable Income",
|
||||
"-" : "-",
|
||||
"--" : "-",
|
||||
"per_tax_a" : "Per% Tax @(A)",
|
||||
"tax_a_cal" : "Tax cal(A)",
|
||||
"per_surcharge_a" : "Per% surcharge @(A)",
|
||||
@@ -106,7 +106,7 @@ class ITATHandler:
|
||||
"per_cess_a" : "Per% cess(A)",
|
||||
"edu_cess_a_cal" : "Edu cess cal(A)",
|
||||
"sum_of_a" : "Sum of tax_cal(A)",
|
||||
"-" : "-",
|
||||
"---" : "-",
|
||||
"per_tax_b" : "Per% Tax @(B)",
|
||||
"tax_b_cal" : "Tax cal(B)",
|
||||
"per_surcharge_b" : "Per% surcharge @(B)",
|
||||
|
||||
@@ -1,11 +1,8 @@
|
||||
import mysql.connector
|
||||
import pandas as pd
|
||||
import io
|
||||
from flask import send_file, render_template, request
|
||||
|
||||
from AppCode.Config import DBConfig
|
||||
|
||||
|
||||
class ITRHandler:
|
||||
|
||||
def __init__(self):
|
||||
@@ -25,16 +22,13 @@ class ITRHandler:
|
||||
def get_itr_by_id(self, id):
|
||||
# Call stored procedure
|
||||
self.cursor.callproc('GetITRById', [id])
|
||||
|
||||
# Fetch result
|
||||
records = []
|
||||
for result in self.cursor.stored_results():
|
||||
records = result.fetchall()
|
||||
|
||||
if records:
|
||||
print(records[0])
|
||||
return records[0] # return single record
|
||||
|
||||
return None
|
||||
|
||||
|
||||
@@ -51,10 +45,10 @@ class ITRHandler:
|
||||
]
|
||||
|
||||
values = [data.get(col, 0) for col in columns]
|
||||
|
||||
# Call your stored procedure
|
||||
self.cursor.callproc("InsertITR", values)
|
||||
self.conn.commit()
|
||||
|
||||
except Exception as e:
|
||||
self.conn.rollback()
|
||||
raise e
|
||||
@@ -112,7 +106,7 @@ class ITRHandler:
|
||||
"deduction_sec37_disallowance": "On Sec 37 Disallowance",
|
||||
"deduction_80g": "Less: Deduction u/s 80G",
|
||||
"net_taxable_income": "Net Taxable Income",
|
||||
"-" : "-",
|
||||
"--" : "-",
|
||||
"per_tax_a" : "Per% Tax @(A)",
|
||||
"tax_a_cal" : "Tax cal(A)",
|
||||
"per_surcharge_a" : "Per% surcharge @(A)",
|
||||
@@ -120,7 +114,7 @@ class ITRHandler:
|
||||
"per_cess_a" : "Per% cess(A)",
|
||||
"edu_cess_a_cal" : "Edu cess cal(A)",
|
||||
"sum_of_a" : "Sum of tax_cal(A)",
|
||||
"-" : "-",
|
||||
"---" : "-",
|
||||
"per_tax_b" : "Per% Tax @(B)",
|
||||
"tax_b_cal" : "Tax cal(B)",
|
||||
"per_surcharge_b" : "Per% surcharge @(B)",
|
||||
@@ -145,7 +139,7 @@ class ITRHandler:
|
||||
"interest_244a_per143" : "Add : Interest u/s 244A as per 143",
|
||||
"refund_received" : "Less : Refund Received on",
|
||||
"balance_receivable" : "Balance Receivable",
|
||||
"Remarks" : "Remarks"
|
||||
"remarks" : "Remarks"
|
||||
}
|
||||
|
||||
# Convert to vertical structures
|
||||
@@ -164,13 +158,8 @@ class ITRHandler:
|
||||
writer.sheets["ITR Report"] = worksheet
|
||||
|
||||
# Formats
|
||||
title_fmt = workbook.add_format({
|
||||
"bold": True, "align": "center", "valign": "vcenter",
|
||||
"font_size": 14
|
||||
})
|
||||
header_fmt = workbook.add_format({
|
||||
"bold": True, "border": 1, "align": "center"
|
||||
})
|
||||
title_fmt = workbook.add_format({"bold": True, "align": "center", "valign": "vcenter","font_size": 14})
|
||||
header_fmt = workbook.add_format({"bold": True, "border": 1, "align": "center"})
|
||||
cell_fmt = workbook.add_format({"border": 1})
|
||||
num_fmt = workbook.add_format({"border": 1, "num_format": "#,##0.00"})
|
||||
|
||||
|
||||
@@ -19,37 +19,50 @@ class LoginAuth:
|
||||
# -------------------------------
|
||||
# LOGIN ROUTE
|
||||
# -------------------------------
|
||||
# @self.bp.route('/login', methods=['GET', 'POST'])
|
||||
# def login():
|
||||
# if request.method == 'POST':
|
||||
# username = request.form.get("username")
|
||||
# password = request.form.get("password")
|
||||
# if not username or not password:
|
||||
# flash("Username and password are required!", "danger")
|
||||
# return render_template("login.html")
|
||||
# user_dn = f"uid={username},{self.BASE_DN}"
|
||||
# server = Server(self.LDAP_SERVER, get_info=ALL)
|
||||
# try:
|
||||
# # Attempt LDAP bind
|
||||
# conn = Connection(server, user=user_dn, password=password, auto_bind=True)
|
||||
# if conn.bound:
|
||||
# session['user'] = username
|
||||
# flash(f"Login successful! Welcome {username}", "success")
|
||||
# return redirect(url_for('welcome'))
|
||||
# else:
|
||||
# flash("Invalid username or password!", "danger")
|
||||
# except LDAPException as e:
|
||||
# flash(f"LDAP login failed: {str(e)}", "danger")
|
||||
# finally:
|
||||
# if 'conn' in locals():
|
||||
# conn.unbind()
|
||||
# # GET request: show login form
|
||||
# return render_template("login.html")
|
||||
|
||||
|
||||
# LOGIN ROUTE
|
||||
@self.bp.route('/login', methods=['GET', 'POST'])
|
||||
def login():
|
||||
if request.method == 'POST':
|
||||
username = request.form.get("username")
|
||||
password = request.form.get("password")
|
||||
|
||||
if not username or not password:
|
||||
flash("Username and password are required!", "danger")
|
||||
return render_template("login.html")
|
||||
|
||||
user_dn = f"uid={username},{self.BASE_DN}"
|
||||
server = Server(self.LDAP_SERVER, get_info=ALL)
|
||||
|
||||
try:
|
||||
# Attempt LDAP bind
|
||||
conn = Connection(server, user=user_dn, password=password, auto_bind=True)
|
||||
if conn.bound:
|
||||
# Dummy validation — REPLACE with DB check later
|
||||
if username == "admin" and password == "admin123":
|
||||
session['user'] = username
|
||||
flash(f"Login successful! Welcome {username}", "success")
|
||||
flash("Login successful!", "success")
|
||||
return redirect(url_for('welcome'))
|
||||
else:
|
||||
flash("Invalid username or password!", "danger")
|
||||
except LDAPException as e:
|
||||
flash(f"LDAP login failed: {str(e)}", "danger")
|
||||
finally:
|
||||
if 'conn' in locals():
|
||||
conn.unbind()
|
||||
|
||||
# GET request: show login form
|
||||
return render_template("login.html")
|
||||
|
||||
|
||||
# -------------------------------
|
||||
# LOGOUT ROUTE
|
||||
# -------------------------------
|
||||
|
||||
@@ -38,8 +38,9 @@ class MatCreditHandler:
|
||||
(
|
||||
data["financial_year"],
|
||||
data["mat_credit"],
|
||||
data["opening_balance"],
|
||||
data["balance"],
|
||||
data.get("remarks", "")
|
||||
data.get("remarks", "update on manually on mat credit from ui")
|
||||
)
|
||||
)
|
||||
|
||||
@@ -68,20 +69,21 @@ class MatCreditHandler:
|
||||
# AUTO SAVE MAT FROM ITR (MAIN LOGIC)
|
||||
# --------------------------------------------------
|
||||
@staticmethod
|
||||
def save_from_itr(year, mat_created, mat_utilized, remarks="Auto from"):
|
||||
def save_from_itr(year, mat_created, opening_balance, mat_utilized, remarks):
|
||||
conn = DBConfig.get_db_connection()
|
||||
cur = conn.cursor(dictionary=True)
|
||||
|
||||
try:
|
||||
mat_created = float(mat_created or 0)
|
||||
opening_balance = float(mat_created or 0)
|
||||
mat_utilized = float(mat_utilized or 0)
|
||||
|
||||
balance = mat_created - mat_utilized
|
||||
balance = opening_balance + mat_created - mat_utilized
|
||||
|
||||
# Save / Update MAT Credit
|
||||
cur.callproc(
|
||||
"SaveOrUpdateMatCredit",
|
||||
(year, mat_created, balance, remarks)
|
||||
(year, mat_created, opening_balance, balance, remarks)
|
||||
)
|
||||
|
||||
mat_id = None
|
||||
|
||||
14
main.py
14
main.py
@@ -1,8 +1,7 @@
|
||||
from flask import Flask, render_template, request, redirect, url_for, send_from_directory, abort, flash,send_file ,jsonify
|
||||
from flask import Flask, render_template, request, redirect, url_for, flash,send_file ,jsonify
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
import pandas as pd
|
||||
from werkzeug.utils import secure_filename
|
||||
from datetime import date
|
||||
from AppCode.Config import DBConfig
|
||||
@@ -15,14 +14,13 @@ from AppCode.AOHandler import AOHandler
|
||||
from AppCode.CITHandler import CITHandler
|
||||
from AppCode.ITATHandler import ITATHandler
|
||||
from AppCode.MatCreditHandler import MatCreditHandler
|
||||
import subprocess
|
||||
|
||||
|
||||
|
||||
# Server
|
||||
app = Flask(__name__)
|
||||
app.secret_key=os.getenv("SECRET_KEY")
|
||||
|
||||
# login auth
|
||||
auth = LoginAuth()
|
||||
app.register_blueprint(auth.bp)
|
||||
|
||||
@@ -122,6 +120,7 @@ def add_itr():
|
||||
mat.save_from_itr(
|
||||
year=request.form["year"],
|
||||
mat_created=float(request.form.get("mat_credit_created", 0)),
|
||||
opening_balance=float(request.form.get("opening_balance", 0)),
|
||||
mat_utilized=float(request.form.get("mat_credit_utilized", 0)),
|
||||
remarks="Created via ITR"
|
||||
)
|
||||
@@ -158,8 +157,6 @@ def update_itr(id):
|
||||
return render_template('update_itr.html', record=record, current_date=date.today().isoformat())
|
||||
|
||||
|
||||
|
||||
|
||||
## ===============================================
|
||||
## AO (Assessing Officer) Routes
|
||||
## ===============================================
|
||||
@@ -192,6 +189,7 @@ def add_ao():
|
||||
mat.save_from_itr(
|
||||
year=request.form["year"],
|
||||
mat_created=float(request.form.get("mat_credit_created", 0)),
|
||||
opening_balance=float(request.form.get("opening_balance", 0)),
|
||||
mat_utilized=float(request.form.get("mat_credit_utilized", 0)),
|
||||
remarks="Created via ao"
|
||||
)
|
||||
@@ -264,6 +262,7 @@ def add_cit():
|
||||
mat.save_from_itr(
|
||||
year=request.form["year"],
|
||||
mat_created=float(request.form.get("mat_credit_created", 0)),
|
||||
opening_balance=float(request.form.get("opening_balance", 0)),
|
||||
mat_utilized=float(request.form.get("mat_credit_utilized", 0)),
|
||||
remarks="Created via cit"
|
||||
)
|
||||
@@ -335,6 +334,7 @@ def add_itat():
|
||||
mat.save_from_itr(
|
||||
year=request.form["year"],
|
||||
mat_created=float(request.form.get("mat_credit_created", 0)),
|
||||
opening_balance=float(request.form.get("opening_balance", 0)),
|
||||
mat_utilized=float(request.form.get("mat_credit_utilized", 0)),
|
||||
remarks="Created via ITR"
|
||||
)
|
||||
@@ -524,7 +524,7 @@ def download_summary():
|
||||
# table_name = data.get("table")
|
||||
# year = data.get("year")
|
||||
|
||||
# check_year_obj = YearGet()
|
||||
# check_year_obj = YearGet()ss
|
||||
# result = check_year_obj.CheckYearExists(table_name, year)
|
||||
# check_year_obj.close()
|
||||
# return result
|
||||
|
||||
@@ -11,3 +11,5 @@ openpyxl==3.1.2
|
||||
xlrd==2.0.1
|
||||
|
||||
gunicorn==21.2.0
|
||||
|
||||
XlsxWriter==3.2.0
|
||||
|
||||
@@ -1,132 +1,3 @@
|
||||
/* ================= RESET ================= */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ================= BODY ================= */
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||
background-color: #f4f7f9;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
/* no scroll desktop */
|
||||
}
|
||||
|
||||
/* ================= LINKS ================= */
|
||||
a {
|
||||
text-decoration: none !important;
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
/* ================= NAVBAR ================= */
|
||||
.navbar {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
background-color: #007bff;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
color: white;
|
||||
z-index: 1000;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.nav-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.nav-logo {
|
||||
height: 70px;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
.toggle-btn {
|
||||
font-size: 26px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* ================= SIDEBAR ================= */
|
||||
.sidebar {
|
||||
width: 250px;
|
||||
background: white;
|
||||
height: calc(100vh - 60px);
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
padding-top: 20px;
|
||||
border-right: 1px solid #d6d6d6;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sidebar.hide {
|
||||
left: -250px;
|
||||
}
|
||||
|
||||
.menu-items {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.menu-btn {
|
||||
padding: 14px 20px;
|
||||
font-size: 16px;
|
||||
color: #007bff;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.menu-btn:hover {
|
||||
background: #e9f3ff;
|
||||
}
|
||||
|
||||
.submenu {
|
||||
display: none;
|
||||
background: #f4faff;
|
||||
}
|
||||
|
||||
.submenu a {
|
||||
padding: 12px 35px;
|
||||
display: block;
|
||||
color: #0056b3;
|
||||
}
|
||||
|
||||
/* ================= MAIN ================= */
|
||||
.main {
|
||||
margin-left: 250px;
|
||||
margin-top: 60px;
|
||||
width: calc(100% - 250px);
|
||||
height: calc(100vh - 60px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
/* ✅ vertical center */
|
||||
justify-content: center;
|
||||
/* ✅ horizontal center */
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
/* ================= CONTAINER ================= */
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 680px;
|
||||
/* 🔥 laptop & desktop size */
|
||||
background: #ffffff;
|
||||
padding: 45px 55px;
|
||||
border-radius: 14px;
|
||||
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* ================= HEADING ================= */
|
||||
.container h2 {
|
||||
font-size: 28px;
|
||||
|
||||
@@ -62,6 +62,7 @@ function addRow() {
|
||||
tr.innerHTML = `
|
||||
<td contenteditable="true"></td>
|
||||
<td><input></td>
|
||||
<td><input></td>
|
||||
${utilizedCols}
|
||||
<td><input></td>
|
||||
<td>
|
||||
@@ -88,6 +89,7 @@ function saveRow(btn) {
|
||||
let payload = {
|
||||
financial_year: financialYear,
|
||||
mat_credit: inputs[0].value || 0,
|
||||
opening_balance: inputs[1].value || 0,
|
||||
balance: inputs[inputs.length - 1].value || 0,
|
||||
utilization: []
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2 style="text-align:center;">New AO Form</h2>
|
||||
<h2 style="text-align:center;">New Assessing Officer(AO) Form</h2>
|
||||
<form id="ao" method="POST" enctype="multipart/form-data">
|
||||
<input type="hidden" name="stage" value="ao">
|
||||
<div class="form-group full-width inline-2">
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2 style="text-align:center;">New Income Tax Appellate Tribunal Form</h2>
|
||||
<h2 style="text-align:center;">New Income Tax Appellate Tribunal(ITAT) Form</h2>
|
||||
<form id="itat" method="POST" enctype="multipart/form-data" onsubmit="return showSuccessMessage()">
|
||||
<input type="hidden" name="stage" value="itr">
|
||||
<div class="form-group full-width inline-2">
|
||||
|
||||
@@ -172,7 +172,7 @@
|
||||
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
<label>Less :Mat Credit Created:</label>
|
||||
<label>Add :Mat Credit Created:</label>
|
||||
<input type="number" name="mat_credit_created" step="any" value="0.00" oninput="calculate()" required>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2>Download AO Report</h2>
|
||||
<h2>Download Assessing Officer(AO) Report</h2>
|
||||
<form method="GET" action="{{ url_for('ao_report') }}" target="_blank">
|
||||
<label for="year">Select Year:</label><br>
|
||||
<select name="year" id="year" required>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2 style="text-align: center;">Assessing Officer Records 👨💼</h2>
|
||||
<h2 style="text-align: center;">Assessing Officer(AO) Records 👨💼</h2>
|
||||
<!-- Add AO Record Button -->
|
||||
<div style="text-align: right; margin-bottom: 10px;">
|
||||
<a href="{{ url_for('add_ao') }}" class="btn btn-add">➕ Add AO Record</a>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2 style="text-align: center;">Income Tax Appellate Tribunal Records 📄</h2>
|
||||
<h2 style="text-align: center;">Income Income Tax Appellate Tribunal(ITAT) Records 📄</h2>
|
||||
<div style="text-align: right; margin-bottom: 10px;">
|
||||
|
||||
<a href="{{ url_for('add_itat') }}" class="btn btn-add">➕ Add New Record</a>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2>Download ITAT Report</h2>
|
||||
<h2>Download Income Tax Appellate Tribunal(ITAT) Report</h2>
|
||||
<form method="GET" action="{{ url_for('itat_report') }}" target="_blank">
|
||||
<label for="year">Select Year:</label><br>
|
||||
<select name="year" id="year" required>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2>Download ITR Report</h2>
|
||||
<h2>Download Income Tax Return(ITR) Report</h2>
|
||||
<form method="GET" action="{{ url_for('itr_report') }}" target="_blank">
|
||||
<label for="year">Select Year:</label><br>
|
||||
<select name="year" id="year" required>
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
<tr id="tableHeader">
|
||||
<th>AY</th>
|
||||
<th>MAT Credit</th>
|
||||
<th>Opening balance</th>
|
||||
|
||||
{% for y in added_years %}
|
||||
<th>Utilized {{ y }}</th>
|
||||
@@ -44,6 +45,7 @@
|
||||
<tr>
|
||||
<td contenteditable="false">{{ row.financial_year }}-{{ row.financial_year | int + 1 }}</td>
|
||||
<td><input value="{{ row.mat_credit }}"></td>
|
||||
<td><input value="{{ row.opening_balance }}"></td>
|
||||
|
||||
{% for y in added_years %}
|
||||
<td>
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
<div class="container">
|
||||
<h2>Reports</h2>
|
||||
<ul>
|
||||
<li><a href="{{ url_for('itr_report') }}">→ View ITR Reports</a></li>
|
||||
<li><a href="{{ url_for('ao_report') }}">→ View AO Reports</a></li>
|
||||
<li><a href="{{ url_for('itr_report') }}">→ View Income Tax Return(ITR) Reports</a></li>
|
||||
<li><a href="{{ url_for('ao_report') }}">→ View Assessing Officer(AO) Reports</a></li>
|
||||
<li><a href="{{ url_for('cit_report') }}">→ View CIT Reports</a></li>
|
||||
<li><a href="{{ url_for('itat_report') }}">→ View ITAT Reports</a></li>
|
||||
<li><a href="{{ url_for('itat_report') }}">→ View Income Tax Appellate Tribunal(ITAT) Reports</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -1,169 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>{{ stage }} Reports</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background-color: #f0f2f5;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 960px;
|
||||
margin: 40px auto;
|
||||
padding: 30px;
|
||||
background-color: #fff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #333;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
margin-bottom: 30px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
select {
|
||||
padding: 8px 14px;
|
||||
font-size: 16px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 6px;
|
||||
outline: none;
|
||||
transition: border 0.2s;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
border-color: #007bff;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 20px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding: 12px;
|
||||
border: 1px solid #ddd;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
tr:nth-child(even) td {
|
||||
background-color: #f9fbfc;
|
||||
}
|
||||
|
||||
tr:hover td {
|
||||
background-color: #eef5ff;
|
||||
}
|
||||
|
||||
.btn-download {
|
||||
background-color: #28a745;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 7px 14px;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.btn-download:hover {
|
||||
background-color: #218838;
|
||||
}
|
||||
|
||||
.no-data {
|
||||
text-align: center;
|
||||
color: #777;
|
||||
font-size: 16px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* Back button styling */
|
||||
.back-btn {
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
padding: 10px 18px;
|
||||
background: #6c757d;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
text-decoration: none;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.back-btn:hover {
|
||||
background: #5a6268;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<h2>{{ stage }} Reports</h2>
|
||||
|
||||
<form method="GET">
|
||||
<input type="hidden" name="stage" value="{{ stage }}">
|
||||
<label for="year">Select Year:</label>
|
||||
<select name="year" id="year" onchange="this.form.submit()">
|
||||
<option value="">-- All Years --</option>
|
||||
{% for y in years %}
|
||||
<option value="{{ y }}" {% if y==request.args.get('year') %}selected{% endif %}>{{ y }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</form>
|
||||
|
||||
{% if documents %}
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Year</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for doc in documents %}
|
||||
<tr>
|
||||
<td>{{ doc.year }}</td>
|
||||
<td>
|
||||
<a class="btn-download" href="{{ url_for('download_report', doc_id=doc.id) }}">Download</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% else %}
|
||||
<p class="no-data">No reports found for this selection.</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2>Update AO Record for Year {{ record.year }} - {{ record.year + 1 }}</h2>
|
||||
<h2>Update Assessing Officer(AO) Record for Year {{ record.year }} - {{ record.year + 1 }}</h2>
|
||||
<form method="POST" action="{{ url_for('update_ao', id=record.id) }}">
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
{% block content %}
|
||||
|
||||
<div class="container">
|
||||
<h2>Update ITAT Record for Year {{ record.year }}</h2>
|
||||
<h2>Update Income Tax Appellate Tribunal(ITAT) Record for Year {{ record.year }}</h2>
|
||||
<form method="POST" action="{{ url_for('update_itat', id=record.id) }}">
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h2>Update ITR Record for Year {{record.year}} - {{record.year+1}}</h2>
|
||||
<h2>Update Income Tax Return (ITR) Record for Year {{record.year}} - {{record.year+1}}</h2>
|
||||
<form method="POST" action="{{ url_for('update_itr', id=record.id) }}">
|
||||
<div class="form-group full-width inline-2">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user