@extends('layouts.app') @extends('contabilidad.menu') @section('content')
@csrf

Pendiente de facturar

TOTAL:

Nueva Factura


@foreach ($salidasAlmacen as $op) @php if ($op->id_op > 0) { $valor_total = $op->cantidad * $op->op->cotizaciones_p->precio; } else { $valor_total = $op->id_cotizacion > 0 ? $op->cantidad * $op->cotizacion->precio : $op->cantidad * $op->producto->precio_venta; } @endphp @endforeach
Tipo Fecha Cliente Cantidad Valor Total Producto Cotización Observaciones Acción
{{ $op->id }} {{ date('d/m/Y h:i:s', strtotime($op->updated_at)) }} {{ $op->cliente->nombre ?? '' }} {{ $op->cantidad ?? '' }}Q.{{ number_format($valor_total, 2, '.', ',') }} {{ $op->producto->nombre ?? '' }} @if ($op->op) {{ $op->op->id_cotizacion_producto }} @endif @if ($op->id_cotizacion) {{ $op->id_cotizacion }} @endif {{ $op->op->cotizaciones_p->comentario_facturacion ?? '' }}{{ $op->cotizacion->comentario_facturacion ?? '' }} :{{ $op->op?->cotizaciones_p?->cotizacion?->observaciones_facturacion }} @if (Auth::user()->id == 4 || Auth::user()->id == 20 || Auth::user()->id == 12 || Auth::user()->id == 22)
@endif

@endsection