@@ -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 | } |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | if ($this->codigo_edificacion) { |
| 110 | - $this->where_code = " AND r.codigo like '" . $this->codigo_edificacion . "%' "; |
|
| 110 | + $this->where_code = " AND r.codigo like '".$this->codigo_edificacion."%' "; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | if ($this->tipo === 'informacion') { |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | $this->offset = $this->confirmarValor($this->filter_request('offset'), 0); |
| 147 | 147 | $this->limit = $this->confirmarValor($this->filter_request('limit'), FS_ITEM_LIMIT); |
| 148 | 148 | $this->search = $this->confirmarValor($this->filter_request('search'), false); |
| 149 | - $this->sort = ($sort and $sort!='undefined')?$sort:'r.codigo, r.numero'; |
|
| 150 | - $this->order = ($order and $order!='undefined')?$order:'ASC'; |
|
| 149 | + $this->sort = ($sort and $sort != 'undefined') ? $sort : 'r.codigo, r.numero'; |
|
| 150 | + $this->order = ($order and $order != 'undefined') ? $order : 'ASC'; |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | public function informacion_edificaciones() |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | $this->resultado[] = $l; |
| 168 | 168 | } |
| 169 | 169 | //Verificamos los que están ocupados |
| 170 | - $this->inmuebles_libres = $inmuebles-$inmuebles_ocupados; |
|
| 170 | + $this->inmuebles_libres = $inmuebles - $inmuebles_ocupados; |
|
| 171 | 171 | $this->inmuebles_ocupados = $inmuebles_ocupados; |
| 172 | 172 | $this->total_vehiculos = $vehiculos; |
| 173 | 173 | $this->carpetasPlugin(); |
@@ -176,10 +176,10 @@ discard block |
||
| 176 | 176 | |
| 177 | 177 | public function generarArchivoExcel() |
| 178 | 178 | { |
| 179 | - $this->archivoXLSX = $this->exportDir . DIRECTORY_SEPARATOR . |
|
| 180 | - $this->archivo . "_" . $this->user->nick . ".xlsx"; |
|
| 181 | - $this->archivoXLSXPath = $this->publicPath . DIRECTORY_SEPARATOR . |
|
| 182 | - $this->archivo . "_" . $this->user->nick . ".xlsx"; |
|
| 179 | + $this->archivoXLSX = $this->exportDir.DIRECTORY_SEPARATOR. |
|
| 180 | + $this->archivo."_".$this->user->nick.".xlsx"; |
|
| 181 | + $this->archivoXLSXPath = $this->publicPath.DIRECTORY_SEPARATOR. |
|
| 182 | + $this->archivo."_".$this->user->nick.".xlsx"; |
|
| 183 | 183 | if (file_exists($this->archivoXLSX)) { |
| 184 | 184 | unlink($this->archivoXLSX); |
| 185 | 185 | } |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | |
| 365 | 365 | public function crearXLSX(&$writer, $hoja_nombre, $header, $headerText, $data) |
| 366 | 366 | { |
| 367 | - $style_header = array('border'=>'left,right,top,bottom','font'=>'Arial','font-size'=>10,'font-style'=>'bold'); |
|
| 367 | + $style_header = array('border'=>'left,right,top,bottom', 'font'=>'Arial', 'font-size'=>10, 'font-style'=>'bold'); |
|
| 368 | 368 | $writer->writeSheetRow($hoja_nombre, $headerText, $style_header); |
| 369 | 369 | $writer->writeSheetHeader($hoja_nombre, $header, true); |
| 370 | 370 | $this->agregarDatosXLSX($writer, $hoja_nombre, $data, $headerText); |
@@ -396,9 +396,9 @@ discard block |
||
| 396 | 396 | public function carpetasPlugin() |
| 397 | 397 | { |
| 398 | 398 | $basepath = dirname(__DIR__, 3); |
| 399 | - $this->documentosDir = $basepath . DIRECTORY_SEPARATOR . FS_MYDOCS . 'documentos'; |
|
| 400 | - $this->exportDir = $this->documentosDir . DIRECTORY_SEPARATOR . "informes_residentes"; |
|
| 401 | - $this->publicPath = FS_PATH . FS_MYDOCS . 'documentos' . DIRECTORY_SEPARATOR . 'informes_residentes'; |
|
| 399 | + $this->documentosDir = $basepath.DIRECTORY_SEPARATOR.FS_MYDOCS.'documentos'; |
|
| 400 | + $this->exportDir = $this->documentosDir.DIRECTORY_SEPARATOR."informes_residentes"; |
|
| 401 | + $this->publicPath = FS_PATH.FS_MYDOCS.'documentos'.DIRECTORY_SEPARATOR.'informes_residentes'; |
|
| 402 | 402 | if (!is_dir($this->documentosDir)) { |
| 403 | 403 | if (!mkdir($concurrentDirectory = $this->documentosDir) && !is_dir($concurrentDirectory)) { |
| 404 | 404 | throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory)); |
@@ -415,7 +415,7 @@ discard block |
||
| 415 | 415 | public function url() |
| 416 | 416 | { |
| 417 | 417 | if (isset($_REQUEST['inmueble'])) { |
| 418 | - return 'index.php?page=informe_residentes&inmueble=' . $_REQUEST['inmueble']; |
|
| 418 | + return 'index.php?page=informe_residentes&inmueble='.$_REQUEST['inmueble']; |
|
| 419 | 419 | } |
| 420 | 420 | |
| 421 | 421 | return parent::url(); |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | 'page_from' => __CLASS__, |
| 435 | 435 | 'page_to' => __CLASS__, |
| 436 | 436 | 'type' => 'head', |
| 437 | - 'text' => '<script src="' . FS_PATH . |
|
| 437 | + 'text' => '<script src="'.FS_PATH. |
|
| 438 | 438 | 'plugins/residentes/view/js/1/bootstrap-table.min.js" type="text/javascript"></script>', |
| 439 | 439 | 'params' => '' |
| 440 | 440 | ), |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | 'page_from' => __CLASS__, |
| 444 | 444 | 'page_to' => __CLASS__, |
| 445 | 445 | 'type' => 'head', |
| 446 | - 'text' => '<script src="' . FS_PATH . |
|
| 446 | + 'text' => '<script src="'.FS_PATH. |
|
| 447 | 447 | 'plugins/residentes/view/js/1/bootstrap-table-locale-all.min.js" type="text/javascript"></script>', |
| 448 | 448 | 'params' => '' |
| 449 | 449 | ), |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | 'page_from' => __CLASS__, |
| 453 | 453 | 'page_to' => __CLASS__, |
| 454 | 454 | 'type' => 'head', |
| 455 | - 'text' => '<script src="' . FS_PATH . |
|
| 455 | + 'text' => '<script src="'.FS_PATH. |
|
| 456 | 456 | 'plugins/residentes/view/js/plugins/bootstrap-table-filter.min.js" type="text/javascript"></script>', |
| 457 | 457 | 'params' => '' |
| 458 | 458 | ), |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | 'page_from' => __CLASS__, |
| 462 | 462 | 'page_to' => __CLASS__, |
| 463 | 463 | 'type' => 'head', |
| 464 | - 'text' => '<script src="' . FS_PATH . |
|
| 464 | + 'text' => '<script src="'.FS_PATH. |
|
| 465 | 465 | 'plugins/residentes/view/js/plugins/bootstrap-table-toolbar.min.js" type="text/javascript"></script>', |
| 466 | 466 | 'params' => '' |
| 467 | 467 | ), |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | 'page_from' => __CLASS__, |
| 471 | 471 | 'page_to' => __CLASS__, |
| 472 | 472 | 'type' => 'head', |
| 473 | - 'text' => '<script src="' . FS_PATH . |
|
| 473 | + 'text' => '<script src="'.FS_PATH. |
|
| 474 | 474 | 'plugins/residentes/view/js/plugins/bootstrap-table-mobile.min.js" type="text/javascript"></script>', |
| 475 | 475 | 'params' => '' |
| 476 | 476 | ), |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | 'page_from' => __CLASS__, |
| 480 | 480 | 'page_to' => __CLASS__, |
| 481 | 481 | 'type' => 'head', |
| 482 | - 'text' => '<script src="' . FS_PATH . 'view/js/chart.bundle.min.js" type="text/javascript"></script>', |
|
| 482 | + 'text' => '<script src="'.FS_PATH.'view/js/chart.bundle.min.js" type="text/javascript"></script>', |
|
| 483 | 483 | 'params' => '' |
| 484 | 484 | ), |
| 485 | 485 | array( |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | 'page_from' => __CLASS__, |
| 488 | 488 | 'page_to' => __CLASS__, |
| 489 | 489 | 'type' => 'head', |
| 490 | - 'text' => '<link rel="stylesheet" type="text/css" media="screen" href="' . FS_PATH . |
|
| 490 | + 'text' => '<link rel="stylesheet" type="text/css" media="screen" href="'.FS_PATH. |
|
| 491 | 491 | 'plugins/residentes/view/css/bootstrap-table.min.css"/>', |
| 492 | 492 | 'params' => '' |
| 493 | 493 | ), |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | foreach ($extensiones as $ext) { |
| 497 | 497 | $fsext0 = new fs_extension($ext); |
| 498 | 498 | if (!$fsext0->save()) { |
| 499 | - $this->new_error_msg('Imposible guardar los datos de la extensión ' . $ext['name'] . '.'); |
|
| 499 | + $this->new_error_msg('Imposible guardar los datos de la extensión '.$ext['name'].'.'); |
|
| 500 | 500 | } |
| 501 | 501 | } |
| 502 | 502 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $this->numero = $t['numero']; |
| 74 | 74 | $this->padre_tipo = $t['padre_tipo']; |
| 75 | 75 | $this->padre_id = $t['padre_id']; |
| 76 | - } else { |
|
| 76 | + }else { |
|
| 77 | 77 | $this->id = null; |
| 78 | 78 | $this->id_tipo = null; |
| 79 | 79 | $this->codigo_edificacion = null; |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $lista[] = $item; |
| 101 | 101 | } |
| 102 | 102 | return $lista; |
| 103 | - } else { |
|
| 103 | + }else { |
|
| 104 | 104 | return false; |
| 105 | 105 | } |
| 106 | 106 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | $item = new residentes_edificaciones_mapa($data[0]); |
| 122 | 122 | $item->desc_id = $this->edificaciones_tipo->get($item->id_tipo)->descripcion; |
| 123 | 123 | return $item; |
| 124 | - } else { |
|
| 124 | + }else { |
|
| 125 | 125 | return false; |
| 126 | 126 | } |
| 127 | 127 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | $item = new residentes_edificaciones_mapa($data[0]); |
| 143 | 143 | $item->desc_id = $this->edificaciones_tipo->get($item->id_tipo)->descripcion; |
| 144 | 144 | return $item; |
| 145 | - } else { |
|
| 145 | + }else { |
|
| 146 | 146 | return false; |
| 147 | 147 | } |
| 148 | 148 | } |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | */ |
| 156 | 156 | public function get_by_field($field, $value) |
| 157 | 157 | { |
| 158 | - $query = (is_string($value))?$this->var2str($value):$this->intval($value); |
|
| 158 | + $query = (is_string($value)) ? $this->var2str($value) : $this->intval($value); |
|
| 159 | 159 | $sql = "SELECT rem.*, ret.descripcion FROM ".$this->table_name." as rem, residentes_edificaciones_tipo as ret ". |
| 160 | 160 | " WHERE ".strtoupper(trim($field))." = ".$query. |
| 161 | 161 | " AND rem.id_tipo = ret.id order by codigo_edificacion ASC;"; |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | $lista[] = $item; |
| 169 | 169 | } |
| 170 | 170 | return $lista; |
| 171 | - } else { |
|
| 171 | + }else { |
|
| 172 | 172 | return false; |
| 173 | 173 | } |
| 174 | 174 | } |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | { |
| 178 | 178 | if (!$this->getEstructura()) { |
| 179 | 179 | return false; |
| 180 | - } else { |
|
| 180 | + }else { |
|
| 181 | 181 | return $this->getEstructura(); |
| 182 | 182 | } |
| 183 | 183 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | " padre_id = ".$this->intval($this->padre_id)." ". |
| 195 | 195 | "WHERE id = ".$this->intval($this->id).";"; |
| 196 | 196 | return $this->db->exec($sql); |
| 197 | - } else { |
|
| 197 | + }else { |
|
| 198 | 198 | $sql = "INSERT INTO ".$this->table_name. |
| 199 | 199 | " (id_tipo, codigo_edificacion, codigo_padre, numero, padre_tipo, padre_id) VALUES (". |
| 200 | 200 | $this->intval($this->id_tipo).", ". |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | $this->intval($this->padre_id).");"; |
| 206 | 206 | if ($this->db->exec($sql)) { |
| 207 | 207 | return true; |
| 208 | - } else { |
|
| 208 | + }else { |
|
| 209 | 209 | return false; |
| 210 | 210 | } |
| 211 | 211 | } |
@@ -237,9 +237,9 @@ discard block |
||
| 237 | 237 | return $lista; |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - public function buscar_ubicacion_inmueble($id,$linea) |
|
| 240 | + public function buscar_ubicacion_inmueble($id, $linea) |
|
| 241 | 241 | { |
| 242 | - $inicio_busqueda = ($linea===0)?"{\"":"{%\""; |
|
| 242 | + $inicio_busqueda = ($linea === 0) ? "{\"" : "{%\""; |
|
| 243 | 243 | $sql = "SELECT * FROM ".$this->table_name." WHERE codigo_interno LIKE '". |
| 244 | 244 | $inicio_busqueda.$id."\":%}' ORDER BY codigo;"; |
| 245 | 245 | $data = $this->db->select($sql); |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | $lista[] = $this->pertenencia($l); |
| 251 | 251 | } |
| 252 | 252 | return $lista; |
| 253 | - } else { |
|
| 253 | + }else { |
|
| 254 | 254 | return false; |
| 255 | 255 | } |
| 256 | 256 | } |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | */ |
| 263 | 263 | public function buscar_cantidad_inmuebles($id, $linea) |
| 264 | 264 | { |
| 265 | - $inicio_busqueda = ($linea===0)?"{\"":"{%\""; |
|
| 265 | + $inicio_busqueda = ($linea === 0) ? "{\"" : "{%\""; |
|
| 266 | 266 | $sql = "SELECT DISTINCT codigo FROM ".$this->table_name." WHERE codigo_interno LIKE '". |
| 267 | 267 | $inicio_busqueda.$id."\":%}' ORDER BY codigo;"; |
| 268 | 268 | $data = $this->db->select($sql); |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | $lista[] = $l; |
| 274 | 274 | } |
| 275 | 275 | return $lista; |
| 276 | - } else { |
|
| 276 | + }else { |
|
| 277 | 277 | return false; |
| 278 | 278 | } |
| 279 | 279 | } |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | $mapa = array(); |
| 284 | 284 | $linea = 0; |
| 285 | 285 | foreach ($this->edificaciones_tipo->all() as $data) { |
| 286 | - if ($linea===1) { |
|
| 286 | + if ($linea === 1) { |
|
| 287 | 287 | break; |
| 288 | 288 | } |
| 289 | 289 | $items = $this->buscar_cantidad_inmuebles($data->id, $data->padre); |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | $data = $this->db->select($sql); |
| 302 | 302 | if ($data) { |
| 303 | 303 | return $data[0]['cantidad']; |
| 304 | - } else { |
|
| 304 | + }else { |
|
| 305 | 305 | return false; |
| 306 | 306 | } |
| 307 | 307 | } |