-
Notifications
You must be signed in to change notification settings - Fork 0
/
generarReporte.js
48 lines (42 loc) · 1.18 KB
/
generarReporte.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const fs = require('fs');
const path = require('path');
const pdf = require('pdf-creator-node');
// Configuración de la plantilla HTML
const plantillaPath = path.join(__dirname, 'plantilla.html');
const plantillaHTML = fs.readFileSync(plantillaPath, 'utf8');
// Función para generar el PDF
async function generarReporte(ventasTotales, ventasPorProducto, fechaDesde, fechaHasta) {
// Preparar datos para la plantilla
const data = {
fechaDesde,
fechaHasta,
ventasTotales: ventasTotales.toFixed(2),
ventas: ventasPorProducto.map((venta) => ({
producto: venta.nombreProducto,
cantidad: venta.cantidadVendida,
total: venta.total.toFixed(2),
})),
};
// Configuración del PDF
const options = {
format: 'A4',
orientation: 'portrait',
border: '10mm',
};
const documento = {
html: plantillaHTML,
data,
path: './reporte_ventas.pdf',
type: '',
};
try {
// Generar el PDF
const res = await pdf.create(documento, options);
console.log('PDF generado:', res.filename);
return res.filename;
} catch (err) {
console.error('Error generando el PDF:', err);
throw err;
}
}
module.exports = generarReporte;