ptomter Posted July 4, 2008 Share Posted July 4, 2008 When creating and downloading a pdf. the product text is coming over to the price tabel. see the picture. Link to comment Share on other sites More sharing options...
dutchnet Posted July 4, 2008 Share Posted July 4, 2008 did you check the code in your phpconfig.php foreach ($invoiceitems AS $item) { if (strlen($item["description"])>90) { $pdf->Cell(148,6,substr($item["description"],0,90),1); $pdf->Cell(40,6,$currencysymbol." ".$item["amount"]." ",1,0,'R'); $pdf->Ln(); $pdf->Cell(148,6,substr($item["description"],90),1); $pdf->Cell(40,6,"",1,0,'C'); } else { $pdf->Cell(148,6,$item["description"],1); $pdf->Cell(40,6,$currencysymbol." ".$item["amount"]." ",1,0,'R'); } $pdf->Ln(); } Link to comment Share on other sites More sharing options...
minadreapta Posted July 4, 2008 Share Posted July 4, 2008 i encountered this issue also, all the invoice content is going over the tables/margins i have a custom pdfconfig.php and it started to look awkward right after the upgrade from what i noticed: the invoices after the upgrade are having the footer working: "page 1/1" Link to comment Share on other sites More sharing options...
Recommended Posts