|
@@ 277-279 (lines=3) @@
|
| 274 |
|
} |
| 275 |
|
// si no es boleta se coloca EXENTO, NETO, IVA y TOTAL si corresponde |
| 276 |
|
if (!in_array($dte['Encabezado']['IdDoc']['TipoDTE'], [39, 41])) { |
| 277 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 278 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 279 |
|
} |
| 280 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 281 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 282 |
|
} |
|
@@ 280-282 (lines=3) @@
|
| 277 |
|
if (!empty($dte['Encabezado']['Totales']['MntExe'])) { |
| 278 |
|
$this->MultiTexto('EXENTO: $'.$this->num($dte['Encabezado']['Totales']['MntExe']), $x, null, '', $width-2); |
| 279 |
|
} |
| 280 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 281 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 282 |
|
} |
| 283 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 284 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 285 |
|
} |
|
@@ 283-285 (lines=3) @@
|
| 280 |
|
if (!empty($dte['Encabezado']['Totales']['MntNeto'])) { |
| 281 |
|
$this->MultiTexto('NETO: $'.$this->num($dte['Encabezado']['Totales']['MntNeto']), $x, null, '', $width-2); |
| 282 |
|
} |
| 283 |
|
if (!empty($dte['Encabezado']['Totales']['IVA'])) { |
| 284 |
|
$this->MultiTexto('IVA: $'.$this->num($dte['Encabezado']['Totales']['IVA']), $x, null, '', $width-2); |
| 285 |
|
} |
| 286 |
|
$this->MultiTexto('TOTAL: $'.$this->num($dte['Encabezado']['Totales']['MntTotal']), $x, null, '', $width-2); |
| 287 |
|
} |
| 288 |
|
// agregar acuse de recibo y leyenda cedible |