fix respuesta abierta
This commit is contained in:
parent
236b37c47a
commit
65e3b18ee9
|
@ -169,22 +169,22 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="text-xs text-gray-500">
|
<div class="text-xs text-gray-500">
|
||||||
<div class="entity-body">
|
<div class="entity-body">
|
||||||
<div class="entity-body--row m-2">
|
<!--<div class="entity-body--row m-2" *ngFor="let d of duracionArray">
|
||||||
<span class="mt-2" *ngIf="duracion! > 0"
|
<span class="mt-2" *ngIf="d! > 0"
|
||||||
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: {{
|
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: {{
|
||||||
duracion
|
d
|
||||||
}}</span
|
}}</span
|
||||||
>
|
>
|
||||||
<span class="mt-2" *ngIf="duracion! == 0"
|
<span class="mt-2" *ngIf="d! == 0"
|
||||||
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: Un día o
|
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: Un día o
|
||||||
menos</span
|
menos</span
|
||||||
>
|
>
|
||||||
|
|
||||||
<span class="mt-2" *ngIf="duracion! == -1"
|
<span class="mt-2" *ngIf="d! == -1"
|
||||||
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: No ha
|
><fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> Duración: No ha
|
||||||
finalizado</span
|
finalizado</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>-->
|
||||||
|
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<p>Calificación:</p>
|
<p>Calificación:</p>
|
||||||
|
@ -287,7 +287,7 @@
|
||||||
</ul>-->
|
</ul>-->
|
||||||
<!-- <textarea readonly class="ds-survey--textarea" cols="33" rows="10" *ngIf="res.epreguntaAbierta?.id == preguntaId" > {{ res.respuesta }} </textarea>-->
|
<!-- <textarea readonly class="ds-survey--textarea" cols="33" rows="10" *ngIf="res.epreguntaAbierta?.id == preguntaId" > {{ res.respuesta }} </textarea>-->
|
||||||
|
|
||||||
<div *ngIf="res.epreguntaAbierta?.id == preguntaId">
|
<div *ngIf="res.epreguntaAbierta?.id == ePregunta.id">
|
||||||
<label> {{ '- ' + res.respuesta }}</label> <br />
|
<label> {{ '- ' + res.respuesta }}</label> <br />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -453,7 +453,7 @@
|
||||||
</ul>-->
|
</ul>-->
|
||||||
<!-- <textarea readonly class="ds-survey--textarea" cols="33" rows="10" *ngIf="res.epreguntaAbierta?.id == preguntaId" > {{ res.respuesta }} </textarea>-->
|
<!-- <textarea readonly class="ds-survey--textarea" cols="33" rows="10" *ngIf="res.epreguntaAbierta?.id == preguntaId" > {{ res.respuesta }} </textarea>-->
|
||||||
|
|
||||||
<div *ngIf="res.epreguntaAbierta?.id == preguntaIdColaboracion">
|
<div *ngIf="res.epreguntaAbierta?.id == ePregunta.id">
|
||||||
<label> {{ '- ' + res.respuesta }}</label> <br />
|
<label> {{ '- ' + res.respuesta }}</label> <br />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -58,6 +58,7 @@ export class DashboardUserComponent implements OnInit {
|
||||||
ePreguntasOpcionesColaboracion?: any[];
|
ePreguntasOpcionesColaboracion?: any[];
|
||||||
respuestaAbiertaColaboracion?: IEPreguntaAbiertaRespuesta[];
|
respuestaAbiertaColaboracion?: IEPreguntaAbiertaRespuesta[];
|
||||||
preguntaIdColaboracion?: number = 0;
|
preguntaIdColaboracion?: number = 0;
|
||||||
|
duracionArray?: number[] | null = null;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected encuestaService: EncuestaService,
|
protected encuestaService: EncuestaService,
|
||||||
|
@ -126,21 +127,31 @@ export class DashboardUserComponent implements OnInit {
|
||||||
this.cantPrivadas = tmpEncuestas.filter(
|
this.cantPrivadas = tmpEncuestas.filter(
|
||||||
e => e.acceso === 'PRIVATE' && e.usuarioExtra?.id === this.usuarioExtra?.id && e.estado !== 'DELETED'
|
e => e.acceso === 'PRIVATE' && e.usuarioExtra?.id === this.usuarioExtra?.id && e.estado !== 'DELETED'
|
||||||
).length;
|
).length;
|
||||||
|
let cantidadCompletadas: number = 0;
|
||||||
|
tmpEncuestas
|
||||||
|
.filter(e => e.estado === 'ACTIVE')
|
||||||
|
.forEach(e => {
|
||||||
|
const _contadorCompletadas = e.calificacion;
|
||||||
|
cantidadCompletadas = cantidadCompletadas + (Number(_contadorCompletadas?.toString().split('.')[1]) - 1);
|
||||||
|
});
|
||||||
|
this.cantPersonas = cantidadCompletadas;
|
||||||
|
|
||||||
tmpEncuestas.forEach(encuesta => {
|
tmpEncuestas.forEach(encuesta => {
|
||||||
const _calificacion = encuesta.calificacion;
|
const _calificacion = encuesta.calificacion;
|
||||||
encuesta.calificacion = Number(_calificacion?.toString().split('.')[0]);
|
encuesta.calificacion = Number(_calificacion?.toString().split('.')[0]);
|
||||||
|
|
||||||
if (encuesta.fechaFinalizada == null) {
|
/* if (encuesta.fechaFinalizada == null) {
|
||||||
this.duracion = -1;
|
this.duracion = -1;
|
||||||
|
this.duracionArray?.push(this.duracion);
|
||||||
} else {
|
} else {
|
||||||
this.duracion = encuesta.fechaPublicacion?.diff(encuesta.fechaFinalizada!, 'days');
|
this.duracion = encuesta.fechaPublicacion?.diff(encuesta.fechaFinalizada!, 'days');
|
||||||
}
|
this.duracionArray?.push(this.duracion!);
|
||||||
|
}*/
|
||||||
});
|
});
|
||||||
|
|
||||||
this.cantPersonas = tmpEncuestas.filter(
|
/*this.cantPersonas = tmpEncuestas.filter(
|
||||||
e => e.calificacion && e.usuarioExtra?.id === this.usuarioExtra?.id && e.estado !== 'DELETED'
|
e => e.calificacion && e.usuarioExtra?.id === this.usuarioExtra?.id && e.estado !== 'DELETED'
|
||||||
).length;
|
).length;*/
|
||||||
//cantidad de personas que han completado la encuesta
|
//cantidad de personas que han completado la encuesta
|
||||||
|
|
||||||
this.loadFirstChart();
|
this.loadFirstChart();
|
||||||
|
|
|
@ -38,29 +38,28 @@
|
||||||
</select>
|
</select>
|
||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
<!--<div class="ds-filter">
|
<div class="ds-filter">
|
||||||
|
|
||||||
<div class="form-check pl-0 mb-3">
|
<div class="form-check pl-0 mb-3">
|
||||||
<input type="radio" class="form-check-input" id="under25" name="materialExampleRadios" [value]="0">
|
<input type="radio" class="form-check-input" id="under25" name="materialExampleRadios" [value]="0" />
|
||||||
<label for="under25" [(ngModel)]="searchPrecio">GRATIS</label>
|
<label for="under25" [(ngModel)]="searchPrecio">GRATIS</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check pl-0 mb-3">
|
<div class="form-check pl-0 mb-3">
|
||||||
<input type="radio" class="form-check-input" id="2550" name="materialExampleRadios" [value]="">
|
<input type="radio" class="form-check-input" id="2550" name="materialExampleRadios" [value]="5" />
|
||||||
<label for="2550" [(ngModel)]="searchPrecio"> $5 - $10</label>
|
<label for="2550" [(ngModel)]="searchPrecio"> $5 - $10</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check pl-0 mb-3">
|
<div class="form-check pl-0 mb-3">
|
||||||
<input type="radio" class="form-check-input" id="50100" name="materialExampleRadios">
|
<input type="radio" class="form-check-input" id="50100" name="materialExampleRadios" />
|
||||||
<label for="50100" [(ngModel)]="searchPrecio">$10 - $20</label>
|
<label for="50100" [(ngModel)]="searchPrecio">$10 - $20</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check pl-0 mb-3">
|
<div class="form-check pl-0 mb-3">
|
||||||
<input type="radio" class="form-check-input" id="100200" name="materialExampleRadios">
|
<input type="radio" class="form-check-input" id="100200" name="materialExampleRadios" />
|
||||||
<label for="100200" [(ngModel)]="searchPrecio">$20 - $30</label>
|
<label for="100200" [(ngModel)]="searchPrecio">$20 - $30</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check pl-0 mb-3">
|
<div class="form-check pl-0 mb-3">
|
||||||
<input type="radio" class="form-check-input" id="200above" name="materialExampleRadios">
|
<input type="radio" class="form-check-input" id="200above" name="materialExampleRadios" />
|
||||||
<label [(ngModel)]="searchPrecio">Más de $30 </label>
|
<label [(ngModel)]="searchPrecio">Más de $30 </label>
|
||||||
</div>
|
</div>
|
||||||
</div>-->
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
|
@ -26,7 +26,7 @@ export const ADMIN_ROUTES: RouteInfo[] = [
|
||||||
{ path: '/pagina-principal', title: 'Inicio', type: 'link', icontype: 'nc-icon nc-world-2' },
|
{ path: '/pagina-principal', title: 'Inicio', type: 'link', icontype: 'nc-icon nc-world-2' },
|
||||||
{
|
{
|
||||||
path: '/dashboard/admin',
|
path: '/dashboard/admin',
|
||||||
title: 'Dashboard',
|
title: 'Reportes',
|
||||||
type: 'link',
|
type: 'link',
|
||||||
icontype: 'nc-icon nc-chart-bar-32',
|
icontype: 'nc-icon nc-chart-bar-32',
|
||||||
},
|
},
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { Pipe, PipeTransform, Injectable } from '@angular/core';
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class FilterPipe implements PipeTransform {
|
export class FilterPipe implements PipeTransform {
|
||||||
transform(items: any[], field: string, value: string): any[] {
|
transform(items: any[], field: string, value: string): any[] {
|
||||||
|
debugger;
|
||||||
if (!items) {
|
if (!items) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue