|
@if($logoBase64)
|
{{ $emisor?->nombre ?? '-' }}
{{ TipoIdentificacion::obtenerDescripcion($emisor?->tipo_identificacion) }}:
{{ $emisor?->numero_identificacion ?? '' }}
| {{ $emisor?->correo_electronico ?? '' }}
Act. Económica: {{ $documento?->codigo_actividad_emisor ?? '' }}
{{ $emisor?->direccion_completa ?? '' }}
|
{{ TipoDocumento::tryFrom($documento->tipo_documento)?->label() ?? 'Documento electrónico' }}
{{ $documento->numero_consecutivo }}
{{ $fechaEmision ? $fechaEmision->format('d/m/Y H:i') : '' }}
Moneda: {{ $moneda }}
|
|
Cliente
{{ $receptor?->nombre ?? '-' }}
|
{{ TipoIdentificacion::obtenerDescripcion($receptor?->tipo_identificacion ?? '01') }}:
{{ $receptor?->numero_identificacion ?? '' }}
{{ $receptor?->correo_electronico ?? '' }}
@if($receptor?->telefono) | Tel: {{ $receptor->telefono }} @endif
{{ $receptor?->direccion_completa ?? '' }}
|
Venta
Condición:
@if($documento?->condicion_venta)
{{ $documento->condicion_venta->label() }}
@if($documento->condicion_venta->value === '99' && $documento?->detalle_condicion_venta)
- {{ $documento->detalle_condicion_venta }}
@endif
@endif
Pago:
@if($documento?->medio_pago)
{{ $documento->medio_pago->label() }}
@if($documento->medio_pago->value === '99' && $documento?->detalle_medio_pago)
- {{ $documento->detalle_medio_pago }}
@endif
@endif
|
@if(!empty($qrBase64))
|
| # | Detalle | Cant | P.Unit | Monto |
|---|---|---|---|---|
| {{ $linea->numero_linea }} | {{ mb_substr($detalle, 0, 70) }} | {{ $fmtQty($linea->cantidad) }} | {{ $monedaSimbolo }}{{ $fmtMoney($precio) }} | {{ $monedaSimbolo }}{{ $fmtMoney($monto) }} |
| Sin líneas | ||||
|
Clave: {{ $documento->clave ?? '' }}
@if(!empty($documento->observaciones))
Obs: {{ mb_substr($documento->observaciones, 0, 200) }}
@endif
|
|