246 lines
18 KiB
Twig
246 lines
18 KiB
Twig
{% extends 'dashboard/base.twig' %}
|
|
|
|
{% block title %}Catalogue Devis{% endblock %}
|
|
{% block title_header %}Gestion des <span class="text-blue-500">Devis & Offres</span>{% endblock %}
|
|
|
|
{% block actions %}
|
|
<div class="flex items-center space-x-3">
|
|
<a data-turbo="false" href="{{ path('app_crm_devis_add') }}" class="flex items-center space-x-2 px-6 py-3 bg-blue-600 hover:bg-blue-500 text-white text-[10px] font-black uppercase tracking-[0.2em] rounded-xl transition-all shadow-lg shadow-blue-600/20 group">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M12 4v16m8-8H4" />
|
|
</svg>
|
|
<span>Nouveau Devis</span>
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="backdrop-blur-xl bg-[#1e293b]/40 border border-white/5 rounded-[2.5rem] overflow-hidden shadow-2xl animate-in fade-in duration-700">
|
|
<div class="overflow-x-auto">
|
|
<table class="w-full text-left border-collapse">
|
|
<thead>
|
|
<tr class="border-b border-white/5 bg-black/20">
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em]">Référence</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em]">Client</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em]">Date</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em]">Statut</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em] text-center">Total HT</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em] text-center">Caution</th>
|
|
<th class="px-6 py-5 text-[10px] font-black text-slate-300 uppercase tracking-[0.2em] text-right">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-white/5">
|
|
{% for quote in quotes %}
|
|
{# LOGIQUE STATUT : On sépare le statut de la raison (ex: refused|Trop cher) #}
|
|
{% set stateParts = quote.state|split('|') %}
|
|
{% set status = stateParts[0] %}
|
|
{% set reason = stateParts[1] ?? null %}
|
|
|
|
<tr class="group hover:bg-white/[0.02] transition-colors">
|
|
{# RÉFÉRENCE #}
|
|
<td class="px-6 py-4">
|
|
<div class="flex flex-col">
|
|
<span class="text-[11px] font-mono font-bold text-blue-500 tracking-wider">
|
|
{{ quote.ref|default('DEV-' ~ quote.id|upper) }}
|
|
</span>
|
|
<span class="text-[8px] text-slate-600 font-bold uppercase tracking-widest mt-0.5">
|
|
{{ quote.num }}
|
|
</span>
|
|
</div>
|
|
</td>
|
|
|
|
{# CLIENT #}
|
|
<td class="px-6 py-4">
|
|
<div class="flex flex-col">
|
|
<span class="text-sm font-bold text-white group-hover:text-blue-400 transition-colors capitalize">
|
|
{{ quote.customer.surname|upper }} {{ quote.customer.name }}
|
|
</span>
|
|
<span class="text-[9px] text-slate-300 font-bold uppercase tracking-tighter italic">
|
|
{{ quote.customer.phone|default(quote.customer.email) }}
|
|
</span>
|
|
</div>
|
|
</td>
|
|
|
|
{# DATE #}
|
|
<td class="px-6 py-4">
|
|
<span class="text-xs text-slate-400 font-medium">
|
|
{{ quote.createa|date('d/m/Y') }}
|
|
</span>
|
|
</td>
|
|
|
|
{# STATUT DYNAMIQUE #}
|
|
<td class="px-6 py-4">
|
|
{% set statusClasses = {
|
|
'draft': 'text-slate-400 bg-slate-500/10 border-slate-500/20',
|
|
'created_waitsign': 'text-amber-400 bg-amber-500/10 border-amber-500/20',
|
|
'wait-send': 'text-amber-400 bg-amber-500/10 border-amber-500/20',
|
|
'refused': 'text-rose-400 bg-rose-500/10 border-rose-500/20',
|
|
'signed': 'text-emerald-400 bg-emerald-500/10 border-emerald-500/20',
|
|
'signée': 'text-emerald-400 bg-emerald-500/10 border-emerald-500/20'
|
|
} %}
|
|
|
|
{% set statusLabels = {
|
|
'draft': 'Brouillon',
|
|
'created_waitsign': 'Attente Signature',
|
|
'wait-send': 'Envoi en cours',
|
|
'refused': 'Refusé',
|
|
'signed': 'Signé',
|
|
'signée': 'Signé'
|
|
} %}
|
|
|
|
<div class="flex flex-col items-start gap-1">
|
|
<span class="px-3 py-1.5 rounded-lg border text-[8px] font-black uppercase tracking-[0.15em] whitespace-nowrap {{ statusClasses[status] ?? 'text-slate-400 bg-slate-500/10 border-slate-500/20' }}">
|
|
{% if status == 'created_waitsign' or status == 'wait-send' %}
|
|
<span class="inline-block w-1.5 h-1.5 rounded-full bg-amber-500 mr-1.5 animate-pulse"></span>
|
|
{% elseif status == 'signed' or status == 'signée' %}
|
|
<span class="inline-block w-1.5 h-1.5 rounded-full bg-emerald-500 mr-1.5 shadow-[0_0_5px_#10b981]"></span>
|
|
{% elseif status == 'refused' %}
|
|
<span class="inline-block w-1.5 h-1.5 rounded-full bg-rose-500 mr-1.5"></span>
|
|
{% endif %}
|
|
{{ statusLabels[status] ?? status }}
|
|
</span>
|
|
|
|
{# AFFICHAGE RAISON REFUS #}
|
|
{% if status == 'refused' and reason %}
|
|
<div class="flex items-start gap-1.5 mt-1 px-1 max-w-[150px]">
|
|
<svg class="w-3 h-3 text-rose-500 mt-0.5 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
|
|
</svg>
|
|
<p class="text-[9px] font-medium text-rose-400 italic leading-tight">{{ reason }}</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
|
|
{# MONTANT #}
|
|
<td class="px-6 py-4 text-center">
|
|
<div class="flex flex-col items-center">
|
|
{% if quote.orderSession and quote.orderSession.promotion %}
|
|
<span class="text-sm font-black text-white">
|
|
{{ (quote|totalQuotoHT)|number_format(2, ',', ' ') }}€
|
|
</span>
|
|
<span class="text-[10px] text-slate-500 line-through font-bold">
|
|
{{ (quote|totalQuotoBeforeDiscount)|number_format(2, ',', ' ') }}€
|
|
</span>
|
|
<span class="text-[9px] text-emerald-400 font-bold uppercase tracking-wider mt-1">
|
|
Promo -{{ quote.orderSession.promotion.percentage }}%
|
|
</span>
|
|
{% else %}
|
|
<span class="text-sm font-black text-white">
|
|
{{ (quote|totalQuotoHT)|number_format(2, ',', ' ') }}€
|
|
</span>
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
|
|
{# CAUTION #}
|
|
<td class="px-6 py-4 text-center">
|
|
<span class="text-xs font-bold text-slate-400">
|
|
{{ (quote|totalCaution)|number_format(2, ',', ' ') }}€
|
|
</span>
|
|
</td>
|
|
|
|
{# ACTIONS #}
|
|
<td class="px-6 py-4 text-right">
|
|
<div class="flex items-center justify-end space-x-2">
|
|
|
|
{# Renvoyer lien de signature (Autorisé aussi si refusé pour relancer) #}
|
|
{% if status == "created_waitsign" or status == "wait-send" %}
|
|
<a data-turbo="false" href="{{ path('app_crm_devis', {resend: quote.id}) }}"
|
|
title="Renvoyer le lien de signature"
|
|
class="p-2 bg-indigo-600/10 hover:bg-indigo-600 text-indigo-500 hover:text-white rounded-xl transition-all border border-indigo-500/20 shadow-lg shadow-indigo-600/5">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
|
|
</svg>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{# Modifier : Interdit uniquement si signé #}
|
|
{% if status != "signed" and status != "refused" %}
|
|
<a data-turbo="false" href="{{ path('app_crm_devis_edit', {id: quote.id}) }}"
|
|
title="Modifier le devis"
|
|
class="p-2 bg-blue-600/10 hover:bg-blue-600 text-blue-500 hover:text-white rounded-xl transition-all border border-blue-500/20 shadow-lg shadow-blue-600/5">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" /></svg>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{# PDF Conditionnel #}
|
|
{% if status == "signed" or status == "signée" %}
|
|
{# PDF Signé #}
|
|
<a download="SIGN_{{ quote.num }}.pdf" href="{{ vich_uploader_asset(quote, 'devisSignFile') }}" title="Télécharger le devis signé" target="_blank" class="p-2 bg-emerald-600/10 hover:bg-emerald-600 text-emerald-500 hover:text-white rounded-xl transition-all border border-emerald-500/20 shadow-lg shadow-emerald-600/5">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" /></svg>
|
|
</a>
|
|
|
|
{% if quote.contrats is null %}
|
|
{# ÉTAT : AUCUN CONTRAT #}
|
|
<a data-turbo="false" href="{{ path('app_crm_contrats_create', {idDevis: quote.id}) }}"
|
|
title="Générer le contrat"
|
|
class="group flex items-center gap-2 px-5 py-2.5 bg-blue-600/10 hover:bg-blue-600 text-blue-500 hover:text-white rounded-xl transition-all duration-300 border border-blue-500/20 shadow-lg shadow-blue-600/5 font-bold text-[10px] uppercase tracking-widest">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" /></svg>
|
|
<span>Contrat</span>
|
|
</a>
|
|
{% else %}
|
|
{# ÉTAT : CONTRAT EXISTANT #}
|
|
<a data-turbo="false" href="{{ path('app_crm_contrats_view', {id: quote.contrats.id}) }}"
|
|
title="Voir le contrat"
|
|
class="group flex items-center gap-2 px-5 py-2.5 bg-emerald-500/10 hover:bg-emerald-500 text-emerald-500 hover:text-white rounded-xl transition-all duration-300 border border-emerald-500/20 shadow-lg shadow-emerald-600/5 font-bold text-[10px] uppercase tracking-widest">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0" /></svg>
|
|
<span>Contrat</span>
|
|
</a>
|
|
{% endif %}
|
|
{% else %}
|
|
{# PDF Brouillon / Attente #}
|
|
<a download="{{ quote.num }}.pdf" href="{{ vich_uploader_asset(quote,'devisDocuSealFile') }}" target="_blank" class="p-2 bg-slate-600/10 hover:bg-slate-600 text-slate-300 hover:text-white rounded-xl transition-all border border-slate-500/20">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z" /></svg>
|
|
</a>
|
|
{% endif %}
|
|
|
|
{# Delete : Interdit si signé #}
|
|
{% if status != "signed" and status != "signée" %}
|
|
<a data-turbo="false" href="{{ path('app_crm_devis_delete', {id: quote.id}) }}?_token={{ csrf_token('delete' ~ quote.id) }}"
|
|
data-turbo-method="post"
|
|
data-turbo-confirm="Confirmer la suppression ?"
|
|
class="p-2 bg-rose-500/10 hover:bg-rose-600 text-rose-500 hover:text-white rounded-xl transition-all border border-rose-500/20">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" /></svg>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="7" class="py-24 text-center">
|
|
<div class="flex flex-col items-center justify-center opacity-50">
|
|
<svg class="w-12 h-12 text-slate-500 mb-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="1" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /></svg>
|
|
<p class="text-slate-400 font-bold uppercase tracking-widest text-xs">Aucun devis trouvé</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{# PAGINATION #}
|
|
{% if quotes.getTotalItemCount is defined and quotes.getTotalItemCount > quotes.getItemNumberPerPage %}
|
|
<div class="mt-8 flex justify-center custom-pagination">
|
|
{{ knp_pagination_render(quotes) }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<style>
|
|
.custom-pagination nav ul { @apply flex space-x-2; }
|
|
.custom-pagination nav ul li span,
|
|
.custom-pagination nav ul li a {
|
|
@apply px-4 py-2 rounded-xl bg-[#1e293b]/40 backdrop-blur-md border border-white/5 text-slate-400 text-[10px] font-black transition-all;
|
|
}
|
|
.custom-pagination nav ul li.active span {
|
|
@apply bg-blue-600 border-blue-500 text-white shadow-lg shadow-blue-600/20;
|
|
}
|
|
.custom-pagination nav ul li a:hover {
|
|
@apply bg-white/10 text-white border-white/20;
|
|
}
|
|
</style>
|
|
{% endblock %}
|