Jump to content

[Solved] Invoice Pdf / Change Addresses


Recommended Posts

  • 1 month later...

classes/PDF.php

 

regel 573 t/m 582

 

$pdf->Cell($width, 10, self::l('Invoicing'), 0, 'L');

$pdf->Cell($width, 10, self::l('Delivery'), 0, 'L');

$pdf->Ln(5);

$pdf->SetFont(self::fontname(), '', 9);

 

$addressType = array(

'invoice' => array(),

'delivery' => array(),

);

 

 

ipv.

 

 

$pdf->Cell($width, 10, self::l('Delivery'), 0, 'L');

$pdf->Cell($width, 10, self::l('Invoicing'), 0, 'L');

$pdf->Ln(5);

$pdf->SetFont(self::fontname(), '', 9);

 

$addressType = array(

'delivery' => array(),

'invoice' => array(),

);

Link to comment
Share on other sites

  • 3 months later...
×
×
  • Create New...