{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ supplier.name }}{% endblock %} {% block content %}
{% if supplier.active %} Actif {% else %} Inactif {% endif %} {% if supplier.city %}— {{ supplier.city }}, {{ supplier.country }}{% endif %}
{{ supplier.notes|nl2br }}
| Produit | Prix d'achat | Réf. fournisseur | Qté min. | Délai | Préféré | Action |
|---|---|---|---|---|---|---|
|
{{ sp.product.name }}
{{ sp.product.sku }}
|
{{ sp.purchasePrice|number_format(0, ',', ' ') }} FCFA | {{ sp.supplierReference ?? '-' }} | {{ sp.minOrderQuantity }} | {{ sp.leadTimeDays ? sp.leadTimeDays ~ ' j' : '-' }} | {% if sp.preferred %} Oui {% else %} Non {% endif %} | {% include 'components/pos/_confirm_modal.html.twig' with { modal_id: 'unlink-' ~ sp.id, title: 'Délier le produit', message: 'Délier ce produit du fournisseur ?', action_url: path('manager_pos_suppliers_unlink_product', {id: supplier.id, spId: sp.id}), csrf_token_name: 'unlink_product_' ~ sp.id, } %} |
Aucun produit lié. Utilisez le formulaire ci-dessus pour associer des produits.