{% extends 'base.html.twig' %} {% block title %}Import {{ job.sourceFilename }} — VIIZIA{% endblock %} {% block body %}

{{ job.sourceFilename }}

{{ job.organization.name }} · {{ job.bankAccount.label }} · {{ job.status.label }}

Lignes lues
{{ job.transactionsTotal }}
Importées
{{ job.transactionsImported }}
{% if has_log ?? false %}

Voir les logs

{% endif %}
Ignorées
{{ job.transactionsSkipped }}
{% if has_log ?? false %}

Voir les logs

{% endif %}
Durée
{% if job.startedAt and job.finishedAt %} {{ (job.finishedAt.timestamp - job.startedAt.timestamp) }} s {% else %} — {% endif %}
{% if job.errorMessage %}
Premier souci rencontré : {{ job.errorMessage }}
{% endif %}

Détails

{% if has_log ?? false %} {% endif %}
Type de source{{ job.sourceType.label }}
Fichier source{{ job.sourcePath }}
Lancé par{{ job.user ? job.user.email : '—' }}
Créé le{{ job.createdAt|date('d/m/Y H:i:s') }}
Démarré le{{ job.startedAt ? job.startedAt|date('d/m/Y H:i:s') : '—' }}
Terminé le{{ job.finishedAt ? job.finishedAt|date('d/m/Y H:i:s') : '—' }}
Journal d’exécution Fichier complet (import.log) — pas de filtre
{% if job.mapping %}
Mapping appliqué (JSON)
{{ job.mapping|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_UNESCAPED_UNICODE')) }}
{% endif %}
{% endblock %}