feat(finance): print-ready statement PDFs (#99 pt.2)#103
Merged
Conversation
- lib/statements-pdf.ts: a paginated A4 table renderer (pdf-lib) that turns any
report Table into a print-ready PDF — first column left-aligned, numeric
columns right-aligned, bold header rule. WinAnsi can't encode ₹ so amounts
render "Rs" (same limitation as the invoice PDF; documented).
- ?format=pdf on /reports/{trial-balance,income-expenditure,balance-sheet,
receipts-payments} alongside xlsx|csv.
- Smoke-tested: valid %PDF, reloads in pdf-lib; route tests assert the pdf/csv
content-types. Suite 361 green.
Completes #99 acceptance (3): Balance Sheet / I&E / R&P as print-ready PDF.
The invoice ₹-glyph fix needs a bundled Unicode TTF (fontkit) — left as a known
limitation, not attempted here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
M3.5 · Task #99 (part 2) — statement PDFs
Completes #99 acceptance (3): Balance Sheet / I&E / R&P as print-ready PDF.
lib/statements-pdf.ts— paginated A4 table renderer (pdf-lib) that turns any reportTableinto a print-ready PDF: first column left-aligned, numeric columns right-aligned, bold header rule, auto page breaks.?format=pdfon/reports/{trial-balance,income-expenditure,balance-sheet,receipts-payments}(alongsidexlsx|csv).%PDF, reloads in pdf-lib as a paged doc; route tests assert theapplication/pdf+text/csvcontent-types.Notes
Suite 361 green. No schema change. This finishes task #99.