Changeset 364
- Timestamp:
- 11/12/07 14:33:14
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/phpbms/modules/bms/report/invoices_pdf_class.php
r356 r364 205 205 206 206 $pdf = &$this->pdf; 207 207 208 208 209 $pdf->AddPage(); … … 218 219 $pdf->SetXY(-1*($titleWidth+$pdf->rightmargin), $pdf->topmargin); 219 220 $pdf->Cell($titleWidth, $titleHeight,$this->title, $pdf->borderDebug,1,"R"); 220 221 222 $startY = $pdf->GetY() + 0.75; 223 224 //page number? 225 $pdf->setStyle("normal"); 226 $pageNoWidth = 1; 227 $pdf->SetFontSize(8); 228 $pdf->SetXY(-1*($pageNoWidth + $pdf->rightmargin), $pdf->topmargin + $titleHeight + 0.25); 229 $pdf->Cell($pageNoWidth, 0.17, "page: ".$this->page, $pdf->borderDebug,1,"R"); 230 231 221 232 //SOLD TO 222 $startY = $pdf->GetY() + 0.75;223 224 233 $boxHeight = 1.75; 225 234 $boxWidth = ($pdf->paperwidth - $pdf->leftmargin - $pdf->rightmargin)/2 -0.0625;