* Implement company and account deletion features - Add event types for company and account deletion to CoreEvent. - Enhance Supabase middleware to handle company context resolution and cookie management for archived companies. - Create API routes for deleting accounts and companies, including necessary validations and event emissions. - Implement tests for account and company deletion endpoints to ensure proper functionality and error handling. - Add retention notice component to inform users about bookkeeping data retention during destructive actions. - Create database migrations to support soft deletion of companies and anonymization of user accounts, ensuring compliance with retention laws. * feat: enhance account deletion process and update user notifications * Add service client for onboarding completion check and update escape hatch visibility * Enhance invite flow and email handling for company members * Refactor company context and RLS policies for active company isolation - Update `switchCompany` to remove unnecessary revalidation as client handles navigation. - Revise `getActiveCompanyId` to prioritize `user_preferences` and validate against non-archived memberships. - Modify `setActiveCompany` to ensure `user_preferences` is the authoritative source while maintaining cookie compatibility. - Enhance middleware to resolve active company using `user_preferences` and fallback to first non-archived membership. - Introduce new API route `/api/company/current` to fetch the active company ID for cross-tab synchronization. - Implement `CompanyTabSync` component for real-time active company enforcement across tabs. - Create migration for RLS policies to enforce single-active-company isolation using `current_active_company_id()`. * feat: implement viewer role enforcement for write permissions - Added `useCanWrite` hook to determine if the current user has write permissions based on their role in the active company. - Updated various components (JournalEntryForm, CustomerForm, DeadlineForm, etc.) to disable write actions and show a lock icon with a tooltip for users without write permissions. - Introduced `requireWritePermission` function to enforce write permissions at the API level, returning a 403 response for viewers. - Created tests to verify the behavior of the viewer role and write permissions. - Added database migration to enforce read-only access for viewers at the database level.
146 lines
4.4 KiB
TypeScript
146 lines
4.4 KiB
TypeScript
import { createClient } from '@/lib/supabase/server'
|
|
import { NextResponse } from 'next/server'
|
|
import { requireCompanyId } from '@/lib/company/context'
|
|
import { requireWritePermission } from '@/lib/auth/require-write'
|
|
import type { SIEAccount } from '@/lib/import/types'
|
|
|
|
/**
|
|
* Determine account type based on account class (first digit)
|
|
*/
|
|
function getAccountType(accountNumber: string): 'asset' | 'equity' | 'liability' | 'revenue' | 'expense' {
|
|
const firstDigit = parseInt(accountNumber.charAt(0), 10)
|
|
|
|
switch (firstDigit) {
|
|
case 1:
|
|
return 'asset'
|
|
case 2:
|
|
// 20xx-20xx is equity, 21xx-29xx is liability
|
|
const group = parseInt(accountNumber.substring(0, 2), 10)
|
|
return group <= 20 ? 'equity' : 'liability'
|
|
case 3:
|
|
return 'revenue'
|
|
case 4:
|
|
case 5:
|
|
case 6:
|
|
case 7:
|
|
return 'expense'
|
|
case 8:
|
|
// 8xxx can be either revenue (83xx interest income) or expense
|
|
const subGroup = parseInt(accountNumber.substring(0, 2), 10)
|
|
return subGroup >= 83 && subGroup <= 84 ? 'revenue' : 'expense'
|
|
default:
|
|
return 'expense'
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine normal balance based on account type
|
|
*/
|
|
function getNormalBalance(accountType: string): 'debit' | 'credit' {
|
|
switch (accountType) {
|
|
case 'asset':
|
|
case 'expense':
|
|
return 'debit'
|
|
case 'equity':
|
|
case 'liability':
|
|
case 'revenue':
|
|
return 'credit'
|
|
default:
|
|
return 'debit'
|
|
}
|
|
}
|
|
|
|
/**
|
|
* POST /api/import/sie/create-accounts
|
|
* Create missing accounts from SIE file definitions
|
|
*/
|
|
export async function POST(request: Request) {
|
|
const supabase = await createClient()
|
|
|
|
const {
|
|
data: { user },
|
|
} = await supabase.auth.getUser()
|
|
|
|
if (!user) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const writeCheck = await requireWritePermission(supabase, user.id)
|
|
if (!writeCheck.ok) return writeCheck.response
|
|
|
|
const companyId = await requireCompanyId(supabase, user.id)
|
|
|
|
try {
|
|
const body = await request.json()
|
|
const accounts: SIEAccount[] = body.accounts
|
|
|
|
if (!accounts || !Array.isArray(accounts) || accounts.length === 0) {
|
|
return NextResponse.json({ error: 'Inga konton att skapa.' }, { status: 400 })
|
|
}
|
|
|
|
// Prepare accounts for upsert (idempotent — safe to retry)
|
|
const accountsToUpsert = accounts.map(account => {
|
|
const accountClass = parseInt(account.number.charAt(0), 10) || 1
|
|
const accountGroup = account.number.substring(0, 2)
|
|
const accountType = getAccountType(account.number)
|
|
const normalBalance = getNormalBalance(accountType)
|
|
|
|
return {
|
|
user_id: user.id,
|
|
company_id: companyId,
|
|
account_number: account.number,
|
|
account_name: account.name,
|
|
account_class: accountClass,
|
|
account_group: accountGroup,
|
|
account_type: accountType,
|
|
normal_balance: normalBalance,
|
|
plan_type: 'full_bas',
|
|
is_active: true,
|
|
is_system_account: false, // User-created via import
|
|
sort_order: parseInt(account.number, 10) || 0,
|
|
}
|
|
})
|
|
|
|
// Upsert in batches of 100 to avoid timeout
|
|
// ignoreDuplicates skips rows that already exist (no update)
|
|
const batchSize = 100
|
|
let totalCreated = 0
|
|
|
|
for (let i = 0; i < accountsToUpsert.length; i += batchSize) {
|
|
const batch = accountsToUpsert.slice(i, i + batchSize)
|
|
|
|
const { data: upserted, error } = await supabase
|
|
.from('chart_of_accounts')
|
|
.upsert(batch, {
|
|
onConflict: 'company_id,account_number',
|
|
ignoreDuplicates: true,
|
|
count: 'exact',
|
|
})
|
|
.select('account_number')
|
|
|
|
if (error) {
|
|
console.error('Error upserting accounts batch:', error)
|
|
return NextResponse.json({
|
|
error: `Kunde inte skapa konton (batch ${Math.floor(i / batchSize) + 1}): ${error.message}. ${totalCreated} konton skapades innan felet.`,
|
|
created: totalCreated,
|
|
}, { status: 500 })
|
|
}
|
|
|
|
totalCreated += upserted?.length ?? batch.length
|
|
}
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
created: totalCreated,
|
|
message: `Created ${totalCreated} new accounts`,
|
|
})
|
|
|
|
} catch (error) {
|
|
console.error('Create accounts error:', error)
|
|
return NextResponse.json(
|
|
{ error: `Kunde inte skapa konton: ${error instanceof Error ? error.message : 'Okänt fel'}. Försök igen.` },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|