@extends('adminlte.app') @section('content')

Bem Vindo {{auth()->user()->name}}

@if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('danger'))

{{ $message }}

@endif @if(session('bloqueio'))
{{ session('bloqueio') }}
@endif @if ($errors->any())
@endif
{{--
Dashboard
--}}

Novos Clientes

{{date('m/y')}} - {{$clientesMes->count()}} | {{date('m')}}/{{date('y')-1}} - {{$clientesMesAnoPassado->count()}}

{{date('Y')}} - {{$clientesAno->count()}} | {{date('Y')-1}} - {{$clientesAnoPassado->count()}}

{{-- More info --}}

Vendas

{{date('m/y')}} - {{number_format($vendasMes->sum('quantidade')/1000,0,',','.')}} m³ | {{date('m')}}/{{date('y')-1}} - {{number_format($vendasMesAnoPassado->sum('quantidade')/1000,0,',','.')}} m³

{{date('Y')}} - {{number_format($vendasAno->sum('quantidade')/1000000,0,',','.')}}M m³ | {{date('Y')-1}} - {{number_format($vendasAnoPassado->sum('quantidade')/1000000,0,',','.')}}M m³

{{-- More info --}}

Status BD

TFUEL {{ $ultimaAtualizacaoTFUEL ? $ultimaAtualizacaoTFUEL->updated_at->format('d/m/Y H:i:s'):0 }}

IM {{ $ultimaAtualizacaoIM->updated_at->format('d/m/Y H:i:s') }}

VENDAS {{ $ultimaAtualizacaoVendas->updated_at->format('d/m/Y H:i:s') }}

{{-- More info --}}
{{-- --}}

Situações Urgentes - Faturas

@if($permissao->exibir_todas_faturas) @endif @foreach($faturasUrgentes as $item) @php $cor = 'bg-danger'; if($item->data_previsao ){ if($item->data_previsao >= now()->format('Y-m-d')){ $cor = 'bg-success'; } }elseif($item->tipo_solicitacao != null){ $cor = 'bg-success'; } @endphp @if($permissao->exibir_todas_faturas) @if($item->origem == "IM" and isset($item->cliente_im->gestor_user->name)) @elseif($item->origem =="TFUEL" and isset($item->cliente_tfuel->gestor_user->name)) @else @endif @endif @if($item->origem == "IM" and isset($item->cliente_im->nome)) @elseif($item->origem =="TFUEL" and isset($item->cliente_tfuel->nome)) @else @endif @if($item->origem == "IM" && isset($item->cliente_im->im_plafond)) @elseif($item->origem == "TFUEL" && isset($item->cliente_tfuel->tfuel_plafond)) @else @endif @if ($item->sinistro == "Sim") @else @endif @endforeach
CanalGestorCliente Fatura Emissão Vencimento Sinistro / Prorrogado Nova Previsão de Pgto Valor Dias de Atraso Prazo Médio Pagamento Plafond Total Faturado Status Ações
{{ $item->canal->nome_canal }}{{ $item->cliente_im->gestor_user->name }}{{ $item->cliente_tfuel->gestor_user->name }}{{ $item->cliente_im->nome }}{{ $item->cliente_tfuel->nome }}Cliente Não encontrado{{ $item->num_documento }} {{ date('d/m/Y', strtotime($item->dt_emissao)) }} {{ date('d/m/Y', strtotime($item->dt_vencimento)) }} {{$item->tipo_solicitacao}} @if($item->data_previsao) {{ date('d/m/Y', strtotime($item->data_previsao)) }} @endif {{ number_format($item->valor_total, 2, ',', '.') }} @php $diasAtraso = 0; @endphp @if($item->status == "Pendente") @php $diasAtraso = \Carbon\Carbon::now()->diffInDays($item->dt_vencimento); @endphp @if($item->dt_vencimento < \Carbon\Carbon::now()) {{ \Carbon\Carbon::now()->diffInDays($item->dt_vencimento) }} @else @php $diasAtraso = 0; @endphp 0 @endif @else @php $diasAtraso = 0; @endphp 0 @endif {{number_format($item->prazo_medio_dias,0)}}{{ number_format($item->cliente_im->im_plafond, 2, ',', '.') }}{{ number_format($item->cliente_tfuel->tfuel_plafond, 2, ',', '.') }} - {{number_format($item->soma_valor_total, 2, ',', '.')}} Sinistrado status == "Paga") class="bg-success" @elseif ($item->status == "PPago") style="background-color: #ffc000;" @elseif($item->status == "Promessa de PagamentoV") class="bg-danger" @endif> {{ $item->status }} @if($diasAtraso <= 85) @else @endif
{{-- --}}

