Files
crm_ecosplay/templates/devis/process.html.twig
Serreau Jovann 8b35e2b6d2 feat: comptabilite + prestataires + rapport financier + stats dynamiques
Comptabilite (Super Admin) :
- ComptabiliteController avec 7 exports CSV/JSON compatibles SAGE
  (journal ventes, grand livre, FEC, balance agee, reglements,
  commissions Stripe 1.5%+0.25E, couts services)
- Export PDF via ComptaPdf (FPDF) avec bloc legal pre-rempli,
  tableau pagine, champ signature DocuSeal
- Signature electronique DocuSeal + callback + envoi email signe
  avec template dedie (compta_export_signed.html.twig)
- Rapport financier public (RapportFinancierPdf) : recettes par
  service, depenses (Stripe, infra, prestataires), bilan excedent/deficit
- Codes comptables clients EC-XXXX (plus de 411xxx)

Prestataires (Super Admin) :
- Entite Prestataire (raisonSociale, siret, email, phone, adresse)
- Entite FacturePrestataire (numFacture, montantHt, montantTtc,
  year, month, isPaid, PDF via Vich)
- CRUD complet avec recherche SIRET via proxy API data.gouv.fr
- Commande cron app:reminder:factures-prestataire (5 du mois)
- Factures prestataires integrees dans export couts services
- Sidebar Super Admin : entree Prestataires + Comptabilite

Stats (/admin/stats) :
- Cout prestataire dynamique depuis FacturePrestataire
- Fusion Infra + Prestataire en "Cout de fonctionnement"
- Commission Stripe corrigee (1.5% + 0.25E par transaction)

Divers :
- DocuSealService::sendComptaForSignature() + getApi()
- Customer::generateCodeComptable() format EC-XXXX-XXXXX
- Protection double prefixe EC- a la creation client
- Bouton regenerer PDF cache quand advert state=accepted
- Modals sans script inline (data-modal-open/close dans app.js)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 23:39:31 +02:00

