Dashboard Comptable
{{ formatCurrency(currentData.compteBancaireReel) }}
| Recettes TTC | {{ formatCurrency(details.recettesTTC) }} |
| Dépenses TTC | {{ formatCurrency(details.depensesTTC) }} |
| Rémunération | {{ formatCurrency(details.remuneration) }} |
| TVA Payée | {{ formatCurrency(currentData.tva?.tvaPayeeImpots) }} |
| TVA Restant Due | {{ formatCurrency(details.tvaRestantADue) }} |
| Dividendes perçus | {{ formatCurrency(details.dividendesPercus) }} |
| Solde Exercice | {{ formatCurrency(details.soldeFinal) }} |
| Compte Courant (CCA) | {{ formatCurrency(details.compteCourantAssocie) }} |
| {{ entityName === 'skoto' ? 'Trésorerie Société' : 'Total Personnel' }} | {{ formatCurrency(details.totalGlobalPersonnel) }} |
| Total (avec Skoto) | {{ formatCurrency(details.totalGlobalPersonnelSkoto) }} |
{{ uploadStatus }}
{{ dividendsStatus }}
| Date | Compte | Libellé | Montant |
|---|---|---|---|
| {{ ligne.date }} | {{ ligne.compte }} | {{ ligne.libelle }} | {{ formatCurrency(ligne.montant) }} |
| Date | Compte | Libellé | Débit | Crédit |
|---|---|---|---|---|
| {{ ligne.date }} | {{ ligne.compte }} | {{ ligne.libelle }} | {{ ligne.debit > 0 ? formatCurrency(ligne.debit) : '-' }} | {{ ligne.credit > 0 ? formatCurrency(ligne.credit) : '-' }} |
| Date | Compte | Libellé | Débit | Crédit |
|---|---|---|---|---|
| {{ ligne.date }} | {{ ligne.compte }} | {{ ligne.libelle }} | {{ ligne.debit > 0 ? formatCurrency(ligne.debit) : '-' }} | {{ ligne.credit > 0 ? formatCurrency(ligne.credit) : '-' }} |
| Date | Compte | Libellé | Entrée (Débit) | Sortie (Crédit) |
|---|---|---|---|---|
| {{ ligne.date }} | {{ ligne.compte }} | {{ ligne.libelle }} | {{ ligne.debit > 0 ? formatCurrency(ligne.debit) : '-' }} | {{ ligne.credit > 0 ? formatCurrency(ligne.credit) : '-' }} |