Estimad@: {{ $customer->name }} @if ($localmessage == null) , informamos que su nota de venta ha sido emitida exitosamente. @else {{ $localmessage }} @endif @if ($isIntegrateSystem) @php $items = $document->items; $payment_method_type = $document->payment_method_type; $payment_method_type_description = 'EFECTIVO'; if ($payment_method_type) { $payment_method_type_description = $payment_method_type->description; } @endphp
| PRODUCTO | CANTIDAD | PRECIO |
|---|---|---|
| {{ $item->item->description }} | {{ $item->quantity }} | {{ number_format($item->unit_price ,2)}} |
| SUBTOTAL | {{ number_format($document->total,2) }} | |
| METODO DE PAGO | {{ $payment_method_type_description }} | |
| TOTAL | {{ number_format($document->total,2) }} (incluye igv {{ $document->total_igv }} 18%) | |