Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

1K
Vistas
Merging multiple pdf Using pdfMake.js in Angular

I was able to create a single pdf file using for the following code.

this.docDefinition = {
      
      pageSize: 'LETTER',
      pageOrientation: 'landscape',
      pageMargins: [40, 30, 40, 30],

      header: function (page, pages) {
        return {
          height: 14,
          text: 'Sample',
          style: 'titleHeader',
          alignment: 'center'
        };
      },
      
      content: [
        this.buildSectionPatientInfo(),
        {
          table: {
            widths: ['50%', '50%'],
            headerRows: 0,
            body: [
              [
                // RIGHT SIDE
                [
                 
                  this.buildSectionServices(),    
                  this.buildSectionLabUseOnly()
                ],
                // LEFT SIDE
                [
                  
                  this.buildSectionFrame(),
                  this.buildSectionSpecialInstructionsLab()
                ]
              ]
            ]
          },
          layout: 'noBorders'
        },
      ],
      styles: {
        titleHeader: {
          fontSize: 16,
          bold: true,
          margin: [0, 10, 0, 0],
        },
        tableHeader: {
          bold: true,
          fontSize: 13,
          color: 'black'
        }
      },

      defaultStyle: {
        fontSize: 9,
        lineHeight: .9
      }
    };

    try {
      pdfMake.createPdf(this.docDefinition).open();
    } catch (e) {
      // check popup/ad blockers
      alert(e.toString());
    }

But now I having trouble of creating multiple pdf files and merge it into one pfd. I tried to put a for loop inside content but it errors out.

.......................

content: [
for (const labOrder of selectedLabOrders) {
        this.buildSectionPatientInfo(),
        {
          table: {
            widths: ['50%', '50%'],
            headerRows: 0,
            body: [
              [
                // RIGHT SIDE
                [
                  
                  this.buildSectionLabInfo(),
                  this.buildSectionLabUseOnly()
                ],
                // LEFT SIDE
                [
                  
                  this.buildSectionFrame(),
                  this.buildSectionSpecialInstructionsLab()
                ]
              ]
            ]
          },
          layout: 'noBorders'
        },
}
      ],

.............

I would greatly appreciate if anybody can provide a solution for this.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Perform your loops before creating the docDefinition. Then just append it to your content like so:

const tables = [];

for (const labOrder of selectedLabOrders) {
   tables.push(
     this.buildSectionPatientInfo(),
        {
          table: {
            widths: ['50%', '50%'],
            headerRows: 0,
            body: [
              [
                // RIGHT SIDE
                [
                  
                  this.buildSectionLabInfo(),
                  this.buildSectionLabUseOnly()
                ],
                // LEFT SIDE
                [
                  
                  this.buildSectionFrame(),
                  this.buildSectionSpecialInstructionsLab()
                ]
              ]
            ]
          },
          layout: 'noBorders'
        })
}

Then add tables to your content:

this.docDefinition = {
      
      pageSize: 'LETTER',
      pageOrientation: 'landscape',
      pageMargins: [40, 30, 40, 30],

      header: function (page, pages) {
        return {
          height: 14,
          text: 'Sample',
          style: 'titleHeader',
          alignment: 'center'
        };
      },
      
      content: [
        { tables }
      ],
      styles: {
        titleHeader: {
          fontSize: 16,
          bold: true,
          margin: [0, 10, 0, 0],
        },
        tableHeader: {
          bold: true,
          fontSize: 13,
          color: 'black'
        }
      },

      defaultStyle: {
        fontSize: 9,
        lineHeight: .9
      }
    };

    try {
      pdfMake.createPdf(this.docDefinition).open();
    } catch (e) {
      // check popup/ad blockers
      alert(e.toString());
    }

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda