Files
accounted/lib/reports/financial-statement-pdf-template.tsx
T
f266c386f3 chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers (#2150)
* chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers

Remove 33 dead files, ~270 unreferenced exports/types, 13 dead i18n
namespaces and 4 unused dependencies; fold byte-identical helper copies
into one canonical home each (lib/utils chunk/sleep/utcDateStamp,
lib/dates/iso, lib/invariants/uuid, lib/xml/escape, lib/reports/sru/format,
lib/pdf/number-text, lib/browser/panel-request, lib/api/v1/body +
v1ValidationError rolled out to ~55 v1 routes, booking-template schemas).

No behaviour change: v1 bodies and status codes, MCP tool schemas, DB
writes and money math are untouched. Naive ore rounding was deliberately
not swapped for roundOre; see DECISIONS.md 2026-09-02 for the full list
of things left alone on purpose.

tsc, lint, 19588 unit tests and check:guards green; antipattern baseline
ratcheted (naive-ore-round 622 -> 620, hand-rolled-invariant 115 -> 113).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

* test(transactions): import RawTransaction from @/types after the ingest re-export removal

CI's type ratchet (check:types, full tsconfig) caught the one test file
that still imported the type through lib/transactions/ingest.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

---------

Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com>
Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-02 11:51:16 +02:00

365 lines
9.2 KiB
TypeScript

import {
Document,
Page,
Text,
View,
StyleSheet,
} from '@react-pdf/renderer'
import { formatDateSv, pdfAmount } from '@/lib/pdf/number-text'
import { formatOrgNumber } from '@/lib/utils'
import type { CompanySettings } from '@/types'
const styles = StyleSheet.create({
page: {
paddingTop: 40,
paddingHorizontal: 40,
// Leave room for the fixed disclaimer + footer at the bottom of every page.
paddingBottom: 120,
fontSize: 10,
fontFamily: 'Helvetica',
},
header: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'flex-start',
marginBottom: 24,
paddingBottom: 14,
borderBottomWidth: 1,
borderBottomColor: '#d4d4d4',
},
titleBlock: {
flex: 1,
},
title: {
fontSize: 20,
fontWeight: 'bold',
color: '#1a1a1a',
marginBottom: 4,
},
subtitle: {
fontSize: 11,
color: '#333',
marginBottom: 2,
},
period: {
fontSize: 10,
color: '#666',
},
companyInfo: {
textAlign: 'right',
},
companyName: {
fontSize: 11,
fontWeight: 'bold',
marginBottom: 2,
},
companyMeta: {
fontSize: 9,
color: '#666',
},
group: {
marginBottom: 18,
},
groupHeading: {
fontSize: 12,
fontWeight: 'bold',
color: '#1a1a1a',
marginBottom: 8,
paddingBottom: 4,
borderBottomWidth: 1,
borderBottomColor: '#1a1a1a',
},
section: {
marginBottom: 8,
},
sectionTitle: {
fontSize: 10,
fontWeight: 'bold',
color: '#444',
marginBottom: 4,
marginTop: 6,
},
row: {
flexDirection: 'row',
paddingVertical: 2,
},
colAccount: {
width: 48,
color: '#666',
fontFamily: 'Courier',
},
colName: {
flex: 1,
color: '#1a1a1a',
paddingRight: 12,
},
colAmount: {
width: 110,
textAlign: 'right',
fontFamily: 'Courier',
color: '#1a1a1a',
},
sectionSubtotalRow: {
flexDirection: 'row',
paddingVertical: 3,
marginTop: 2,
borderTopWidth: 0.5,
borderTopColor: '#d4d4d4',
},
sectionSubtotalLabel: {
flex: 1,
fontStyle: 'italic',
color: '#444',
paddingLeft: 48,
},
sectionSubtotalAmount: {
width: 110,
textAlign: 'right',
fontFamily: 'Courier',
fontStyle: 'italic',
color: '#444',
},
groupTotalRow: {
flexDirection: 'row',
paddingVertical: 6,
marginTop: 6,
borderTopWidth: 1,
borderTopColor: '#1a1a1a',
},
groupTotalLabel: {
flex: 1,
fontWeight: 'bold',
fontSize: 11,
},
groupTotalAmount: {
width: 110,
textAlign: 'right',
fontFamily: 'Courier',
fontWeight: 'bold',
fontSize: 11,
},
summaryBlock: {
marginTop: 20,
paddingTop: 10,
borderTopWidth: 2,
borderTopColor: '#1a1a1a',
},
summaryRow: {
flexDirection: 'row',
paddingVertical: 4,
},
summaryLabel: {
flex: 1,
color: '#1a1a1a',
},
summaryAmount: {
width: 110,
textAlign: 'right',
fontFamily: 'Courier',
},
summaryEmphasisLabel: {
flex: 1,
fontWeight: 'bold',
fontSize: 12,
},
summaryEmphasisAmount: {
width: 110,
textAlign: 'right',
fontFamily: 'Courier',
fontWeight: 'bold',
fontSize: 12,
},
disclaimer: {
position: 'absolute',
bottom: 52,
left: 40,
right: 40,
paddingTop: 6,
paddingBottom: 6,
paddingHorizontal: 10,
borderWidth: 0.8,
borderColor: '#b45309',
backgroundColor: '#fef3c7',
borderRadius: 3,
},
disclaimerTitle: {
fontSize: 8,
fontWeight: 'bold',
color: '#78350f',
marginBottom: 2,
},
disclaimerText: {
fontSize: 7.5,
color: '#78350f',
lineHeight: 1.3,
},
footer: {
position: 'absolute',
bottom: 24,
left: 40,
right: 40,
borderTopWidth: 0.5,
borderTopColor: '#d4d4d4',
paddingTop: 6,
flexDirection: 'row',
justifyContent: 'space-between',
},
footerText: {
fontSize: 8,
color: '#888',
},
})
export interface FinancialStatementSection {
title: string
rows: { account_number: string; account_name: string; amount: number }[]
subtotal: number
}
export interface FinancialStatementGroup {
heading: string
sections: FinancialStatementSection[]
totalLabel: string
total: number
negate?: boolean
}
export interface FinancialStatementSummaryRow {
label: string
amount: number
emphasis?: boolean
}
interface FinancialStatementPDFProps {
title: string
groups: FinancialStatementGroup[]
summary?: FinancialStatementSummaryRow[]
period: { start: string; end: string }
company: CompanySettings
generatedAt: string
}
export function FinancialStatementPDF({
title,
groups,
summary,
period,
company,
generatedAt,
}: FinancialStatementPDFProps) {
const companyDisplayName = company.company_name || ''
const periodLabel = period.start && period.end
? `${formatDateSv(period.start)}: ${formatDateSv(period.end)}`
: ''
return (
<Document>
<Page size="A4" style={styles.page}>
<View style={styles.header} fixed>
<View style={styles.titleBlock}>
<Text style={styles.title}>{title}</Text>
{companyDisplayName && (
<Text style={styles.subtitle}>{companyDisplayName}</Text>
)}
{periodLabel && (
<Text style={styles.period}>Period: {periodLabel}</Text>
)}
</View>
<View style={styles.companyInfo}>
{company.company_name && (
<Text style={styles.companyName}>{company.company_name}</Text>
)}
{company.org_number && (
<Text style={styles.companyMeta}>
Org.nr: {formatOrgNumber(company.org_number)}
</Text>
)}
{company.vat_number && (
<Text style={styles.companyMeta}>VAT: {company.vat_number}</Text>
)}
</View>
</View>
{groups.map((group, gi) => (
<View key={gi} style={styles.group} wrap>
<Text style={styles.groupHeading}>{group.heading}</Text>
{group.sections.length === 0 ? (
<Text style={{ fontSize: 9, color: '#888', fontStyle: 'italic' }}>
Inga poster i perioden.
</Text>
) : (
group.sections.map((section, si) => (
<View key={si} style={styles.section} wrap={false}>
<Text style={styles.sectionTitle}>{section.title}</Text>
{section.rows.map((row, ri) => {
const displayAmount = group.negate ? -row.amount : row.amount
return (
<View key={ri} style={styles.row}>
<Text style={styles.colAccount}>{row.account_number}</Text>
<Text style={styles.colName}>{row.account_name}</Text>
<Text style={styles.colAmount}>{pdfAmount(displayAmount)}</Text>
</View>
)
})}
{section.rows.length > 1 && (
<View style={styles.sectionSubtotalRow}>
<Text style={styles.sectionSubtotalLabel}>Summa {section.title.toLowerCase()}</Text>
<Text style={styles.sectionSubtotalAmount}>
{pdfAmount(group.negate ? -section.subtotal : section.subtotal)}
</Text>
</View>
)}
</View>
))
)}
<View style={styles.groupTotalRow}>
<Text style={styles.groupTotalLabel}>{group.totalLabel}</Text>
<Text style={styles.groupTotalAmount}>
{pdfAmount(group.negate ? -group.total : group.total)}
</Text>
</View>
</View>
))}
{summary && summary.length > 0 && (
<View style={styles.summaryBlock} wrap={false}>
{summary.map((row, i) => (
<View key={i} style={styles.summaryRow}>
<Text style={row.emphasis ? styles.summaryEmphasisLabel : styles.summaryLabel}>
{row.label}
</Text>
<Text style={row.emphasis ? styles.summaryEmphasisAmount : styles.summaryAmount}>
{pdfAmount(row.amount)}
</Text>
</View>
))}
</View>
)}
<View style={styles.disclaimer} fixed>
<Text style={styles.disclaimerTitle}>Arbetsutkast: ej undertecknat</Text>
<Text style={styles.disclaimerText}>
Detta dokument är ett internt arbetsutkast och utgör inte en godkänd
årsredovisning enligt ÅRL 2 kap 7 §. Den formella årsredovisningen ska
undertecknas av samtliga styrelseledamöter och, i förekommande fall, VD
innan den lämnas in till Bolagsverket.
</Text>
</View>
<View style={styles.footer} fixed>
<Text style={styles.footerText}>
{companyDisplayName}
{company.org_number ? ` · ${formatOrgNumber(company.org_number)}` : ''}
</Text>
<Text
style={styles.footerText}
render={({ pageNumber, totalPages }) => `Genererad ${formatDateSv(generatedAt)} · Sida ${pageNumber} av ${totalPages}`}
/>
</View>
</Page>
</Document>
)
}