|
@@ 457-459 (lines=3) @@
|
| 454 |
|
} |
| 455 |
|
// si no es boleta se coloca EXENTO, NETO, IVA y TOTAL si corresponde |
| 456 |
|
if (!in_array($dte['Encabezado']['IdDoc']['TipoDTE'], [39, 41])) { |
| 457 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 458 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 459 |
|
} |
| 460 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 461 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 462 |
|
} |
|
@@ 460-462 (lines=3) @@
|
| 457 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 458 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 459 |
|
} |
| 460 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 461 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 462 |
|
} |
| 463 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 464 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 465 |
|
} |
|
@@ 463-465 (lines=3) @@
|
| 460 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 461 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 462 |
|
} |
| 463 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 464 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 465 |
|
} |
| 466 |
|
$this->MultiTexto('TOTAL: $'.$this->num($dte['Encabezado']['Totales']['MntTotal']), $x, null, '', $width-2); |
| 467 |
|
} |
| 468 |
|
// agregar acuse de recibo y leyenda cedible |