|
@@ 476-478 (lines=3) @@
|
| 473 |
|
} |
| 474 |
|
// si no es boleta se coloca EXENTO, NETO, IVA y TOTAL si corresponde |
| 475 |
|
if (!in_array($dte['Encabezado']['IdDoc']['TipoDTE'], [39, 41])) { |
| 476 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 477 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 478 |
|
} |
| 479 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 480 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 481 |
|
} |
|
@@ 479-481 (lines=3) @@
|
| 476 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 477 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 478 |
|
} |
| 479 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 480 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 481 |
|
} |
| 482 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 483 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 484 |
|
} |
|
@@ 482-484 (lines=3) @@
|
| 479 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 480 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 481 |
|
} |
| 482 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 483 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 484 |
|
} |
| 485 |
|
$this->MultiTexto('TOTAL: $'.$this->num($dte['Encabezado']['Totales']['MntTotal']), $x, null, '', $width-2); |
| 486 |
|
} |
| 487 |
|
// agregar acuse de recibo y leyenda cedible |