@extends('layouts.app') @extends('contabilidad.menu') @section('content')
ID | Fecha | Cliente | Cantidad | Producto | Precio | Factura | Abono | Saldo | Nota | FEL | Estatus |
{{$op->id}} | {{date("d/m/Y h:i:s", strtotime($op->created_at))}} | {{$op->cliente->nombre??''}} @if ($op->saldo_favor) ({{number_format($op->saldo_favor,2,'.',',')}} ) @endif | {{$op->cantidad??''}} | {{$op->producto->nombre??''}} | {{number_format($op->precio,2,'.',',')}} | @if($op->nota) @if ($op->nota->estatus == 1) {{number_format($op->total - $op->abono,2,'.',',')}} @else @if ($op->nota->id_tipo==1) {{number_format(($op->total - $op->nota->cantidad),2,'.',',')}} @else {{number_format(($op->total + $op->nota->cantidad),2,'.',',')}} @endif @endif @else {{number_format($op->total - $op->abono,2,'.',',')}} @endif | {{number_format($op->abono,2,'.',',')}} | @if($op->nota) @if ($op->nota->estatus == 1) {{number_format($op->total - $op->abono,2,'.',',')}} @else @if ($op->nota->id_tipo==1) {{number_format(($op->total + $op->abono),2,'.',',')}} @else {{number_format(($op->total - $op->abono),2,'.',',')}} @endif @endif @else {{number_format($op->total - $op->abono,2,'.',',')}} @endif | @if($op->nota) @if ($op->nota->estatus) @else @if ($op->nota->id_tipo==1) Q {{$op->nota->cantidad}} debito @else Q {{$op->nota->cantidad}} credito @endif @endif @endif |
@if ($op->nombre_img==1)
no_sat.'.png') }}" target='_blank'> {{$op->no_sat}}
@else
@if($op->archivo_factura)
archivo_factura) }}" target='_blank'> {{$op->no_sat}}
@else
no_sat.'.pdf') }}" target='_blank'> {{$op->no_sat}}
@endif
@if($op->archivo_factura2) archivo_factura2) }}" target='_blank'> {{$op->no_sat}} @endif @if($op->archivo_factura3) archivo_factura3) }}" target='_blank'> {{$op->no_sat}} @endif @if($op->archivo_factura4) archivo_factura4) }}" target='_blank'> {{$op->no_sat}} @endif @if($op->archivo_factura5) archivo_factura5) }}" target='_blank'> {{$op->no_sat}} @endif @endif |
@if($op->estatus==1) En proceso @else Cancelada @endif |
.TOTAL |