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