Skip to content

Commit

Permalink
fix(BI): arreglar dashboard TOP
Browse files Browse the repository at this point in the history
  • Loading branch information
plammel authored and kroce committed Sep 3, 2021
1 parent b572ad8 commit ceee4e8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class GraficosComponent implements OnInit {
}

descargar(value) {
if (this.filtros && this.filtros.tipoDeFiltro === 'turnos') {
if (this.filtros) {
// Se agregan datos de filtrados en el primer elemendo del array para visualizar en csv
Object.keys(this.filtros).map(filtro => value[0][filtro] = this.filtros[filtro] ? this.filtros[filtro] : '');
this.requestInProgress = true;
Expand Down
24 changes: 12 additions & 12 deletions src/app/modules/estadisticas/components/top/top.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,32 @@
<fieldset>
<div class="row">
<div class="col" *ngIf="dataEntrada.organizaciones">
<graph-table type="pie" titulo="Organización" [data]="dataEntrada.organizaciones" [table]="esTabla"></graph-table>
<graph-table type="pie" titulo="Organización" [data]="dataEntrada.organizaciones" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataEntrada.estados">
<graph-table type="pie" titulo="Estado" [data]="dataEntrada.estados" [table]="esTabla"></graph-table>
<graph-table type="pie" titulo="Estado" [data]="dataEntrada.estados" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col">
<graph-table type="bar" titulo="Tipo de Solicitud Origen" [data]="dataEntrada.solicitudesOrigen" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Tipo de Solicitud Origen" [data]="dataEntrada.solicitudesOrigen" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col">
<graph-table type="bar" titulo="Tipo de Solicitud Destino" [data]="dataEntrada.solicitudesDestino" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Tipo de Solicitud Destino" [data]="dataEntrada.solicitudesDestino" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataEntrada.profesionalesOrigen">
<graph-table type="bar" titulo="Profesional Origen" [data]="dataEntrada.profesionalesOrigen" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Profesional Origen" [data]="dataEntrada.profesionalesOrigen" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataEntrada.profesionalesDestino">
<graph-table type="bar" titulo="Profesional Destino" [data]="dataEntrada.profesionalesDestino" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Profesional Destino" [data]="dataEntrada.profesionalesDestino" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
</fieldset>
Expand All @@ -47,32 +47,32 @@
<fieldset>
<div class="row">
<div class="col" *ngIf="dataSalida.organizaciones">
<graph-table type="bar" titulo="Organización" [data]="dataSalida.organizaciones" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Organización" [data]="dataSalida.organizaciones" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataSalida.estados">
<graph-table type="pie" titulo="Estado" [data]="dataSalida.estados" [table]="esTabla"></graph-table>
<graph-table type="pie" titulo="Estado" [data]="dataSalida.estados" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col">
<graph-table type="bar" titulo="Tipo de Solicitud Origen" [data]="dataSalida.solicitudesOrigen" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Tipo de Solicitud Origen" [data]="dataSalida.solicitudesOrigen" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col">
<graph-table type="bar" titulo="Tipo de Solicitud Destino" [data]="dataSalida.solicitudesDestino" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Tipo de Solicitud Destino" [data]="dataSalida.solicitudesDestino" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataSalida.profesionalesOrigen">
<graph-table type="bar" titulo="Profesional Origen" [data]="dataSalida.profesionalesOrigen" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Profesional Origen" [data]="dataSalida.profesionalesOrigen" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
<div class="row">
<div class="col" *ngIf="dataSalida.profesionalesDestino">
<graph-table type="bar" titulo="Profesional Destino" [data]="dataSalida.profesionalesDestino" [table]="esTabla"></graph-table>
<graph-table type="bar" titulo="Profesional Destino" [data]="dataSalida.profesionalesDestino" [table]="esTabla" [filtros]="params" dashboard="Dashboard TOP"></graph-table>
</div>
</div>
</fieldset>
Expand Down

0 comments on commit ceee4e8

Please sign in to comment.