remove commented code

This commit is contained in:
2026-03-23 14:15:11 +05:30
parent af15b3934e
commit 13a4c5836e
39 changed files with 17 additions and 8271 deletions

View File

@@ -1,9 +1,11 @@
from flask import Blueprint, render_template, send_from_directory
from flask_login import login_required, current_user
from flask_login import login_required
from model.PmcReport import PmcReport
pmc_report_bp = Blueprint("pmc_report", __name__)
# ---------------- Contractor Report by pmc no ----------------
@pmc_report_bp.route("/pmc_report/<pmc_no>")
@login_required
def pmc_report(pmc_no):
@@ -23,6 +25,7 @@ def pmc_report(pmc_no):
total=data["total"]
)
# ---------------- Contractor Download Report by pmc no ----------------
@pmc_report_bp.route("/download_pmc_report/<pmc_no>")
@login_required
def download_pmc_report(pmc_no):