|
@@ 502-504 (lines=3) @@
|
| 499 |
|
} |
| 500 |
|
// si no es boleta se coloca EXENTO, NETO, IVA y TOTAL si corresponde |
| 501 |
|
if (!in_array($dte['Encabezado']['IdDoc']['TipoDTE'], [39, 41])) { |
| 502 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 503 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 504 |
|
} |
| 505 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 506 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 507 |
|
} |
|
@@ 505-507 (lines=3) @@
|
| 502 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 503 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 504 |
|
} |
| 505 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 506 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 507 |
|
} |
| 508 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 509 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 510 |
|
} |
|
@@ 508-510 (lines=3) @@
|
| 505 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 506 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 507 |
|
} |
| 508 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 509 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 510 |
|
} |
| 511 |
|
$this->MultiTexto('TOTAL: $'.$this->num($dte['Encabezado']['Totales']['MntTotal']), $x, null, '', $width-2); |
| 512 |
|
} |
| 513 |
|
// agregar acuse de recibo y leyenda cedible |