TaxEngine Core — Automated Statutory Reconciler & Audit Engine
End-to-end automated reconciliation engine that ingests multi-format purchase registers and cross-matches them against GSTR-2B government data, identifying discrepancy anomalies in milliseconds.
def reconcile_itc_entry(books_entry, portal_2b):
tax_diff = abs(books_entry.tax - portal_2b.tax)
if tax_diff < 0.01 and books_entry.gstin == portal_2b.gstin:
return Status.MATCHED_RECONCILED
return Status.FLAG_MISMATCH