{% extends 'base.html.twig' %}
{% block title %}Intervention{% endblock %}
{% block body %}
| Date intervention: |
{{ intervention.creatAt |date('d/m/Y')}} |
| Intervenant: |
{% for rep in intervention.repairman %}
{{ rep.name }} - {{ rep.fonction }}
{% endfor %}
|
| Semaine: |
S{{ intervention.creatAt |date('W')}} |
| Mois: |
M{{ intervention.creatAt |date('m')}} |
| Anomalie |
{{ intervention.anomaly }} |
| Nature defaillance |
{{ intervention.malfunction }} |
| Cause de faillance |
{{ intervention.failure }} |
| Heure d'arrêt équipement |
{{ intervention.stopAt |date('H:i:s') }} |
depannage
| Reception du bon: |
{{ intervention.receptionAt | date('H:i:s') }} |
| Heure début et fin depannage |
{{ intervention.startAt | date('H:i:s') }} - {{ intervention.openAt | date('H:i:s') }} |
| Type de maintenance |
{{ intervention.type }} |
RECAPITULATIF TEMPS
| Désignation |
Timer |
| Durée Intervention |
00:00:00 |
| Temps arrêt |
00:00:00 |
| Temps réaction |
00:00:00 |
| Temps MCD |
00:00:00 |
| Temps MPC |
00:00:00 |
| Temps MPS |
00:00:00 |
{#
| Birthday: |
03/04/1990 |
| Country: |
USA |
| Languages: |
English |
| Contact: |
+(305) 254 24668 |
#}
{% endblock %}