diff --git a/app/resources/views/home.blade.php b/app/resources/views/home.blade.php
index 63180f0..24d7e79 100644
--- a/app/resources/views/home.blade.php
+++ b/app/resources/views/home.blade.php
@@ -10,13 +10,11 @@
@include('home.cuotas_por_vencer')
+ @include('home.cierres_vigentes')
@include('home.alertas')
-
- @include('home.cierres_vigentes')
-
@endsection
diff --git a/app/resources/views/home/alertas.blade.php b/app/resources/views/home/alertas.blade.php
index a1f9378..e605421 100644
--- a/app/resources/views/home/alertas.blade.php
+++ b/app/resources/views/home/alertas.blade.php
@@ -68,21 +68,6 @@
const index = this.data.proyectos.findIndex(proyecto => proyecto.id === data.proyecto_id)
this.data.proyectos[index].escrituras = data.escrituras
})
- /*const index = this.data.proyectos.findIndex(proyecto => proyecto.id === proyecto_id)
- if (proyecto_id === 3) {
- this.data.proyectos[index].escrituras = {
- firmar: 20,
- pagar: 70,
- abonar: 3
- }
- }
- if (proyecto_id === 4) {
- this.data.proyectos[index].escrituras = {
- firmar: 0,
- pagar: 0,
- abonar: 2
- }
- }*/
}
}
},
@@ -132,7 +117,7 @@
$('').addClass('event').append(
$('').addClass('content').html(tipo)
).append(
- $('').addClass('meta').html(total + '/' + full + ' ' + formatter.format(Math.round(total / full * 10000) / 100).padStart(2, ' ') + '%')
+ $('').addClass('meta').html(total + '/' + full + ' [' + formatter.format(Math.round(total / full * 10000) / 100).padStart(2, ' ') + '%]')
)
)
})