{% extends 'admin/hub/layout.html.twig' %} {% set hub_title = 'Mercuriale' %} {% set hub_breadcrumbs = [ { label: 'Mercuriale', url: path('app_produits_liste') }, { label: 'Apercu' } ] %} {% block title %}Preview Import - Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block hub_content %}
| Ligne | Action | Code | Designation | Unite | Prix | Statut |
|---|---|---|---|---|---|---|
| {{ line.row }} | {% if line.action == 'create' %} Creation {% elseif line.action == 'update' %} Mise a jour {% elseif line.action == 'skip' %} Ignore {% else %} Erreur {% endif %} | {{ line.codeFournisseur ?: '-' }} | {{ line.designation ?: '-' }} | {{ line.unite ?: '-' }} | {% if line.prix %} {{ line.prix|number_format(4, ',', ' ') }} EUR {% else %} - {% endif %} |
{% if line.hasErrors %}
{% for error in line.errors %}
{% elseif line.hasWarnings %}
{{ error.message }}
{% endfor %}
{% for warning in line.warnings %}
{% else %}
{% endif %}
{{ warning.message }}
{% endfor %}
|