fix: deposit slip total row now includes currency and coin

The TOTAL row in the deposit slip grid was only showing the sum of
check items (checksTotal) instead of the full deposit total which
includes currency + coin - cash back.
This commit is contained in:
2026-04-09 16:19:34 -06:00
parent 01ca9a08d1
commit dff5fd4156
+1 -1
View File
@@ -387,7 +387,7 @@ function generateDepositSlip(account, deposit, items) {
drawAmountRow(item.amount || 0, r); drawAmountRow(item.amount || 0, r);
}); });
drawAmountRow(checksTotal, totalRows); drawAmountRow(depositTotal, totalRows);
// ── Rotated left strip elements ───────────────────────────────────────── // ── Rotated left strip elements ─────────────────────────────────────────
// All elements use rotate(90): text flows downward on the page, which reads // All elements use rotate(90): text flows downward on the page, which reads