function Cliente(CCliente $oCliente) { $this->SetFont('Arial', 'BU', 12); $this->Cell(0, 7, 'FACTURAR A:', 0, 0, 'L'); $this->Ln(); $this->SetFont('Arial', 'B', 12); $this->Cell(0, 7, $oCliente->getEmpresa(), 0, 0, 'L'); $this->Ln(); $this->SetFont('Arial', '', 12); $this->Cell(0, 7, $oCliente->getCifnif(), 0, 0, 'L'); $this->Ln(); $this->Cell(0, 7, $oCliente->getDireccion(), 0, 0, 'L'); $this->Ln(); $this->Cell(0, 7, $oCliente->getCodigoPostal() . ' - ' . $oCliente->getCiudad(), 0, 0, 'L'); $this->Ln(20); }
<dt><label></label></dt> <dd><label><?php echo $oCliente->getCifnif(); ?> </label></dd> <dt><label></label></dt> <dd><label><?php echo $oCliente->getDireccion(); ?> </label></dd> <dt><label></label></dt> <dd><label><?php echo $oCliente->getCodigoPostal(); ?> </label>-<label><?php echo $oCliente->getCiudad(); ?> </label></dd> </dl> <div class="clsDivFix"></div> <table> <thead> <tr> <th style="width:5%;">Item</th> <th>DESCRIPCIÓN</th> <th style="width:15%;">CANTIDAD</th> </tr> </thead> <tbody> <?php for ($i = 0; $i < count($arDetalles); $i++) {