arreglo de redirecciones en registro de respuestas

This commit is contained in:
Eduardo Quiros 2021-08-16 23:45:51 -06:00
parent 1cdfb4d3f3
commit 0a271fce60
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
2 changed files with 7 additions and 1 deletions

View File

@ -16,7 +16,8 @@ export class EPreguntaCerradaOpcionService {
constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {}
updateCount(id: any) {
updateCount(id: number) {
debugger;
return this.http.post(`${this.resourceUrl}/count/${id}`, id, { observe: 'response' });
}

View File

@ -20,6 +20,7 @@ import { PreguntaCerradaTipo } from 'app/entities/enumerations/pregunta-cerrada-
import { EPreguntaAbiertaRespuesta } from 'app/entities/e-pregunta-abierta-respuesta/e-pregunta-abierta-respuesta.model';
import { Observable } from 'rxjs/internal/Observable';
import { HttpErrorResponse, HttpResponse } from '@angular/common/http';
import { EstadoEncuesta } from 'app/entities/enumerations/estado-encuesta.model';
@Component({
selector: 'jhi-complete',
@ -67,6 +68,9 @@ export class EncuestaCompleteComponent implements OnInit {
this.activatedRoute.data.subscribe(({ encuesta }) => {
if (encuesta) {
this.encuesta = encuesta;
if (this.encuesta!.estado !== EstadoEncuesta.ACTIVE) {
this.previousState();
}
this.avgCalificacion = parseInt(this.encuesta!.calificacion!.toString().split('.')[0]);
this.cantidadCalificaciones = parseInt(this.encuesta!.calificacion!.toString().split('.')[1]);
this.sumCalificacion = this.avgCalificacion * this.cantidadCalificaciones;
@ -190,6 +194,7 @@ export class EncuestaCompleteComponent implements OnInit {
this.getOpenQuestionAnswers();
this.registerOpenQuestionAnswers();
this.updateClosedOptionsCount();
this.previousState();
}
updateEncuestaRating() {