124 lines
6.7 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Devis {{ devis.orderNumber.numOrder }} - Association E-Cosplay{% endblock %}
{% block body %}
<main class="max-w-3xl mx-auto px-4 py-10">
{% for type, messages in app.flashes %}
{% for message in messages %}
<div class="mb-4 p-4 glass font-medium text-sm {{ type == 'success' ? 'border-green-300 text-green-800' : 'border-red-300 text-red-800' }}">{{ message }}</div>
{% endfor %}
{% endfor %}
<div class="glass p-8 mb-6">
<div class="flex items-center justify-between mb-6">
<div>
<p class="text-[10px] font-bold uppercase tracking-widest text-gray-400">Devis</p>
<h1 class="text-2xl font-bold heading-page font-mono">{{ devis.orderNumber.numOrder }}</h1>
<p class="text-xs text-gray-500 mt-1">Date : {{ devis.createdAt|date('d/m/Y') }}</p>
</div>
<div class="text-right">
{% if devis.state == 'accepted' %}
<span class="px-3 py-1 bg-green-500/20 text-green-700 font-bold uppercase text-xs">Signe</span>
{% elseif devis.state == 'refused' %}
<span class="px-3 py-1 bg-red-500/20 text-red-700 font-bold uppercase text-xs">Refuse</span>
{% elseif devis.state == 'cancel' %}
<span class="px-3 py-1 bg-gray-100 text-gray-600 font-bold uppercase text-xs">Annule</span>
{% else %}
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 font-bold uppercase text-xs">En attente de signature</span>
{% endif %}
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8">
<div class="glass p-4">
<p class="text-[10px] font-bold uppercase tracking-widest text-gray-400 mb-2">Emetteur</p>
<p class="text-sm font-bold">Association E-Cosplay</p>
<p class="text-xs text-gray-500 mt-1">
42 rue de Saint-Quentin<br>
02800 Beautor, France<br>
SIREN 943121517
</p>
</div>
<div class="glass p-4">
<p class="text-[10px] font-bold uppercase tracking-widest text-gray-400 mb-2">Client</p>
<p class="text-sm font-bold">{{ customer.fullName }}</p>
<p class="text-xs text-gray-500 mt-1">
{% if customer.address %}{{ customer.address }}<br>{% endif %}
{% if customer.zipCode or customer.city %}{{ customer.zipCode }} {{ customer.city }}<br>{% endif %}
{% if customer.email %}{{ customer.email }}{% endif %}
</p>
</div>
</div>
<h2 class="text-sm font-bold uppercase tracking-wider mb-3">Detail des prestations</h2>
<div class="glass overflow-hidden mb-6">
<table class="w-full text-sm">
<thead>
<tr class="glass-dark text-white">
<th class="px-4 py-3 text-left font-bold uppercase text-xs tracking-widest">#</th>
<th class="px-4 py-3 text-left font-bold uppercase text-xs tracking-widest">Prestation</th>
<th class="px-4 py-3 text-right font-bold uppercase text-xs tracking-widest">Prix HT</th>
</tr>
</thead>
<tbody>
{% for line in devis.lines %}
<tr class="border-b border-white/20">
<td class="px-4 py-3 text-gray-400 text-xs">{{ loop.index }}</td>
<td class="px-4 py-3">
<div class="font-bold">{{ line.title }}</div>
{% if line.description %}
<div class="text-xs text-gray-500 whitespace-pre-wrap mt-1">{{ line.description }}</div>
{% endif %}
</td>
<td class="px-4 py-3 text-right font-mono">{{ line.priceHt }} &euro;</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="flex justify-end">
<div class="w-full max-w-xs glass p-4">
<div class="flex justify-between text-xs text-gray-500 mb-1">
<span class="font-bold uppercase tracking-widest">Total HT</span>
<span class="font-mono">{{ devis.totalHt }} &euro;</span>
</div>
{% if tva_enabled %}
<div class="flex justify-between text-xs text-gray-500 mb-2">
<span class="font-bold uppercase tracking-widest">TVA 20%</span>
<span class="font-mono">{{ devis.totalTva }} &euro;</span>
</div>
<div class="flex justify-between text-base font-bold border-t border-white/30 pt-2">
<span class="uppercase tracking-widest">Total TTC</span>
<span class="font-mono">{{ devis.totalTtc }} &euro;</span>
</div>
{% endif %}
</div>
</div>
</div>
{% if devis.state == 'send' %}
<div class="glass p-6">
<h2 class="text-sm font-bold uppercase tracking-wider mb-4">Votre decision</h2>
<div class="flex flex-col sm:flex-row gap-3">
<a href="{{ path('app_devis_process_sign', {id: devis.id, hmac: devis.hmac}) }}"
class="flex-1 px-6 py-4 bg-green-500 text-white font-bold uppercase text-xs tracking-widest text-center hover:bg-green-600 transition-all">
Signer le devis
</a>
<button type="button" id="refuse-toggle-btn"
class="flex-1 px-6 py-4 bg-red-500/20 text-red-700 font-bold uppercase text-xs tracking-widest hover:bg-red-500 hover:text-white transition-all">
Refuser le devis
</button>
</div>
<form id="refuse-form" method="post" action="{{ path('app_devis_process_refuse', {id: devis.id, hmac: devis.hmac}) }}" class="hidden mt-4">
<label for="reason" class="block text-xs font-bold uppercase tracking-wider mb-2">Motif du refus (optionnel)</label>
<textarea id="reason" name="reason" rows="3" class="w-full px-4 py-3 input-glass text-sm font-medium mb-3"></textarea>
<button type="submit" class="px-6 py-3 bg-red-600 text-white font-bold uppercase text-xs tracking-widest hover:bg-red-700 transition-all">Confirmer le refus</button>
</form>
</div>
{% endif %}
</main>
{% endblock %}