@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | { |
| 75 | 75 | parent::__construct(); |
| 76 | 76 | $this->SetTitle('Documento Tributario Electrónico (DTE) de Chile by LibreDTE'); |
| 77 | - $this->papelContinuo = $papelContinuo === true ? 80 : $papelContinuo; |
|
| 77 | + $this->papelContinuo = $papelContinuo===true ? 80 : $papelContinuo; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | $this->Ln(); |
| 194 | 194 | // datos del documento |
| 195 | 195 | $y = []; |
| 196 | - $y[] = $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor'])?$dte['Encabezado']['Emisor']['CdgVendedor']:null); |
|
| 196 | + $y[] = $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor']) ? $dte['Encabezado']['Emisor']['CdgVendedor'] : null); |
|
| 197 | 197 | $y[] = $this->agregarReceptor($dte['Encabezado']); |
| 198 | 198 | $this->setY(max($y)); |
| 199 | 199 | $this->agregarTraslado( |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | $this->AddPage('P', [$height ? $height : $this->papel_continuo_alto, $width]); |
| 243 | 243 | $x = 1; |
| 244 | 244 | $y = 5; |
| 245 | - $this->SetXY($x,$y); |
|
| 245 | + $this->SetXY($x, $y); |
|
| 246 | 246 | // agregar datos del documento |
| 247 | 247 | $this->setFont('', '', 8); |
| 248 | 248 | $this->MultiTexto(!empty($dte['Encabezado']['Emisor']['RznSoc']) ? $dte['Encabezado']['Emisor']['RznSoc'] : $dte['Encabezado']['Emisor']['RznSocEmisor'], $x, null, '', $width-2); |
@@ -354,15 +354,15 @@ discard block |
||
| 354 | 354 | $dte['Encabezado']['IdDoc']['TipoDTE'], |
| 355 | 355 | $dte['Encabezado']['IdDoc']['Folio'], |
| 356 | 356 | isset($dte['Encabezado']['Emisor']['CmnaOrigen']) ? $dte['Encabezado']['Emisor']['CmnaOrigen'] : 'Sin comuna', // siempre deberÃa tener comuna |
| 357 | - $x_start, $y_start, $width-($x_start*4), 10, |
|
| 358 | - [0,0,0] |
|
| 357 | + $x_start, $y_start, $width-($x_start * 4), 10, |
|
| 358 | + [0, 0, 0] |
|
| 359 | 359 | ); |
| 360 | - $y = $this->agregarEmisor($dte['Encabezado']['Emisor'], $x_start, $y+2, $width-($x_start*45), 8, 9, [0,0,0]); |
|
| 360 | + $y = $this->agregarEmisor($dte['Encabezado']['Emisor'], $x_start, $y+2, $width-($x_start * 45), 8, 9, [0, 0, 0]); |
|
| 361 | 361 | // datos del documento |
| 362 | 362 | $this->SetY($y); |
| 363 | 363 | $this->Ln(); |
| 364 | 364 | $this->setFont('', '', 8); |
| 365 | - $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor'])?$dte['Encabezado']['Emisor']['CdgVendedor']:null, $x_start, $offset, false); |
|
| 365 | + $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor']) ? $dte['Encabezado']['Emisor']['CdgVendedor'] : null, $x_start, $offset, false); |
|
| 366 | 366 | $this->agregarReceptor($dte['Encabezado'], $x_start, $offset); |
| 367 | 367 | $this->agregarTraslado( |
| 368 | 368 | !empty($dte['Encabezado']['IdDoc']['IndTraslado']) ? $dte['Encabezado']['IdDoc']['IndTraslado'] : null, |
@@ -433,14 +433,14 @@ discard block |
||
| 433 | 433 | 2, |
| 434 | 434 | 45, |
| 435 | 435 | 9, |
| 436 | - [0,0,0] |
|
| 436 | + [0, 0, 0] |
|
| 437 | 437 | ); |
| 438 | - $y[] = $this->agregarEmisor($dte['Encabezado']['Emisor'], 1, 2, 20, 30, 9, [0,0,0], $y[0]); |
|
| 438 | + $y[] = $this->agregarEmisor($dte['Encabezado']['Emisor'], 1, 2, 20, 30, 9, [0, 0, 0], $y[0]); |
|
| 439 | 439 | $this->SetY(max($y)); |
| 440 | 440 | $this->Ln(); |
| 441 | 441 | // datos del documento |
| 442 | 442 | $this->setFont('', '', 8); |
| 443 | - $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor'])?$dte['Encabezado']['Emisor']['CdgVendedor']:null, $x_start, $offset, false); |
|
| 443 | + $this->agregarDatosEmision($dte['Encabezado']['IdDoc'], !empty($dte['Encabezado']['Emisor']['CdgVendedor']) ? $dte['Encabezado']['Emisor']['CdgVendedor'] : null, $x_start, $offset, false); |
|
| 444 | 444 | $this->agregarReceptor($dte['Encabezado'], $x_start, $offset); |
| 445 | 445 | $this->agregarTraslado( |
| 446 | 446 | !empty($dte['Encabezado']['IdDoc']['IndTraslado']) ? $dte['Encabezado']['IdDoc']['IndTraslado'] : null, |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | if ($this->cedible and !in_array($dte['Encabezado']['IdDoc']['TipoDTE'], $this->sinAcuseRecibo)) { |
| 474 | 474 | $this->agregarAcuseRecibo(63, $y+6, 45, 40, 15); |
| 475 | 475 | $this->setFont('', 'B', 8); |
| 476 | - $this->Texto('CEDIBLE'.($dte['Encabezado']['IdDoc']['TipoDTE']==52?' CON SU FACTURA':''), $x_start, $this->y+1, 'L'); |
|
| 476 | + $this->Texto('CEDIBLE'.($dte['Encabezado']['IdDoc']['TipoDTE']==52 ? ' CON SU FACTURA' : ''), $x_start, $this->y+1, 'L'); |
|
| 477 | 477 | } |
| 478 | 478 | // si el alto no se pasó, entonces es con autocálculo, se elimina esta página y se pasa el alto |
| 479 | 479 | // que se logró determinar para crear la página con el alto correcto |
@@ -504,16 +504,16 @@ discard block |
||
| 504 | 504 | // logo del documento |
| 505 | 505 | if (isset($this->logo)) { |
| 506 | 506 | // logo centrado (papel continuo) |
| 507 | - if (!empty($this->logo['posicion']) and $this->logo['posicion'] == 'C') { |
|
| 507 | + if (!empty($this->logo['posicion']) and $this->logo['posicion']=='C') { |
|
| 508 | 508 | $logo_w = null; |
| 509 | 509 | $logo_y = null; |
| 510 | 510 | $logo_position = 'C'; |
| 511 | 511 | $logo_next_pointer = 'N'; |
| 512 | 512 | } |
| 513 | 513 | // logo a la derecha (posicion=0) o arriba (posicion=1) |
| 514 | - else if (empty($this->logo['posicion']) or $this->logo['posicion'] == 1) { |
|
| 514 | + else if (empty($this->logo['posicion']) or $this->logo['posicion']==1) { |
|
| 515 | 515 | $logo_w = !$this->logo['posicion'] ? $w_img : null; |
| 516 | - $logo_y = $this->logo['posicion'] ? $w_img/2 : null; |
|
| 516 | + $logo_y = $this->logo['posicion'] ? $w_img / 2 : null; |
|
| 517 | 517 | $logo_position = ''; |
| 518 | 518 | $logo_next_pointer = 'T'; |
| 519 | 519 | } |
@@ -532,17 +532,17 @@ discard block |
||
| 532 | 532 | $logo_w, |
| 533 | 533 | $logo_y, |
| 534 | 534 | 'PNG', |
| 535 | - (isset($emisor['url'])?$emisor['url']:''), |
|
| 535 | + (isset($emisor['url']) ? $emisor['url'] : ''), |
|
| 536 | 536 | $logo_next_pointer, |
| 537 | 537 | 2, |
| 538 | 538 | 300, |
| 539 | 539 | $logo_position |
| 540 | 540 | ); |
| 541 | - if (!empty($this->logo['posicion']) and $this->logo['posicion'] == 'C') { |
|
| 541 | + if (!empty($this->logo['posicion']) and $this->logo['posicion']=='C') { |
|
| 542 | 542 | $w += 40; |
| 543 | 543 | } else { |
| 544 | 544 | if ($this->logo['posicion']) { |
| 545 | - $this->SetY($this->y + ($w_img/2)); |
|
| 545 | + $this->SetY($this->y+($w_img / 2)); |
|
| 546 | 546 | $w += 40; |
| 547 | 547 | } else { |
| 548 | 548 | $x = $this->x+3; |
@@ -555,20 +555,20 @@ discard block |
||
| 555 | 555 | // agregar datos del emisor |
| 556 | 556 | if ($agregarDatosEmisor) { |
| 557 | 557 | $this->setFont('', 'B', $font_size ? $font_size : 14); |
| 558 | - $this->SetTextColorArray($color===null?[32, 92, 144]:$color); |
|
| 559 | - $this->MultiTexto(!empty($emisor['RznSoc']) ? $emisor['RznSoc'] : $emisor['RznSocEmisor'], $x, $this->y+2, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 558 | + $this->SetTextColorArray($color===null ? [32, 92, 144] : $color); |
|
| 559 | + $this->MultiTexto(!empty($emisor['RznSoc']) ? $emisor['RznSoc'] : $emisor['RznSocEmisor'], $x, $this->y+2, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 560 | 560 | $this->setFont('', 'B', $font_size ? $font_size : 9); |
| 561 | - $this->SetTextColorArray([0,0,0]); |
|
| 562 | - $this->MultiTexto(!empty($emisor['GiroEmis']) ? $emisor['GiroEmis'] : $emisor['GiroEmisor'], $x, $this->y, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 561 | + $this->SetTextColorArray([0, 0, 0]); |
|
| 562 | + $this->MultiTexto(!empty($emisor['GiroEmis']) ? $emisor['GiroEmis'] : $emisor['GiroEmisor'], $x, $this->y, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 563 | 563 | $direccion = !empty($emisor['DirOrigen']) ? $emisor['DirOrigen'] : null; |
| 564 | 564 | $comuna = !empty($emisor['CmnaOrigen']) ? $emisor['CmnaOrigen'] : null; |
| 565 | 565 | $ciudad = !empty($emisor['CiudadOrigen']) ? $emisor['CiudadOrigen'] : \sasco\LibreDTE\Chile::getCiudad($comuna); |
| 566 | - $this->MultiTexto($direccion.($comuna?(', '.$comuna):'').($ciudad?(', '.$ciudad):''), $x, $this->y, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 566 | + $this->MultiTexto($direccion.($comuna ? (', '.$comuna) : '').($ciudad ? (', '.$ciudad) : ''), $x, $this->y, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 567 | 567 | if (!empty($emisor['Sucursal'])) { |
| 568 | - $this->MultiTexto('Sucursal: '.$emisor['Sucursal'], $x, $this->y, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 568 | + $this->MultiTexto('Sucursal: '.$emisor['Sucursal'], $x, $this->y, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 569 | 569 | } |
| 570 | 570 | if (!empty($this->casa_matriz)) { |
| 571 | - $this->MultiTexto('Casa matriz: '.$this->casa_matriz, $x, $this->y, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 571 | + $this->MultiTexto('Casa matriz: '.$this->casa_matriz, $x, $this->y, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 572 | 572 | } |
| 573 | 573 | $contacto = []; |
| 574 | 574 | if (!empty($emisor['Telefono'])) { |
@@ -583,7 +583,7 @@ discard block |
||
| 583 | 583 | $contacto[] = $emisor['CorreoEmisor']; |
| 584 | 584 | } |
| 585 | 585 | if ($contacto) { |
| 586 | - $this->MultiTexto(implode(' / ', $contacto), $x, $this->y, 'L', ($h_folio and $h_folio < $this->getY()) ? $w_all : $w); |
|
| 586 | + $this->MultiTexto(implode(' / ', $contacto), $x, $this->y, 'L', ($h_folio and $h_folio<$this->getY()) ? $w_all : $w); |
|
| 587 | 587 | } |
| 588 | 588 | } |
| 589 | 589 | return $this->y; |
@@ -613,12 +613,12 @@ discard block |
||
| 613 | 613 | protected function agregarFolio($rut, $tipo, $folio, $sucursal_sii = null, $x = 130, $y = 15, $w = 70, $font_size = null, array $color = null) |
| 614 | 614 | { |
| 615 | 615 | if ($color===null) { |
| 616 | - $color = $tipo ? ($tipo==52 ? [0,172,140] : [255,0,0]) : [0,0,0]; |
|
| 616 | + $color = $tipo ? ($tipo==52 ? [0, 172, 140] : [255, 0, 0]) : [0, 0, 0]; |
|
| 617 | 617 | } |
| 618 | 618 | $this->SetTextColorArray($color); |
| 619 | 619 | // colocar rut emisor, glosa documento y folio |
| 620 | 620 | list($rut, $dv) = explode('-', $rut); |
| 621 | - $this->setFont ('', 'B', $font_size ? $font_size : 15); |
|
| 621 | + $this->setFont('', 'B', $font_size ? $font_size : 15); |
|
| 622 | 622 | $this->MultiTexto('R.U.T.: '.$this->num($rut).'-'.$dv, $x, $y+4, 'C', $w); |
| 623 | 623 | $this->setFont('', 'B', $font_size ? $font_size : 12); |
| 624 | 624 | $this->MultiTexto($this->getTipo($tipo, $folio), $x, null, 'C', $w); |
@@ -631,7 +631,7 @@ discard block |
||
| 631 | 631 | if ($tipo) { |
| 632 | 632 | $this->Texto('S.I.I. - '.\sasco\LibreDTE\Sii::getDireccionRegional($sucursal_sii), $x, $this->getY()+4, 'C', $w); |
| 633 | 633 | } |
| 634 | - $this->SetTextColorArray([0,0,0]); |
|
| 634 | + $this->SetTextColorArray([0, 0, 0]); |
|
| 635 | 635 | $this->Ln(); |
| 636 | 636 | return $this->y; |
| 637 | 637 | } |
@@ -745,10 +745,10 @@ discard block |
||
| 745 | 745 | } |
| 746 | 746 | if (!empty($receptor['RznSocRecep'])) { |
| 747 | 747 | $this->setFont('', 'B', null); |
| 748 | - $this->Texto(in_array($this->dte, [39, 41]) ? 'Nombre' : ($x==10?'Razón social':'Razón soc.'), $x); |
|
| 748 | + $this->Texto(in_array($this->dte, [39, 41]) ? 'Nombre' : ($x==10 ? 'Razón social' : 'Razón soc.'), $x); |
|
| 749 | 749 | $this->Texto(':', $x+$offset); |
| 750 | 750 | $this->setFont('', '', null); |
| 751 | - $this->MultiTexto($receptor['RznSocRecep'], $x+$offset+2, null, '', $x==10?105:0); |
|
| 751 | + $this->MultiTexto($receptor['RznSocRecep'], $x+$offset+2, null, '', $x==10 ? 105 : 0); |
|
| 752 | 752 | } |
| 753 | 753 | if (!empty($receptor['GiroRecep'])) { |
| 754 | 754 | $this->setFont('', 'B', null); |
@@ -765,7 +765,7 @@ discard block |
||
| 765 | 765 | $ciudad = !empty($receptor['CiudadRecep']) ? $receptor['CiudadRecep'] : ( |
| 766 | 766 | !empty($receptor['CmnaRecep']) ? \sasco\LibreDTE\Chile::getCiudad($receptor['CmnaRecep']) : '' |
| 767 | 767 | ); |
| 768 | - $this->MultiTexto($receptor['DirRecep'].(!empty($receptor['CmnaRecep'])?(', '.$receptor['CmnaRecep']):'').($ciudad?(', '.$ciudad):''), $x+$offset+2); |
|
| 768 | + $this->MultiTexto($receptor['DirRecep'].(!empty($receptor['CmnaRecep']) ? (', '.$receptor['CmnaRecep']) : '').($ciudad ? (', '.$ciudad) : ''), $x+$offset+2); |
|
| 769 | 769 | } |
| 770 | 770 | if (!empty($receptor['Extranjero']['Nacionalidad'])) { |
| 771 | 771 | $this->setFont('', 'B', null); |
@@ -806,7 +806,7 @@ discard block |
||
| 806 | 806 | $this->Texto('Cód. recep.', $x); |
| 807 | 807 | $this->Texto(':', $x+$offset); |
| 808 | 808 | $this->setFont('', '', null); |
| 809 | - $this->MultiTexto($receptor['CdgIntRecep'], $x+$offset+2, null, '', $x==10?105:0); |
|
| 809 | + $this->MultiTexto($receptor['CdgIntRecep'], $x+$offset+2, null, '', $x==10 ? 105 : 0); |
|
| 810 | 810 | } |
| 811 | 811 | return $this->GetY(); |
| 812 | 812 | } |
@@ -903,7 +903,7 @@ discard block |
||
| 903 | 903 | { |
| 904 | 904 | if (!isset($referencias[0])) |
| 905 | 905 | $referencias = [$referencias]; |
| 906 | - foreach($referencias as $r) { |
|
| 906 | + foreach ($referencias as $r) { |
|
| 907 | 907 | $texto = $r['NroLinRef'].' - '; |
| 908 | 908 | if (!empty($r['TpoDocRef'])) { |
| 909 | 909 | $texto .= $this->getTipo($r['TpoDocRef']).' '; |
@@ -964,7 +964,7 @@ discard block |
||
| 964 | 964 | // quitar columnas |
| 965 | 965 | foreach ($item as $col => $valor) { |
| 966 | 966 | if ($col=='DscItem' and !empty($item['DscItem'])) { |
| 967 | - $item['NmbItem'] .= !$this->item_detalle_posicion ? ($html?'<br/>':"\n") : ': '; |
|
| 967 | + $item['NmbItem'] .= !$this->item_detalle_posicion ? ($html ? '<br/>' : "\n") : ': '; |
|
| 968 | 968 | $item['DscItem'] = $html ? str_replace("\n", '<br/>', $item['DscItem']) : str_replace(['<br/>', '<br>'], "\n", $item['DscItem']); |
| 969 | 969 | if ($html) { |
| 970 | 970 | $item['NmbItem'] .= '<span style="font-size:0.7em">'.$item['DscItem'].'</span>'; |
@@ -1067,9 +1067,9 @@ discard block |
||
| 1067 | 1067 | $this->SetY($this->getY()+1); |
| 1068 | 1068 | $p1x = $x; |
| 1069 | 1069 | $p1y = $this->y; |
| 1070 | - $p2x = $this->getPageWidth() - 2; |
|
| 1071 | - $p2y = $p1y; // Use same y for a straight line |
|
| 1072 | - $style = array('width' => 0.2,'color' => array(0, 0, 0)); |
|
| 1070 | + $p2x = $this->getPageWidth()-2; |
|
| 1071 | + $p2y = $p1y; // Use same y for a straight line |
|
| 1072 | + $style = array('width' => 0.2, 'color' => array(0, 0, 0)); |
|
| 1073 | 1073 | $this->Line($p1x, $p1y, $p2x, $p2y, $style); |
| 1074 | 1074 | $this->Texto($this->detalle_cols['NmbItem']['title'], $x+$offsets[0], $this->y, ucfirst($this->detalle_cols['NmbItem']['align'][0]), $this->detalle_cols['NmbItem']['width']); |
| 1075 | 1075 | $this->Texto($this->detalle_cols['PrcItem']['title'], $x+$offsets[1], $this->y, ucfirst($this->detalle_cols['PrcItem']['align'][0]), $this->detalle_cols['PrcItem']['width']); |
@@ -1081,7 +1081,7 @@ discard block |
||
| 1081 | 1081 | } |
| 1082 | 1082 | // mostrar items |
| 1083 | 1083 | $this->SetY($this->getY()+2); |
| 1084 | - foreach($detalle as &$d) { |
|
| 1084 | + foreach ($detalle as &$d) { |
|
| 1085 | 1085 | // nombre y descripción del item |
| 1086 | 1086 | $item = $d['NmbItem']; |
| 1087 | 1087 | if ($this->papel_continuo_item_detalle and !empty($d['DscItem'])) { |
@@ -1122,7 +1122,7 @@ discard block |
||
| 1122 | 1122 | if (!isset($detalle[0])) { |
| 1123 | 1123 | $detalle = [$detalle]; |
| 1124 | 1124 | } |
| 1125 | - foreach($detalle as &$d) { |
|
| 1125 | + foreach ($detalle as &$d) { |
|
| 1126 | 1126 | if (!empty($d['MontoItem'])) { |
| 1127 | 1127 | $subtotal += $d['MontoItem']; |
| 1128 | 1128 | } |
@@ -1149,18 +1149,18 @@ discard block |
||
| 1149 | 1149 | if (!isset($descuentosRecargos[0])) { |
| 1150 | 1150 | $descuentosRecargos = [$descuentosRecargos]; |
| 1151 | 1151 | } |
| 1152 | - foreach($descuentosRecargos as $dr) { |
|
| 1152 | + foreach ($descuentosRecargos as $dr) { |
|
| 1153 | 1153 | $tipo = $dr['TpoMov']=='D' ? 'Descuento' : 'Recargo'; |
| 1154 | 1154 | if (!empty($dr['IndExeDR'])) { |
| 1155 | 1155 | $tipo .= ' EX'; |
| 1156 | 1156 | } |
| 1157 | 1157 | $valor = $dr['TpoValor']=='%' ? $dr['ValorDR'].'%' : $this->num($dr['ValorDR']); |
| 1158 | 1158 | if ($this->papelContinuo) { |
| 1159 | - $glosa = $tipo.' global'.(!empty($dr['GlosaDR'])?(' ('.$dr['GlosaDR'].')'):'').':'; |
|
| 1159 | + $glosa = $tipo.' global'.(!empty($dr['GlosaDR']) ? (' ('.$dr['GlosaDR'].')') : '').':'; |
|
| 1160 | 1160 | $this->Texto($glosa, $x, null, 'R', 30); |
| 1161 | 1161 | $this->Texto($valor, $x+$offset, null, 'R', 30); |
| 1162 | 1162 | } else { |
| 1163 | - $this->Texto($tipo.(!empty($dr['GlosaDR'])?(' ('.$dr['GlosaDR'].')'):'').':', 77, null, 'R', 100); |
|
| 1163 | + $this->Texto($tipo.(!empty($dr['GlosaDR']) ? (' ('.$dr['GlosaDR'].')') : '').':', 77, null, 'R', 100); |
|
| 1164 | 1164 | $this->Texto($valor, 177, null, 'R', 22); |
| 1165 | 1165 | } |
| 1166 | 1166 | $this->Ln(); |
@@ -1180,8 +1180,8 @@ discard block |
||
| 1180 | 1180 | $pagos = [$pagos]; |
| 1181 | 1181 | $this->Texto('Pago(s) programado(s):', $x); |
| 1182 | 1182 | $this->Ln(); |
| 1183 | - foreach($pagos as $p) { |
|
| 1184 | - $this->Texto(' - '.$this->date($p['FchPago'], false).': $'.$this->num($p['MntPago']).'.-'.(!empty($p['GlosaPagos'])?(' ('.$p['GlosaPagos'].')'):''), $x); |
|
| 1183 | + foreach ($pagos as $p) { |
|
| 1184 | + $this->Texto(' - '.$this->date($p['FchPago'], false).': $'.$this->num($p['MntPago']).'.-'.(!empty($p['GlosaPagos']) ? (' ('.$p['GlosaPagos'].')') : ''), $x); |
|
| 1185 | 1185 | $this->Ln(); |
| 1186 | 1186 | } |
| 1187 | 1187 | } |
@@ -1215,7 +1215,7 @@ discard block |
||
| 1215 | 1215 | 'TpoMoneda' => 'Moneda', |
| 1216 | 1216 | 'MntNeto' => 'Neto $', |
| 1217 | 1217 | 'MntExe' => 'Exento $', |
| 1218 | - 'IVA' => 'IVA '.(!empty($totales['TasaIVA'])?(' ('.$totales['TasaIVA'].'%) '):'').'$', |
|
| 1218 | + 'IVA' => 'IVA '.(!empty($totales['TasaIVA']) ? (' ('.$totales['TasaIVA'].'%) ') : '').'$', |
|
| 1219 | 1219 | 'IVANoRet' => 'IVA no retenido $', |
| 1220 | 1220 | 'CredEC' => 'Desc. 65% IVA $', |
| 1221 | 1221 | 'MntTotal' => 'Total $', |
@@ -1232,7 +1232,7 @@ discard block |
||
| 1232 | 1232 | if (!isset($ImptoReten[0])) { |
| 1233 | 1233 | $ImptoReten = [$ImptoReten]; |
| 1234 | 1234 | } |
| 1235 | - foreach($ImptoReten as $i) { |
|
| 1235 | + foreach ($ImptoReten as $i) { |
|
| 1236 | 1236 | $totales['ImptoReten_'.$i['TipoImp']] = $i['MontoImp']; |
| 1237 | 1237 | if (!empty($i['TasaImp'])) { |
| 1238 | 1238 | $glosas['ImptoReten_'.$i['TipoImp']] = \sasco\LibreDTE\Sii\ImpuestosAdicionales::getGlosa($i['TipoImp']).' ('.$i['TasaImp'].'%) $'; |
@@ -1348,9 +1348,9 @@ discard block |
||
| 1348 | 1348 | 'vpadding' => 0, |
| 1349 | 1349 | 'module_width' => 1, // width of a single module in points |
| 1350 | 1350 | 'module_height' => 1, // height of a single module in points |
| 1351 | - 'fgcolor' => [0,0,0], |
|
| 1351 | + 'fgcolor' => [0, 0, 0], |
|
| 1352 | 1352 | 'bgcolor' => false, // [255,255,255] |
| 1353 | - 'position' => $position === null ? ($this->papelContinuo ? 'C' : 'S') : $position, |
|
| 1353 | + 'position' => $position===null ? ($this->papelContinuo ? 'C' : 'S') : $position, |
|
| 1354 | 1354 | ]; |
| 1355 | 1355 | $ecl = version_compare(phpversion(), '7.0.0', '<') ? -1 : $this->ecl; |
| 1356 | 1356 | $this->write2DBarcode($timbre, 'PDF417,,'.$ecl, $x_timbre, $y, $w, 0, $style, 'B'); |
@@ -1381,7 +1381,7 @@ discard block |
||
| 1381 | 1381 | protected function agregarAcuseRecibo($x = 83, $y = 190, $w = 60, $h = 40, $line = 25) |
| 1382 | 1382 | { |
| 1383 | 1383 | $y = (!$this->papelContinuo and !$this->timbre_pie) ? $this->x_fin_datos : $y; |
| 1384 | - $this->SetTextColorArray([0,0,0]); |
|
| 1384 | + $this->SetTextColorArray([0, 0, 0]); |
|
| 1385 | 1385 | $this->Rect($x, $y, $w, $h, 'D', ['all' => ['width' => 0.1, 'color' => [0, 0, 0]]]); |
| 1386 | 1386 | $this->setFont('', 'B', 10); |
| 1387 | 1387 | $this->Texto('Acuse de recibo', $x, $y+1, 'C', $w); |
@@ -1411,9 +1411,9 @@ discard block |
||
| 1411 | 1411 | */ |
| 1412 | 1412 | protected function agregarAcuseReciboContinuo($x = 3, $y = null, $w = 68, $h = 40) |
| 1413 | 1413 | { |
| 1414 | - $this->SetTextColorArray([0,0,0]); |
|
| 1414 | + $this->SetTextColorArray([0, 0, 0]); |
|
| 1415 | 1415 | $this->Rect($x, $y, $w, $h, 'D', ['all' => ['width' => 0.1, 'color' => [0, 0, 0]]]); |
| 1416 | - $style = array('width' => 0.2,'color' => array(0, 0, 0)); |
|
| 1416 | + $style = array('width' => 0.2, 'color' => array(0, 0, 0)); |
|
| 1417 | 1417 | $this->Line($x, $y+22, $w+3, $y+22, $style); |
| 1418 | 1418 | //$this->setFont('', 'B', 10); |
| 1419 | 1419 | //$this->Texto('Acuse de recibo', $x, $y+1, 'C', $w); |
@@ -1443,7 +1443,7 @@ discard block |
||
| 1443 | 1443 | $y = (!$this->papelContinuo and !$this->timbre_pie and $this->x_fin_datos<=$y) ? $this->x_fin_datos : $y; |
| 1444 | 1444 | $y += 48; |
| 1445 | 1445 | $this->setFont('', 'B', $font_size); |
| 1446 | - $this->Texto('CEDIBLE'.($tipo==52?' CON SU FACTURA':''), null, $y, 'R'); |
|
| 1446 | + $this->Texto('CEDIBLE'.($tipo==52 ? ' CON SU FACTURA' : ''), null, $y, 'R'); |
|
| 1447 | 1447 | } |
| 1448 | 1448 | |
| 1449 | 1449 | /** |
@@ -1454,7 +1454,7 @@ discard block |
||
| 1454 | 1454 | protected function agregarLeyendaDestinoContinuo($tipo) |
| 1455 | 1455 | { |
| 1456 | 1456 | $this->setFont('', 'B', 8); |
| 1457 | - $this->Texto('CEDIBLE'.($tipo==52?' CON SU FACTURA':''), null, $this->y+6, 'R'); |
|
| 1457 | + $this->Texto('CEDIBLE'.($tipo==52 ? ' CON SU FACTURA' : ''), null, $this->y+6, 'R'); |
|
| 1458 | 1458 | } |
| 1459 | 1459 | |
| 1460 | 1460 | } |