Ticket #2: ianpatch1.diff
| File ianpatch1.diff, 1.3 kB (added by iwcg, 4 years ago) |
|---|
-
invoices_pdfquote.php
306 306 $pdf->Cell($taxwidth,.13,"Sales Tax",$border_debug,0,"R"); 307 307 $pdf->Cell($shippingwidth,.13,"Shipping",$border_debug,0,"R"); 308 308 $pdf->Cell($totalwidth,.13,"Total",$border_debug,0,"R"); 309 $pdf->Cell($amountduewidth,.13,"Amount Due",$border_debug,0,"R");309 // $pdf->Cell($amountduewidth,.13,"Amount Due",$border_debug,0,"R"); 310 310 311 311 $pdf->SetFont("Arial","B",10); 312 312 $pdf->SetXY($leftmargin,$tempnext+.2+.03); … … 316 316 $pdf->Cell($taxwidth,.15,currencyFormat($therecord["tax"]),$border_debug,0,"R"); 317 317 $pdf->Cell($shippingwidth,.15,currencyFormat($therecord["shipping"]),$border_debug,0,"R"); 318 318 $pdf->Cell($totalwidth,.15,currencyFormat($therecord["totalti"]),$border_debug,0,"R"); 319 $pdf->Cell($amountduewidth,.15,currencyFormat($therecord["amountdue"]),$border_debug,0,"R");319 // $pdf->Cell($amountduewidth,.15,currencyFormat($therecord["amountdue"]),$border_debug,0,"R"); 320 320 // If a tax area is defined, print the tax information 321 321 if($therecord["taxareaid"]) { 322 322 $taxstatement="select id, name, percentage from tax where id=".$therecord["taxareaid"];