* refactor: update VAT handling logic for non-registered sellers and improve related comments * chore: gate automated email flows behind 503 responses Disables user-facing access to invoice payment reminders and salary payslip email sending. Underlying lib code (reminder-processor, PDF templates, notification_settings) is preserved for easy re-enable. - Invoice reminders cron route returns 503; settings UI section removed. - Payslip send route returns 503; original implementation kept as _sendPayslipsImpl for future re-enable. - Push notifications were already extension-disabled, no change needed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: remove Recapt feedback widget Strips the third-party Recapt SDK and its floating feedback bubble from the app. The in-app contact form keeps working via the existing email channel (/api/support/contact). Drops the Recapt entries from the CSP and the subprocessor list in the privacy policy. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: reject meaningless rättelser in correctEntry Guard against zero-economic-effect corrections in the storno engine: - Reject when proposed lines net to zero on every account (e.g. 1930 debit 100 / 1930 credit 100), which would erase the original posting without representing any affärshändelse (BFL 5 kap. 5 §). - Reject when proposed lines are an exact multiset match of the original entry — a rättelse must actually change something. New MeaninglessCorrectionError wired through bookkeepingErrorResponse (HTTP 400) and the Swedish error translator. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: add date-range picker to resultat- and balansrapport Adds optional from/to date filtering to the four operational financial reports (resultatrapport, balansrapport, income-statement, balance-sheet) so users can view a month, quarter, or custom range inside a fiscal year without leaving the report. Defaults to YTD; "Hela året" preserves the prior full-period behaviour (URL-identical, cache-stable). - trial-balance engine accepts optional fromDate/toDate, rolling prior in-period activity into IB and clamping period activity to the window - 12 API routes accept and validate from_date/to_date query params - ReportDateRange chip picker persists preset per company, only renders on the four relevant tabs - FiscalYearSelector now emits the period object so the range picker has bounds without an extra fetch - PDF/XLSX filenames reflect the chosen range - Resultatrapport drops the prior-year column when narrowed (full-year vs partial-year would mislead) - 11 new tests (engine + parser); all existing report tests pass Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: add support for marking journal entries as "no document required" - Introduced a new sidecar table `journal_entry_no_doc_required` to track entries that do not require separate documentation (e.g., bank fees, interest). - Implemented API routes for creating and deleting exemptions, including validation and authorization checks. - Added a toggle component in the UI to allow users to mark entries as exempt, with an optional reason. - Updated relevant tests to cover the new functionality, including RLS checks and cascading deletes. - Enhanced existing schemas and types to accommodate the new `vat_amount` field for supplier invoice items. * fix: address PR review findings on no-doc-required + VAT changes - pg-real cascade test wraps DELETE in gnubok.allow_delete='true' txn so the immutability trigger bypass fires (mirrors delete_last_voucher RPC). - Clamp supplier-invoice item vat_amount to <= line_total * vat_rate via Zod refinement (with 1-öre rounding tolerance) so the manual override can't inflate the 2641 debit beyond the statutory ceiling. - groupVatByRate falls back to line_total * rate when stored vat_amount is 0 with a positive rate, so legacy/import paths leaving the column at its NOT NULL DEFAULT 0 don't silently understate ruta 48. - ReportDateRange todayIso() and preset endpoints use local date components instead of toISOString() (UTC) — fixes the midnight-to-02:00 off-by-one that truncated a day from YTD / this-month / this-quarter for Swedish users. - NoDocRequiredToggle restores the previous reason on failed POST/DELETE so the rolled-back toggle state stays consistent with the rendered reason. - Document the company-scoped (not user-scoped) DELETE authorization policy on the no-document-required route. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
139 lines
4.4 KiB
TypeScript
139 lines
4.4 KiB
TypeScript
import type { SupabaseClient } from '@supabase/supabase-js'
|
|
import { generateTrialBalance } from './trial-balance'
|
|
import type { BalanceSheetReport, BalanceSheetSection, TrialBalanceRow } from '@/types'
|
|
|
|
/**
|
|
* Generate Balance Sheet (Balansräkning)
|
|
*
|
|
* Filters to class 1-2 accounts:
|
|
* - Tillgångar (1xxx): Assets
|
|
* - Eget kapital och skulder (2xxx): Equity and liabilities
|
|
*/
|
|
export async function generateBalanceSheet(
|
|
supabase: SupabaseClient,
|
|
companyId: string,
|
|
fiscalPeriodId: string,
|
|
options?: { fromDate?: string; toDate?: string }
|
|
): Promise<BalanceSheetReport> {
|
|
const { rows } = await generateTrialBalance(supabase, companyId, fiscalPeriodId, {
|
|
fromDate: options?.fromDate,
|
|
toDate: options?.toDate,
|
|
})
|
|
|
|
// Filter to balance sheet accounts (class 1-2)
|
|
const balanceRows = rows.filter(
|
|
(r) => r.account_class >= 1 && r.account_class <= 2
|
|
)
|
|
|
|
// Asset sections (class 1)
|
|
const assetSections = buildBalanceSections(
|
|
balanceRows.filter((r) => r.account_class === 1),
|
|
{
|
|
'10': 'Immateriella anläggningstillgångar',
|
|
'11': 'Byggnader och mark',
|
|
'12': 'Maskiner och inventarier',
|
|
'13': 'Finansiella anläggningstillgångar',
|
|
'14': 'Lager och pågående arbeten',
|
|
'15': 'Kundfordringar',
|
|
'16': 'Övriga kortfristiga fordringar',
|
|
'17': 'Förutbetalda kostnader och upplupna intäkter',
|
|
'18': 'Kortfristiga placeringar',
|
|
'19': 'Kassa och bank',
|
|
},
|
|
'debit' // Assets have debit normal balance
|
|
)
|
|
|
|
// Equity and liability sections (class 2)
|
|
const equityLiabilitySections = buildBalanceSections(
|
|
balanceRows.filter((r) => r.account_class === 2),
|
|
{
|
|
'20': 'Eget kapital',
|
|
'21': 'Obeskattade reserver',
|
|
'22': 'Avsättningar',
|
|
'23': 'Långfristiga skulder',
|
|
'24': 'Kortfristiga skulder',
|
|
'25': 'Skatteskulder',
|
|
'26': 'Moms och punktskatter',
|
|
'27': 'Personalens skatter och avgifter',
|
|
'28': 'Övriga kortfristiga skulder',
|
|
'29': 'Upplupna kostnader och förutbetalda intäkter',
|
|
},
|
|
'credit' // Equity/liabilities have credit normal balance
|
|
)
|
|
|
|
// Calculate period result from income/expense accounts (class 3-8)
|
|
// Before year-end closing, this result lives on class 3-8 accounts and must
|
|
// be included in equity for the balance sheet to balance.
|
|
const incomeExpenseRows = rows.filter(
|
|
(r) => r.account_class >= 3 && r.account_class <= 8
|
|
)
|
|
const periodResult = Math.round(
|
|
incomeExpenseRows.reduce(
|
|
(sum, r) => sum + (r.closing_credit - r.closing_debit),
|
|
0
|
|
) * 100
|
|
) / 100
|
|
|
|
// Add period result as a synthetic section under equity if non-zero
|
|
if (Math.abs(periodResult) > 0.005) {
|
|
equityLiabilitySections.push({
|
|
title: 'Årets resultat',
|
|
rows: [
|
|
{
|
|
account_number: '',
|
|
account_name: 'Beräknat resultat',
|
|
amount: periodResult,
|
|
},
|
|
],
|
|
subtotal: periodResult,
|
|
})
|
|
}
|
|
|
|
const totalAssets = assetSections.reduce((sum, s) => sum + s.subtotal, 0)
|
|
const totalEquityLiabilities = equityLiabilitySections.reduce((sum, s) => sum + s.subtotal, 0)
|
|
|
|
return {
|
|
asset_sections: assetSections.filter((s) => s.rows.length > 0),
|
|
total_assets: Math.round(totalAssets * 100) / 100,
|
|
equity_liability_sections: equityLiabilitySections.filter((s) => s.rows.length > 0),
|
|
total_equity_liabilities: Math.round(totalEquityLiabilities * 100) / 100,
|
|
period: { start: '', end: '' },
|
|
}
|
|
}
|
|
|
|
function buildBalanceSections(
|
|
rows: TrialBalanceRow[],
|
|
groupLabels: Record<string, string>,
|
|
normalBalance: 'debit' | 'credit'
|
|
): BalanceSheetSection[] {
|
|
const sections: BalanceSheetSection[] = []
|
|
|
|
for (const [groupCode, title] of Object.entries(groupLabels)) {
|
|
const groupRows = rows.filter((r) => r.account_number.startsWith(groupCode))
|
|
if (groupRows.length === 0) continue
|
|
|
|
const sectionRows = groupRows.map((r) => {
|
|
const amount =
|
|
normalBalance === 'debit'
|
|
? r.closing_debit - r.closing_credit
|
|
: r.closing_credit - r.closing_debit
|
|
|
|
return {
|
|
account_number: r.account_number,
|
|
account_name: r.account_name,
|
|
amount: Math.round(amount * 100) / 100,
|
|
}
|
|
})
|
|
|
|
const subtotal = sectionRows.reduce((sum, r) => sum + r.amount, 0)
|
|
|
|
sections.push({
|
|
title,
|
|
rows: sectionRows.filter((r) => Math.abs(r.amount) > 0.005),
|
|
subtotal: Math.round(subtotal * 100) / 100,
|
|
})
|
|
}
|
|
|
|
return sections
|
|
}
|