{# templates/contributor/detail.html.twig #} {% extends 'base.html.twig' %} {% block title %} {% if contributor.shipped %} Détail de l'expédition - {{ contributor.name }} {% else %} Préparer l'envoi - {{ contributor.name }} {% endif %} {% endblock %} {% block body %}
Nom: {{ contributor.deliveryFirstName ?? contributor.billingFirstName }} {{ contributor.billingLastName }}
Email: {{ contributor.email }}
{% if contributor.ululesId %}ID Ulule: {{ contributor.ululesId }}
{% endif %}Adresse: {{ contributor.deliveryAddress ?? contributor.address }}
{% if contributor.deliveryAddress2 %}Complément: {{ contributor.deliveryAddress2 }}
{% endif %}Code postal: {{ contributor.deliveryPostalCode ?? contributor.postalCode }}
Ville: {{ contributor.deliveryCity ?? contributor.city }}
Pays: {{ contributor.deliveryCountry ?? contributor.country }}
Téléphone: {{ contributor.deliveryPhone ?? contributor.phone }}
Nom: {{ contributor.relayName }}
Adresse: {{ contributor.relayAddress }}
ID: {{ contributor.relayId }}
{% else %}❌ Aucun point relais défini
{% if not contributor.shipped %} Envoyer email de sélection {% endif %} {% endif %}Variation: {{ reward.variation }}
{% endif %}Limite : 100g - 5kg maximum
Ce poids sera utilisé uniquement pour cette expédition.
Poids total : {{ contributor.totalWeight|number_format(0) }}g
Destination : {{ contributor.deliveryCountry ?? contributor.country ?? 'FR' }}
Prix estimé : {{ estimated_price|number_format(2) }} EUR
💡 Prix indicatif - Ajustez selon vos tarifs négociés
{% else %}Destination non supportée ({{ contributor.deliveryCountry ?? contributor.country ?? 'FR' }})
{% endif %}Validation du point relais
{{ check.message }}
{# Afficher les détails du point relais si valide #} {% if check.valid and check.relayData %}Nom : {{ check.relayData.Nom }}
ID : {{ check.relayData.Pays }}{{ contributor.formatRelayId }}
Adresse : {{ check.relayData.Adresse1 }}
Ville : {{ check.relayData.CP }} {{ check.relayData.Ville }}
{% if check.relayData.Distance %}Distance : {{ check.relayData.Distance }}m
{% endif %}{% if checkName == 'weight' %}Poids du colis {% elseif checkName == 'required_data' %}Données obligatoires {% elseif checkName == 'phone' %}Numéro de téléphone pour SMS {% elseif checkName == 'relay_point' %}Point relais valide {% elseif checkName == 'geographical_coherence' %}Cohérence géographique {% endif %}
{% if checkName == 'required_data' %}
{% if check.valid %}
✅ Toutes présentes : Email, Nom, Adresse, Code postal, Ville
{% else %}
❌ {{ check.message }}
{% endif %}
{% elseif checkName == 'geographical_coherence' %}
{{ check.message }}
{% if check.details.contributor_location is defined and check.details.relay_location is defined %}
{% if check.valid and check.details.reason == 'same_postal_code' %}
📍 {{ check.details.contributor_location }} ↔ {{ check.details.relay_location }}
{% elseif not check.valid %}
📍 Contributeur: {{ check.details.contributor_location }}
📍 Point relais: {{ check.details.relay_location }}
{% endif %}
{% endif %}
{% else %}
{{ check.message }}
{% endif %}