|
@@ 487-489 (lines=3) @@
|
| 484 |
|
} |
| 485 |
|
// si no es boleta se coloca EXENTO, NETO, IVA y TOTAL si corresponde |
| 486 |
|
if (!in_array($dte['Encabezado']['IdDoc']['TipoDTE'], [39, 41])) { |
| 487 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 488 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 489 |
|
} |
| 490 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 491 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 492 |
|
} |
|
@@ 490-492 (lines=3) @@
|
| 487 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 488 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 489 |
|
} |
| 490 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 491 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 492 |
|
} |
| 493 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 494 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 495 |
|
} |
|
@@ 493-495 (lines=3) @@
|
| 490 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 491 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 492 |
|
} |
| 493 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 494 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 495 |
|
} |
| 496 |
|
$this->MultiTexto('TOTAL: $'.$this->num($dte['Encabezado']['Totales']['MntTotal']), $x, null, '', $width-2); |
| 497 |
|
} |
| 498 |
|
// agregar acuse de recibo y leyenda cedible |