c6c86cded4
* fix(booking-templates): scope template list to the active company GET /api/settings/booking-templates relied solely on the btl_select RLS policy, which is membership-wide (user_company_ids) and returns templates from every company the user belongs to. A user who owns multiple companies saw all their templates merged regardless of which company was active. Narrow the list in the API layer (mirroring counterparty-templates) to system + the active company + the active company's team. RLS stays the security backstop; this fixes the cross-company merge within a single user's own view (it was never a cross-tenant data leak). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(import): show proper message for duplicate bank file upload The bank file import page mis-parsed the structured error envelope ({ error: { code, message, details } }), so a BANK_FILE_DUPLICATE (409) fell through to the generic "Kunde inte läsa filen" fallback. The upload step also hardcoded that same string as the error heading, so duplicates were doubly misreported as parse failures. - Parse the structured envelope by error.code; surface error.message for all codes instead of rendering the error object. - Add a dedicated BANK_FILE_DUPLICATE message using the importedAt / importedCount details the route already returns. - Add an optional errorTitle prop to BankFileUploadStep (defaults to the previous text) and pass "Filen är redan importerad" for dupes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(tests): add comprehensive tests for recordateEntry, inbox-linking, and external-id handling - Implemented unit tests for recordateEntry in the bookkeeping module to validate various scenarios including date changes, non-posted entries, and fiscal period restrictions. - Created tests for inbox-linking status in pending operations to ensure correct handling of invoice inbox items and supplier invoices, addressing historical bugs related to status updates. - Added tests for external-id utilities to ensure consistent handling of monetary amounts and deduplication keys across different transaction sources. - Introduced new functions in external-id.ts for stable external ID generation and normalization of imported descriptions, enhancing transaction deduplication reliability. feat(migrations): add new database migrations for transaction handling - Created migration to exclude storno and correction vouchers from unmatched GL lines, ensuring accurate reconciliation. - Added a migration to preserve original bank transaction descriptions in a new immutable column, allowing for user edits while maintaining audit trails and deduplication integrity. * feat(migrations): add function to exclude storno/correction vouchers from unmatched GL lines * feat(transactions): enhance transaction handling with improved description normalization and preloaded original entries --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
132 lines
4.2 KiB
TypeScript
132 lines
4.2 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useState } from 'react'
|
|
import { useTranslations } from 'next-intl'
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
} from '@/components/ui/dialog'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Label } from '@/components/ui/label'
|
|
import { Loader2 } from 'lucide-react'
|
|
|
|
interface EditTransactionTitleDialogProps {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
/** Current (possibly edited) title shown in the input. */
|
|
currentTitle: string
|
|
/** Bank's original title; when it differs from the current title a restore
|
|
* affordance is offered. */
|
|
originalTitle: string | null
|
|
/** Persist a new title. Resolves true on success (dialog closes), false to
|
|
* keep the dialog open (e.g. the request failed). */
|
|
onSave: (description: string) => Promise<boolean>
|
|
}
|
|
|
|
/**
|
|
* Edit a bank transaction's working title. Carries the product-required warning
|
|
* ("Är du säker…") in the dialog body and offers a one-click restore back to
|
|
* the bank's original name. Gating (only unbooked/unmatched rows) is enforced
|
|
* server-side; callers only open this for editable rows.
|
|
*/
|
|
export default function EditTransactionTitleDialog({
|
|
open,
|
|
onOpenChange,
|
|
currentTitle,
|
|
originalTitle,
|
|
onSave,
|
|
}: EditTransactionTitleDialogProps) {
|
|
const t = useTranslations('tx_inbox_card')
|
|
const [value, setValue] = useState(currentTitle)
|
|
const [isSaving, setIsSaving] = useState(false)
|
|
|
|
// Re-seed the field each time the dialog opens for a (possibly different) row.
|
|
useEffect(() => {
|
|
if (open) setValue(currentTitle)
|
|
}, [open, currentTitle])
|
|
|
|
const trimmed = value.trim()
|
|
const canRestore = originalTitle != null && originalTitle !== currentTitle
|
|
const isUnchanged = trimmed === currentTitle.trim()
|
|
|
|
async function persist(next: string) {
|
|
setIsSaving(true)
|
|
try {
|
|
const ok = await onSave(next)
|
|
if (ok) onOpenChange(false)
|
|
} finally {
|
|
setIsSaving(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Dialog
|
|
open={open}
|
|
onOpenChange={(v) => {
|
|
if (isSaving) return
|
|
onOpenChange(v)
|
|
}}
|
|
>
|
|
<DialogContent className="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>{t('edit_title_dialog_title')}</DialogTitle>
|
|
<DialogDescription>{t('edit_title_warning')}</DialogDescription>
|
|
</DialogHeader>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="tx-title-input">{t('edit_title_label')}</Label>
|
|
<Input
|
|
id="tx-title-input"
|
|
value={value}
|
|
onChange={(e) => setValue(e.target.value)}
|
|
maxLength={500}
|
|
autoFocus
|
|
disabled={isSaving}
|
|
onKeyDown={(e) => {
|
|
if (e.key === 'Enter' && trimmed && !isUnchanged && !isSaving) {
|
|
e.preventDefault()
|
|
void persist(trimmed)
|
|
}
|
|
}}
|
|
/>
|
|
{canRestore && (
|
|
<p className="text-xs text-muted-foreground">
|
|
{t('edit_title_original_hint', { name: originalTitle as string })}{' '}
|
|
<button
|
|
type="button"
|
|
onClick={() => void persist(originalTitle as string)}
|
|
disabled={isSaving}
|
|
className="underline underline-offset-2 hover:text-foreground transition-colors disabled:opacity-50"
|
|
>
|
|
{t('edit_title_restore')}
|
|
</button>
|
|
</p>
|
|
)}
|
|
</div>
|
|
<DialogFooter className="gap-2 sm:gap-0">
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => onOpenChange(false)}
|
|
disabled={isSaving}
|
|
className="min-h-11 w-full sm:w-auto"
|
|
>
|
|
{t('edit_title_cancel')}
|
|
</Button>
|
|
<Button
|
|
onClick={() => void persist(trimmed)}
|
|
disabled={isSaving || !trimmed || isUnchanged}
|
|
className="min-h-11 w-full sm:w-auto"
|
|
>
|
|
{isSaving ? <Loader2 className="mr-2 h-4 w-4 animate-spin" /> : null}
|
|
{t('edit_title_save')}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|