예제 #1
0
 function DatosBurban(CFactura $oFactura)
 {
     $dFechaLarga = CUtils::fFechaLarga($oFactura->getFecha());
     $sEmpresa = "Burban Publicidad, S.L.";
     $sNIF = "B85516573";
     $x = 115;
     //Arial bold 15
     $this->SetFont('Arial', 'B', 12);
     $this->Cell($x);
     $this->Cell(1, 7, 'FECHA:', 20, 0, 'L');
     $this->Ln();
     $this->SetFont('Arial', '', 12);
     $this->Cell($x);
     $this->Cell(1, 7, $dFechaLarga, 20, 0, 'L');
     $this->Ln();
     $this->Cell($x);
     $this->Cell(1, 6, $sEmpresa, 20, 0, 'L');
     $this->Ln();
     $this->Cell($x);
     $this->Cell(1, 6, $sNIF, 20, 0, 'L');
     $this->Ln(20);
 }