@extends('fragments.fullTemplate') @section('titulo') Cobranza @endsection @php use App\Servicio_Cliente_Concepto; use App\Cobranza; use App\Servicio_Cliente_Reporte; use App\Cliente_Contacto_Factura; use App\Modo; use App\Int_Otros_Servicios_Concepto; $id_usuario = session('id_usuario'); if (! session('id_usuario')) { header('location: /'); die(); } $test=0; $id_cliente_factura=0; @endphp @section('contenido')
@component('Cobranza.navs') @slot('active1') @endslot @slot('active2') active @endslot @slot('active3') @endslot @slot('active4') @endslot @endcomponent
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('warning'))
{{ session()->get('warning') }}
@endif @if (count($errors) > 0)
¡Error! Revise los campos obligatorios.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(session()->has('recordatorio_success'))
{{ session()->get('recordatorio_success') }}
@endif @if(session()->has('recordatorio_danger'))
{{ session()->get('recordatorio_danger') }}
@endif @include('Requisicion_compra.Notificacion.notificacion_requisicion_modal') @include('Control_documentos.Notificacion.notificacion_documento_version') @include('Modificaciones.notificacion_modificacion') @include('Modificaciones.Notificacion.notificacion_modificacion_firma_modal')
{{-- Enviar recodatorio de pago --}}
@forelse ($informes_fecha_cobro_hoy as $informe_fecha_cobro_hoy) @empty @endforelse
Cliente factura No. de informes Fecha emisión Fecha envío prefactura No. Factura Fecha elaboración factura Fecha promesa de pago Días vencidos Subtotal IVA TOTAL Acciones
{{ $informe_fecha_cobro_hoy->nombre_cliente_factura }} {{ $informe_fecha_cobro_hoy->num_informe }} {{ $informe_fecha_cobro_hoy->fecha_emision_mostrar }} {{ $informe_fecha_cobro_hoy->fecha_envio_prefactura_mostrar }} {{ $informe_fecha_cobro_hoy->numero_factura_mostrar }} {{ $informe_fecha_cobro_hoy->fecha_elaboracion_factura_mostrar }} {{ $informe_fecha_cobro_hoy->fecha_promesa_pago_mostrar }} {{ $informe_fecha_cobro_hoy->dias_vencidos_mostrar }} ${{ number_format($informe_fecha_cobro_hoy->subtotal_calculado, 2, '.', ',') }} ${{ number_format($informe_fecha_cobro_hoy->iva_calculado, 2, '.', ',') }} ${{ number_format($informe_fecha_cobro_hoy->total_calculado, 2, '.', ',') }}
@if ($permisos->verqr == 1) Detalles @endif
Sin informes pendientes de pago hoy
TOTAL $0.00 $0.00 $0.00
{{--@include('Cobranza.send_mail_recordatorio_cobranzas_modal') @php function datos_contacto_informe($id_cliente_contacto_factura){ $datos_contacto = Cliente_Contacto_Factura::select('id_cliente_contacto_factura','correo') ->where('id_cliente_contacto_factura',$id_cliente_contacto_factura) ->first(); return $datos_contacto; } @endphp--}} @section('aaSorting') [ 0 , 'asc' ], [ 1 , 'asc' ] @endsection @include('Cobranza.create_informe') @endsection