Une écriture de contrepassation (annulation) sera créée avec la référence CORR-{{ $transaction->fiscalYear->id }}-XXXX.
Cette action est irréversible.
{{ $message }}
@enderrorLa note sera ajoutée à la description de la transaction de contrepassation.
{{ $transaction->reference }}
{{ $transaction->transaction_date->format('d/m/Y') }}
{{ ucfirst($transaction->type) }}
@if($transaction->isDraft()) Brouillon @else Validée @endif @if($transaction->isReversed()) Contrepassée @endif @if($transaction->isReversal()) Contrepassation @endif
{{ number_format($transaction->amount, 2, ',', ' ') }} €
{{ $transaction->description }}
| Compte | Débit | Crédit |
|---|---|---|
|
{{ $line->account->id }}
{{ $line->account->name }}
|
{{ $line->debit > 0 ? number_format($line->debit, 2, ',', ' ') . ' €' : '-' }} | {{ $line->credit > 0 ? number_format($line->credit, 2, ',', ' ') . ' €' : '-' }} |
| TOTAL | {{ number_format($transaction->total_debit, 2, ',', ' ') }} € | {{ number_format($transaction->total_credit, 2, ',', ' ') }} € |
Les écritures comptables sont immuables
Pour des raisons de conformité légale, les écritures comptables ne peuvent pas être modifiées ni supprimées une fois créées.