@@ -71,81 +71,81 @@ discard block |
||
| 71 | 71 | if (imagepng(imagecreatefromstring(file_get_contents($this->logo)), FS_MYDOCS |
| 72 | 72 | . 'images/logo.png')) { |
| 73 | 73 | $this->pdf->addPngFromFile( |
| 74 | - FS_MYDOCS . 'images/logo.png', |
|
| 74 | + FS_MYDOCS.'images/logo.png', |
|
| 75 | 75 | self::LOGO_X, |
| 76 | 76 | self::LOGO_Y, |
| 77 | 77 | $tamanyo[0], |
| 78 | 78 | $tamanyo[1] |
| 79 | 79 | ); |
| 80 | - } else { |
|
| 80 | + }else { |
|
| 81 | 81 | $this->pdf->addJpegFromFile($this->logo, self::LOGO_X, self::LOGO_Y, $tamanyo[0], $tamanyo[1]); |
| 82 | 82 | } |
| 83 | - } else { |
|
| 83 | + }else { |
|
| 84 | 84 | $this->pdf->addJpegFromFile($this->logo, self::LOGO_X, self::LOGO_Y, $tamanyo[0], $tamanyo[1]); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | $this->pdf->ez['rightMargin'] = 40; |
| 88 | 88 | $this->pdf->ezText( |
| 89 | - "<b>" . fs_fix_html($empresa->nombre) . "</b>", |
|
| 89 | + "<b>".fs_fix_html($empresa->nombre)."</b>", |
|
| 90 | 90 | 12, |
| 91 | 91 | array('justification' => 'right') |
| 92 | 92 | ); |
| 93 | - $this->pdf->ezText(FS_CIFNIF . ": " . $empresa->cifnif, 8, array('justification' => 'right')); |
|
| 93 | + $this->pdf->ezText(FS_CIFNIF.": ".$empresa->cifnif, 8, array('justification' => 'right')); |
|
| 94 | 94 | |
| 95 | - $direccion = $empresa->direccion . "\n"; |
|
| 95 | + $direccion = $empresa->direccion."\n"; |
|
| 96 | 96 | if ($empresa->apartado) { |
| 97 | - $direccion .= ucfirst(FS_APARTADO) . ': ' . $empresa->apartado . ' - '; |
|
| 97 | + $direccion .= ucfirst(FS_APARTADO).': '.$empresa->apartado.' - '; |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | if ($empresa->codpostal) { |
| 101 | - $direccion .= 'CP: ' . $empresa->codpostal . ' - '; |
|
| 101 | + $direccion .= 'CP: '.$empresa->codpostal.' - '; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | if ($empresa->ciudad) { |
| 105 | - $direccion .= $empresa->ciudad . ' - '; |
|
| 105 | + $direccion .= $empresa->ciudad.' - '; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | if ($empresa->provincia) { |
| 109 | - $direccion .= '(' . $empresa->provincia . ')'; |
|
| 109 | + $direccion .= '('.$empresa->provincia.')'; |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | if ($empresa->telefono) { |
| 113 | - $direccion .= "\nTeléfono: " . $empresa->telefono; |
|
| 113 | + $direccion .= "\nTeléfono: ".$empresa->telefono; |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - $this->pdf->ezText(fs_fix_html($direccion) . "\n", 8, array('justification' => 'right')); |
|
| 116 | + $this->pdf->ezText(fs_fix_html($direccion)."\n", 8, array('justification' => 'right')); |
|
| 117 | 117 | $this->set_y(self::LOGO_Y + 10); |
| 118 | - } else { |
|
| 118 | + }else { |
|
| 119 | 119 | die('ERROR: no se encuentra la función imagecreatefromstring(). ' |
| 120 | 120 | . 'Y por tanto no se puede usar el logotipo en los documentos.'); |
| 121 | 121 | } |
| 122 | - } else { |
|
| 122 | + }else { |
|
| 123 | 123 | $this->pdf->ezText( |
| 124 | - "<b>" . fs_fix_html($empresa->nombre) . "</b>", |
|
| 124 | + "<b>".fs_fix_html($empresa->nombre)."</b>", |
|
| 125 | 125 | 12, |
| 126 | 126 | array('justification' => 'center') |
| 127 | 127 | ); |
| 128 | - $this->pdf->ezText(FS_CIFNIF . ": " . $empresa->cifnif, 8, array('justification' => 'center')); |
|
| 128 | + $this->pdf->ezText(FS_CIFNIF.": ".$empresa->cifnif, 8, array('justification' => 'center')); |
|
| 129 | 129 | |
| 130 | 130 | $direccion = $empresa->direccion; |
| 131 | 131 | if ($empresa->apartado) { |
| 132 | - $direccion .= ' - ' . ucfirst(FS_APARTADO) . ': ' . $empresa->apartado; |
|
| 132 | + $direccion .= ' - '.ucfirst(FS_APARTADO).': '.$empresa->apartado; |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | if ($empresa->codpostal) { |
| 136 | - $direccion .= ' - CP: ' . $empresa->codpostal; |
|
| 136 | + $direccion .= ' - CP: '.$empresa->codpostal; |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | if ($empresa->ciudad) { |
| 140 | - $direccion .= ' - ' . $empresa->ciudad; |
|
| 140 | + $direccion .= ' - '.$empresa->ciudad; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | if ($empresa->provincia) { |
| 144 | - $direccion .= ' (' . $empresa->provincia . ')'; |
|
| 144 | + $direccion .= ' ('.$empresa->provincia.')'; |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | if ($empresa->telefono) { |
| 148 | - $direccion .= ' - Teléfono: ' . $empresa->telefono; |
|
| 148 | + $direccion .= ' - Teléfono: '.$empresa->telefono; |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | $this->pdf->ezText(fs_fix_html($direccion), 8, array('justification' => 'center')); |
@@ -166,9 +166,9 @@ discard block |
||
| 166 | 166 | $pdf_doc->new_table(); |
| 167 | 167 | $pdf_doc->add_table_row( |
| 168 | 168 | array( |
| 169 | - 'campo1' => "<b>" . $tipo_doc . "</b>", |
|
| 169 | + 'campo1' => "<b>".$tipo_doc."</b>", |
|
| 170 | 170 | 'dato1' => '', |
| 171 | - 'campo2' => "<b>Fecha Impresión:</b> " . \date('d-m-Y H:i:s') |
|
| 171 | + 'campo2' => "<b>Fecha Impresión:</b> ".\date('d-m-Y H:i:s') |
|
| 172 | 172 | ) |
| 173 | 173 | ); |
| 174 | 174 | |
@@ -176,27 +176,27 @@ discard block |
||
| 176 | 176 | array( |
| 177 | 177 | 'campo1' => "<b>Residente:</b>", |
| 178 | 178 | 'dato1' => fs_fix_html($this->cliente_residente->nombre), |
| 179 | - 'campo2' => "<b>Tipo Residente:</b> " . $tipo_residente |
|
| 179 | + 'campo2' => "<b>Tipo Residente:</b> ".$tipo_residente |
|
| 180 | 180 | ) |
| 181 | 181 | ); |
| 182 | 182 | |
| 183 | 183 | $row = array( |
| 184 | 184 | 'campo1' => "<b>Inmueble:</b>", |
| 185 | - 'dato1' => fs_fix_html($this->cliente_residente->inmueble->codigo_externo() . |
|
| 186 | - ' - ' . $this->cliente_residente->inmueble->numero), |
|
| 185 | + 'dato1' => fs_fix_html($this->cliente_residente->inmueble->codigo_externo(). |
|
| 186 | + ' - '.$this->cliente_residente->inmueble->numero), |
|
| 187 | 187 | 'campo2' => '' |
| 188 | 188 | ); |
| 189 | 189 | |
| 190 | 190 | if (!$this->cliente_residente) { |
| 191 | 191 | /// nada |
| 192 | 192 | } elseif ($this->cliente_residente->telefono1) { |
| 193 | - $row['campo2'] = "<b>Teléfonos:</b> " . $this->cliente_residente->telefono1; |
|
| 193 | + $row['campo2'] = "<b>Teléfonos:</b> ".$this->cliente_residente->telefono1; |
|
| 194 | 194 | if ($this->cliente_residente->telefono2) { |
| 195 | - $row['campo2'] .= "\n" . $this->cliente_residente->telefono2; |
|
| 195 | + $row['campo2'] .= "\n".$this->cliente_residente->telefono2; |
|
| 196 | 196 | $lppag -= 2; |
| 197 | 197 | } |
| 198 | 198 | } elseif ($this->cliente_residente->telefono2) { |
| 199 | - $row['campo2'] = "<b>Teléfonos:</b> " . $this->cliente_residente->telefono2; |
|
| 199 | + $row['campo2'] = "<b>Teléfonos:</b> ".$this->cliente_residente->telefono2; |
|
| 200 | 200 | } |
| 201 | 201 | $pdf_doc->add_table_row($row); |
| 202 | 202 | |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | [$table_header, $array_cols] = $this->generar_pdf_lineas_tablas($tipo); |
| 245 | 245 | $pdf_doc->add_table_header($table_header); |
| 246 | 246 | |
| 247 | - for ($i = $linea_actual; (($linea_actual < ($lppag + $i)) && ( $linea_actual < count($items)));) { |
|
| 247 | + for ($i = $linea_actual; (($linea_actual < ($lppag + $i)) && ($linea_actual < count($items)));) { |
|
| 248 | 248 | $fila = $this->generar_pdf_lineas_fila($tipo, $items, $linea_actual); |
| 249 | 249 | $pdf_doc->add_table_row($fila); |
| 250 | 250 | $linea_actual++; |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | ); |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - return array($table_header,$array_cols); |
|
| 289 | + return array($table_header, $array_cols); |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | public function generar_pdf_lineas_fila($tipo, $items, $linea_actual) |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | true, |
| 304 | 304 | FS_NF0 |
| 305 | 305 | ), |
| 306 | - 'descuento' => $residentes_controller->show_numero($items[$linea_actual]->dtopor) . " %", |
|
| 306 | + 'descuento' => $residentes_controller->show_numero($items[$linea_actual]->dtopor)." %", |
|
| 307 | 307 | 'total' => $residentes_controller->show_precio( |
| 308 | 308 | $items[$linea_actual]->pvptotal, |
| 309 | 309 | $residentes_controller->empresa->coddivisa, |
@@ -340,7 +340,7 @@ discard block |
||
| 340 | 340 | } |
| 341 | 341 | $aux = explode("\n", $lin->descripcion); |
| 342 | 342 | if (count($aux) > 1) { |
| 343 | - $linea_size += 0.5 * ( count($aux) - 1); |
|
| 343 | + $linea_size += 0.5 * (count($aux) - 1); |
|
| 344 | 344 | } |
| 345 | 345 | if ($linea_size > 1) { |
| 346 | 346 | $lppag2 -= $linea_size - 1; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | public function crear_documento($tipo_documento) |
| 80 | 80 | { |
| 81 | - $this->archivo = \date('dmYhis') . '.pdf'; |
|
| 81 | + $this->archivo = \date('dmYhis').'.pdf'; |
|
| 82 | 82 | switch ($tipo_documento) { |
| 83 | 83 | case 'informacion_cobros': |
| 84 | 84 | $this->crearEstadoCuenta(); |
@@ -125,9 +125,9 @@ discard block |
||
| 125 | 125 | { |
| 126 | 126 | $this->documento = new residentes_pdf('letter', 'portrait'); |
| 127 | 127 | $this->documento->cliente_residente = $this->cliente_residente; |
| 128 | - $this->documento->pdf->addInfo('Title', 'Pagos Residente ' . |
|
| 128 | + $this->documento->pdf->addInfo('Title', 'Pagos Residente '. |
|
| 129 | 129 | $this->cliente_residente->codcliente); |
| 130 | - $this->documento->pdf->addInfo('Subject', 'Pagos del Residente ' . |
|
| 130 | + $this->documento->pdf->addInfo('Subject', 'Pagos del Residente '. |
|
| 131 | 131 | $this->cliente_residente->codcliente); |
| 132 | 132 | $this->documento->pdf->addInfo('Author', $this->empresa->nombre); |
| 133 | 133 | $this->documento->pdf->ezSetMargins(10, 10, 10, 10); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | public function crearFacturaDetallada() |
| 138 | 138 | { |
| 139 | 139 | $customerInfo = (array) $this->cliente_residente; |
| 140 | - $customerInfo['direccion'] = trim($this->cliente_residente->inmueble->codigo_externo()) . ' numero ' |
|
| 140 | + $customerInfo['direccion'] = trim($this->cliente_residente->inmueble->codigo_externo()).' numero ' |
|
| 141 | 141 | . $this->cliente_residente->inmueble->numero; |
| 142 | 142 | $datosFactura = $this->datosFactura(); |
| 143 | 143 | $datosEmpresa = (array) $this->empresa; |
@@ -149,13 +149,13 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | if ($this->filter_request('info_accion') == 'enviar') { |
| 151 | 151 | $this->documento->Output( |
| 152 | - 'tmp/' . FS_TMP_NAME . 'enviar/', |
|
| 152 | + 'tmp/'.FS_TMP_NAME.'enviar/', |
|
| 153 | 153 | $this->archivo |
| 154 | 154 | ); |
| 155 | - } else { |
|
| 155 | + }else { |
|
| 156 | 156 | $this->documento->Output( |
| 157 | 157 | 'I', |
| 158 | - 'factura_' .$datosFactura[0]['numero2']. '_' . \date('dmYhis') . '.pdf' |
|
| 158 | + 'factura_'.$datosFactura[0]['numero2'].'_'.\date('dmYhis').'.pdf' |
|
| 159 | 159 | ); |
| 160 | 160 | } |
| 161 | 161 | } |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | } |
| 205 | 205 | $this->documento->set_y(80); |
| 206 | 206 | if ($this->empresa->pie_factura) { |
| 207 | - $this->documento->pdf->addText(20, 40, 8, fs_fix_html('<b>Generado por:</b> ' . |
|
| 207 | + $this->documento->pdf->addText(20, 40, 8, fs_fix_html('<b>Generado por:</b> '. |
|
| 208 | 208 | $this->user->get_agente_fullname()), 0); |
| 209 | 209 | $this->documento->pdf->addText( |
| 210 | 210 | 10, |
@@ -215,9 +215,9 @@ discard block |
||
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | if ($this->filter_request('info_accion') == 'enviar') { |
| 218 | - $this->documento->save('tmp/' . FS_TMP_NAME . 'enviar/' . $this->archivo); |
|
| 219 | - } else { |
|
| 220 | - $this->documento->show('documento_cobros_' . \date('dmYhis') . '.pdf'); |
|
| 218 | + $this->documento->save('tmp/'.FS_TMP_NAME.'enviar/'.$this->archivo); |
|
| 219 | + }else { |
|
| 220 | + $this->documento->show('documento_cobros_'.\date('dmYhis').'.pdf'); |
|
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | 223 | |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | { |
| 226 | 226 | $this->crear_documento($tipo_documento); |
| 227 | 227 | $tipo_doc = $this->generar_tipo_doc($tipo_documento); |
| 228 | - if (file_exists('tmp/' . FS_TMP_NAME . 'enviar/' . $this->archivo)) { |
|
| 228 | + if (file_exists('tmp/'.FS_TMP_NAME.'enviar/'.$this->archivo)) { |
|
| 229 | 229 | $mail = $this->empresa->new_mail(); |
| 230 | 230 | $mail->FromName = $this->user->get_agente_fullname(); |
| 231 | 231 | |
@@ -237,22 +237,22 @@ discard block |
||
| 237 | 237 | if ($_POST['email_copia']) { |
| 238 | 238 | if (isset($_POST['cco'])) { |
| 239 | 239 | $mail->addBCC($_POST['email_copia'], $this->cliente_residente->nombre); |
| 240 | - } else { |
|
| 240 | + }else { |
|
| 241 | 241 | $mail->addCC($_POST['email_copia'], $this->cliente_residente->nombre); |
| 242 | 242 | } |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - $mail->Subject = $this->empresa->nombre . ': ' . $tipo_doc; |
|
| 245 | + $mail->Subject = $this->empresa->nombre.': '.$tipo_doc; |
|
| 246 | 246 | |
| 247 | 247 | if ($this->is_html($_POST['mensaje'])) { |
| 248 | 248 | $mail->AltBody = strip_tags($_POST['mensaje']); |
| 249 | 249 | $mail->msgHTML($_POST['mensaje']); |
| 250 | 250 | $mail->isHTML(true); |
| 251 | - } else { |
|
| 251 | + }else { |
|
| 252 | 252 | $mail->Body = $_POST['mensaje']; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - $mail->addAttachment('tmp/' . FS_TMP_NAME . 'enviar/' . $this->archivo); |
|
| 255 | + $mail->addAttachment('tmp/'.FS_TMP_NAME.'enviar/'.$this->archivo); |
|
| 256 | 256 | if (is_uploaded_file($_FILES['adjunto']['tmp_name'])) { |
| 257 | 257 | $mail->addAttachment($_FILES['adjunto']['tmp_name'], $_FILES['adjunto']['name']); |
| 258 | 258 | } |
@@ -260,12 +260,12 @@ discard block |
||
| 260 | 260 | if ($this->empresa->mail_connect($mail) && $mail->send()) { |
| 261 | 261 | $this->new_message('Mensaje enviado correctamente.'); |
| 262 | 262 | $this->empresa->save_mail($mail); |
| 263 | - } else { |
|
| 264 | - $this->new_error_msg("Error al enviar el email: " . $mail->ErrorInfo); |
|
| 263 | + }else { |
|
| 264 | + $this->new_error_msg("Error al enviar el email: ".$mail->ErrorInfo); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | - unlink('tmp/' . FS_TMP_NAME . 'enviar/' . $this->archivo); |
|
| 268 | - } else { |
|
| 267 | + unlink('tmp/'.FS_TMP_NAME.'enviar/'.$this->archivo); |
|
| 268 | + }else { |
|
| 269 | 269 | $this->new_error_msg('Imposible generar el PDF.'); |
| 270 | 270 | } |
| 271 | 271 | } |
@@ -501,8 +501,8 @@ discard block |
||
| 501 | 501 | { |
| 502 | 502 | $this->existe_tesoreria(); |
| 503 | 503 | $this->cliente_residente = false; |
| 504 | - if (!file_exists('tmp/' . FS_TMP_NAME . 'enviar') && |
|
| 505 | - !mkdir($concurrentDirectory = 'tmp/' . FS_TMP_NAME . 'enviar') && |
|
| 504 | + if (!file_exists('tmp/'.FS_TMP_NAME.'enviar') && |
|
| 505 | + !mkdir($concurrentDirectory = 'tmp/'.FS_TMP_NAME.'enviar') && |
|
| 506 | 506 | !is_dir($concurrentDirectory)) { |
| 507 | 507 | throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory)); |
| 508 | 508 | } |