|
ESTADO DE CUENTA {{ $cabecera->descripcion }} {{ $cabecera->direccion }} |
|
|
|
INFORMACION DE COMPRA |
|
| FECHA | {{ date("d-m-Y", strtotime($item->fechaCompra)) }} |
| DOCUMENTO | {{ $item->seriepedido }}-{{ $item->foliopedido }} |
| ARTICULOS | {{ $item->detallePedido }} |
| SUCURSAL | {{ $item->sucursal }} |
| ATENDIO | {{ $item->vendedor}} |
| TOTAL COMPRA | $ {{ number_format($item->monto,2,'.',',') }} |
| ENGANCHE | $ {{ number_format($item->enganche,2,'.',',') }} |
| FINANCIADO | $ {{ number_format($item->financiado,2,'.',',') }} |
| PLAZO | {{ strtoupper($item->formaPago) }} |
| PERIODICIDAD | {{ strtoupper($item->periodicidad) }} |
| NUM. PAGOS | {{ $item->numeropagos}} PAGOS |
| MONTO | $ {{ number_format($item->pago,2,'.',',') }} |
|
CARGOS Y ABONOS |
||||||||
| FECHA | MOVIMIENTO | DOCUMENTO | MONTO | SUCURSAL | NUM PAGO | CARGO | ABONO | SALDO |
| {{ date("d-m-Y", strtotime($pago['fecha'])) }} | {{ $pago['movimiento'] }} | {{ $pago['documento'] }} | $ {{ number_format($pago['monto'],2,'.',',') }} | {{ $pago['sucursal'] }} | {{ $pago['pago'] }} | $ {{ number_format($pago['cargo'],2,'.',',') }} | $ {{ number_format($pago['abono'],2,'.',',') }} | @if($pago['tipo']=="ABONO") @php $cargo = $cargo-$pago['abono']; @endphp$ {{ number_format($cargo,2,'.',',') }} | @elseif($pago['tipo']=="CARGO") @php $cargo = $cargo+$pago['cargo']; @endphp$ {{ number_format($cargo,2,'.',',') }} | @else$ {{ number_format($pago['cargo'],2,'.',',') }} | @endif
|
PROXIMOS PAGOS |
|||||||
| FECHA | MOVIMIENTO | NUM PAGO | MONTO | ABONO | SALDO | MORATORIO | TOTAL |
| {{ date("d-m-Y", strtotime($proximo['fecha'])) }} | {{ $proximo['movimiento'] }} | {{ $proximo['numpago'] }} | $ {{ number_format($proximo['monto'],2,'.',',') }} | $ {{ number_format($proximo['abono'],2,'.',',') }} | $ {{ number_format($proximo['pago'],2,'.',',') }} | $ {{ number_format($proximo['moratorio'],2,'.',',') }} | $ {{ number_format($proximo['total'],2,'.',',') }} |
| TOTAL: | $ {{ number_format($total,2,'.',',') }} |