From 8f14877274410d3be27a00c8a9dc6812f740660f Mon Sep 17 00:00:00 2001 From: renee-png Date: Mon, 8 Jun 2026 13:00:24 -0400 Subject: [PATCH] Balance Sheet: label the YTD earnings equity line "Net Income" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The equity section already carried a permanent current-year earnings line (income − expenses for the fiscal year to date); rename it from "Current Year Earnings" to "Net Income" to match the Movement of Equity report and the requested terminology. No calc change — still YTD income minus expenses, included in Total Equity. Co-Authored-By: Claude Opus 4.8 --- src/pages/accounting/AccountingReportsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/accounting/AccountingReportsPage.tsx b/src/pages/accounting/AccountingReportsPage.tsx index fd8f908..37d86d6 100644 --- a/src/pages/accounting/AccountingReportsPage.tsx +++ b/src/pages/accounting/AccountingReportsPage.tsx @@ -1173,7 +1173,7 @@ function buildBalanceSheet(d: any, p?: any, useCompare?: boolean): StructuredRep const equityAccs = byType("equity"); for (const a of equityAccs) rows.push({ kind: "sub", label: a.name, code: a.code ?? undefined, amount: balOf(a), compare: cmp(balOfP(a)), accountId: a.id }); rows.push({ kind: "sub", label: "Retained Earnings (prior years)", amount: cur.rePrior, compare: cmp(prev?.rePrior) }); - rows.push({ kind: "sub", label: "Current Year Earnings", amount: cur.cye, compare: cmp(prev?.cye) }); + rows.push({ kind: "sub", label: "Net Income", amount: cur.cye, compare: cmp(prev?.cye) }); const totalE = sumBal(equityAccs) + cur.rePrior + cur.cye; const totalEP = prev ? (sumBalP(equityAccs)! + prev.rePrior + prev.cye) : undefined; rows.push({ kind: "total", label: "Total Equity", amount: totalE, compare: cmp(totalEP) });