preguntas excel

This commit is contained in:
Paola 2021-08-16 19:02:48 -06:00
parent 1a8431e962
commit 05b67b3ccb
1 changed files with 32 additions and 1 deletions

View File

@ -396,6 +396,32 @@ export class DashboardUserComponent implements OnInit {
const _excelFinalData = [_reporteEncuestasCreadas, _reporteUsuariosCompletadas, _reporteEncuestasEstado, _reporteEncuestasAcceso];
const _fileName = 'reportes_generales_encuestas_DataSurvey';
exportAsExcelFile(_sheets, _excelFinalData, _fileName);
} else if (!this.reportPreguntas) {
/*REPORTES POR ENCUESTA:
* Nombre encuesta
* categoria encuesta
* calificacion encuesta
*
* preguntas:
* contenido/ cantidad*/
const _sheets = ['Datos de encuesta', 'Contenido de preguntas'];
const _reporteDatosEncuesta = [
{
nombre_encuesta: this.encuesta?.nombre,
categoria_encuesta: this.encuesta?.categoria,
calificacion_encuesta: this.encuesta?.calificacion,
},
];
const _reporteDaetallePreguntas = [
{
nombre_encuesta: this.encuesta?.nombre,
categoria_encuesta: this.encuesta?.categoria,
calificacion_encuesta: this.encuesta?.calificacion,
},
];
}
}
@ -460,7 +486,12 @@ export class DashboardUserComponent implements OnInit {
saveGeneratedPDF(doc, _fileName);
} else {
/*REPORTES POR ENCUESTA:
* */
* Nombre encuesta
* categoria encuesta
* calificacion encuesta
*
* preguntas:
* contenido/ cantidad*/
}
}
}