diff --git a/View/ReportServicioAT.html.twig b/View/ReportServicioAT.html.twig
index 9483e13..ec48e15 100644
--- a/View/ReportServicioAT.html.twig
+++ b/View/ReportServicioAT.html.twig
@@ -120,40 +120,6 @@
{% include includeView['path'] %}
{% endfor %}
- {# Gráficos por mes y por año #}
-
-
{# Importes por mes y por año #}
@@ -198,54 +164,60 @@
{# Tabla por estado #}
+
+
+
+
+
+
+
+
+ | {{ trans('status') }} |
+ {{ trans('quantity') }} |
+ {{ trans('percentage') }} % |
+ {{ trans('net') }} |
+
+
+
+ {% for row in fsc.servicesByStatus %}
+
+ |
+
+ {% if row.color %}
+
+ {% else %}
+
+ {% endif %}
+ {{ row.nombre }}
+
+ |
+ {{ row.total }} |
+
+ {{ fsc.totalServices > 0 ? ((row.total / fsc.totalServices) * 100)|number_format(1) ~ ' %' : '0 %' }}
+ |
+ {{ money(row.neto) }} |
+
+ {% else %}
+
+ |
+ {{ trans('no-data') }}
+ |
+
+ {% endfor %}
+
+
+
+
+
+
+
{% for includeView in getIncludeViews('ReportServicioAT', 'afterStatus') %}
{% include includeView['path'] %}