Autres taxes CFE param, % marge sur HT, Prix HT/TVA/TTC séparés, clients sans coeff
This commit is contained in:
+18
-3
@@ -130,6 +130,18 @@
|
||||
Mettre <strong>0</strong> si vous n'avez pas opte pour le VFL (impot sur declaration classique).
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="form-label fw-semibold">Autres taxes a prevoir (%)</label>
|
||||
<input type="number" name="other_taxes_rate_pct" class="form-control"
|
||||
step="0.1" value="{{ settings.get('other_taxes_rate_pct', 1.0) }}">
|
||||
<div class="form-text">
|
||||
<strong>~1%</strong> — provision pour taxes diverses non incluses ci-dessus.
|
||||
Exemples : <strong>CFE</strong> (Cotisation Fonciere des Entreprises, due des la 2e annee
|
||||
d'activite, montant variable selon la commune),
|
||||
frais bancaires, comptable, etc.
|
||||
Mettre <strong>0</strong> si non concerne.
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="mb-2">
|
||||
<label class="form-label fw-semibold">TVA (%)</label>
|
||||
@@ -140,11 +152,14 @@
|
||||
La TVA s'ajoute au prix HT et est collectee pour l'Etat (non conservee).
|
||||
</div>
|
||||
</div>
|
||||
{% set total_charges = settings.cotisations_rate_pct + settings.vfl_rate_pct %}
|
||||
{% set other = settings.get('other_taxes_rate_pct', 1.0) %}
|
||||
{% set total_charges = settings.cotisations_rate_pct + settings.vfl_rate_pct + other %}
|
||||
<div class="alert alert-info py-2 mt-3 mb-0 small">
|
||||
<i class="bi bi-info-circle me-1"></i>
|
||||
Charges sur CA HT : <strong>{{ total_charges }} %</strong>
|
||||
(cotisations {{ settings.cotisations_rate_pct }}% + VFL {{ settings.vfl_rate_pct }}%)
|
||||
Charges sur CA HT : <strong>{{ "%.1f"|format(total_charges) }} %</strong>
|
||||
(cotisations {{ settings.cotisations_rate_pct }}%
|
||||
+ VFL {{ settings.vfl_rate_pct }}%
|
||||
+ autres {{ other }}%)
|
||||
{% if settings.tva_rate_pct > 0 %}
|
||||
— TVA {{ settings.tva_rate_pct }}% collectee et reversee a l'Etat
|
||||
{% else %}
|
||||
|
||||
Reference in New Issue
Block a user