Recebimentos do dia

{{-- --}} {{-- --}} {{-- --}}
@if($permissao->exibir_todas_faturas) @endif @foreach($faturasDia as $item) @if($item->origem == "IM" and isset($item->cliente_im->nome)) @elseif($item->origem =="TFUEL" and isset($item->cliente_tfuel->nome)) @else @endif @if ($item->status == "Pendente") @if($item->dt_vencimento < \Carbon\Carbon::now()) @else @endif @else @endif @if ($item->sinistro == "Sim") @else @endif @if($permissao->exibir_todas_faturas) @if($item->origem == "IM" and isset($item->cliente_im->gestor_user->name)) @elseif($item->origem =="TFUEL" and isset($item->cliente_tfuel->gestor_user->name)) @else @endif @endif @endforeach
Canal Cliente Fatura Valor Emissão Vencimento Vencido StatusGestor
{{ $item->canal->nome_canal }}{{ $item->cliente_im->nome }}{{ $item->cliente_tfuel->nome }}Cliente Não encontrado{{ $item->num_documento }} {{ number_format($item->valor_total, 2, ',', '.') }} {{ date('d/m/Y', strtotime($item->dt_emissao)) }} {{ date('d/m/Y', strtotime($item->dt_vencimento)) }} Sim Não Sinistrado status == "Paga") class="bg-success" @elseif ($item->status == "PPago") style="background-color: #ffc000;" @elseif($item->status == "Promessa de PagamentoV") class="bg-danger" @endif> {{ $item->status }} {{ $item->cliente_im->gestor_user->name }}{{ $item->cliente_tfuel->gestor_user->name }}
{{-- --}}

Total Recebido do Mês

{{--

€ @if(isset($total_mes->total)) {{number_format($total_mes->total,2,",",".")}} @else 0,00 @endif

--}}

€ @if(isset($total_mes)) {{number_format($total_mes->sum('total'), 2, ",", ".")}} @else 0,00 @endif

€ {{number_format($vermelho_total,2,",",".")}}

{{$vermelho_cliente_quantidade}} clientes - {{$vermelho_fatura_quantidade}} documentos

Risco de Bloqueio e/ou Sinistro

{{-- Mais Info --}}

€ {{number_format($amarelo_total,2,",",".")}}

{{$amarelo_cliente_quantidade}} clientes - {{$amarelo_fatura_quantidade}} documentos

Em Incumprimento

{{-- Mais Info --}}

€ {{number_format($verde_total,2,",",".")}}

{{$verde_cliente_quantidade}} clientes - {{$verde_fatura_quantidade}} documentos

Documentos não vencidos

{{-- Mais Info --}}

€ {{number_format($preto_total,2,",",".")}}

{{$preto_cliente_quantidade}} clientes - {{$preto_fatura_quantidade}} documentos

Clientes Sinistrados

{{-- Mais Info --}}

Objetivos Globais

{{number_format($porcObjs,2,',','.')}} %

{{--

{{number_format($vendasTotal,2,',','.')}}

{{number_format($objsTotal,2,',','.')}}

--}}
{{-- --}}

Objetivos Tfuel

{{number_format($porcObjsTfuel,2,',','.')}} %

{{--

{{number_format($vendasTotal,2,',','.')}}

{{number_format($objsTotal,2,',','.')}}

--}}
{{-- --}}

Objetivos IM

{{number_format($porcObjsIM,2,',','.')}} %

{{--

{{number_format($vendasTotal,2,',','.')}}

{{number_format($objsTotal,2,',','.')}}

--}}
{{-- --}}

Objetivos Grandes Contas

{{number_format($porcObjsGC,2,',','.')}} %

{{--

{{number_format($vendasTotal,2,',','.')}}

{{number_format($objsTotal,2,',','.')}}

--}}
{{-- --}}
{{-- Vendas Por mês --}}

Vendas por Mês

{{-- Fim Vendas Por Mês --}}

Oportunidades

{{-- --}} {{-- --}} {{-- --}}
Ações
Cliente
Produto
Gestor
Data da última compra Data estimada da próxima compra Média de LT comprados
{{-- --}}
{{-- informarPrevisaoPagamentoModal --}} {{-- componente modal solicitar sinistro --}} {{-- componente modal prorrogar seguro --}} @endsection