Fix/build (#1041)
* fix(bookkeeping): harden correction account changes * feat(tax): enhance tax deadline generation with new settings and filing methods - Added new company settings: tax_turnover_over_40m, vat_has_eu_trade, vat_filing_method, periodisk_sammanstallning_enabled, and periodisk_sammanstallning_filing_method. - Updated deadline generation logic to accommodate new settings affecting VAT and employer declaration deadlines. - Implemented tests for new functionality, ensuring that completed obligations are preserved and not replaced by new pending rows. - Introduced a cron job to backfill missing tax deadlines for companies with settings but no upcoming deadlines. - Updated API routes for generating tax deadlines and handling cron jobs. - Modified database schema to include new columns for tax filing profiles and constraints for filing methods. * fix(invoices): record credit note reconciliation guard * fix(tax): correct automatic deadline settings * fix(tax): key AGI deadline to VAT taxable base and add storforetag payment deadline The 26th filing day for the skattedeklaration (AGI and VAT together) hinges on one statutory measure, a VAT taxable base above SEK 40 million (SFL 26 kap.), not a separate employer turnover. Drop employer_turnover_over_40m and derive the AGI schedule from vat_registered plus vat_taxable_base_over_40m, so a non-VAT-reporting employer is never shown the 26th when its binding date is the 12th. Also: - add a skatteinbetalning deadline row (12th, 17 January) for storforetag, whose deducted tax and employer contributions are due before the 26th filing date - normalize legally incoherent over-40m flag combinations to the earlier small-company schedule in a follow-up migration - replace hardcoded 27 December dates with the banking-day adjustment - extend the 40m help text to cover the SKV-decided early filing election and the payment-still-on-the-12th rule - document the regeneration race repaired by the daily backfill cron Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(migrations): add AGI and VAT filing logic with employer column removal * feat(settings): implement VAT registration logic and update related flags; enhance deadline handling --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Fable 5
parent
1443235cec
commit
a5e37d3510
@@ -27,7 +27,11 @@
|
||||
import { config } from 'dotenv'
|
||||
config({ path: '.env.local' })
|
||||
import { createClient } from '@supabase/supabase-js'
|
||||
import { generateTaxDeadlinesForUser } from '../lib/tax/deadline-generator'
|
||||
import {
|
||||
DEADLINE_SETTINGS_SELECT,
|
||||
generateTaxDeadlinesForUser,
|
||||
toDeadlineSettings,
|
||||
} from '../lib/tax/deadline-generator'
|
||||
import type { CompanySettingsForDeadlines } from '../lib/tax/deadline-config'
|
||||
|
||||
const APPLY = process.argv.includes('--apply')
|
||||
@@ -45,14 +49,8 @@ const supabase = createClient(supabaseUrl, serviceRoleKey)
|
||||
|
||||
const PAGE = 1000
|
||||
|
||||
interface SettingsRow {
|
||||
interface SettingsRow extends Partial<CompanySettingsForDeadlines> {
|
||||
company_id: string
|
||||
entity_type: CompanySettingsForDeadlines['entity_type']
|
||||
moms_period: CompanySettingsForDeadlines['moms_period']
|
||||
f_skatt: boolean
|
||||
vat_registered: boolean
|
||||
pays_salaries: boolean | null
|
||||
fiscal_year_start_month: number
|
||||
is_sandbox: boolean | null
|
||||
}
|
||||
|
||||
@@ -62,7 +60,7 @@ async function fetchAllSettings(): Promise<SettingsRow[]> {
|
||||
for (;;) {
|
||||
const { data, error } = await supabase
|
||||
.from('company_settings')
|
||||
.select('company_id, entity_type, moms_period, f_skatt, vat_registered, pays_salaries, fiscal_year_start_month, is_sandbox')
|
||||
.select(`${DEADLINE_SETTINGS_SELECT}, is_sandbox`)
|
||||
.order('company_id', { ascending: true })
|
||||
.range(from, from + PAGE - 1)
|
||||
if (error) {
|
||||
@@ -125,14 +123,7 @@ async function main() {
|
||||
continue
|
||||
}
|
||||
|
||||
const settings: CompanySettingsForDeadlines = {
|
||||
entity_type: s.entity_type,
|
||||
moms_period: s.moms_period,
|
||||
f_skatt: s.f_skatt,
|
||||
vat_registered: s.vat_registered,
|
||||
pays_salaries: s.pays_salaries ?? false,
|
||||
fiscal_year_start_month: s.fiscal_year_start_month,
|
||||
}
|
||||
const settings = toDeadlineSettings(s)
|
||||
|
||||
if (DRY_RUN) {
|
||||
// In dry-run we cannot cheaply know the row count without inserting, so we
|
||||
|
||||
Reference in New Issue
Block a user