DADOS DO MOVIMENTO
DATA/HORA ABERTURA: {{$info['MOVIMENTO']['FDATAHORA_ABERTURA']}}
OPERADOR: {{$info['MOVIMENTO']['DESC_OPERADOR_ABERTURA']}}
DATA/HORA FECHAMENTO: {{$info['MOVIMENTO']['FDATAHORA_FECHAMENTO']}}
OPERADOR: {{$info['MOVIMENTO']['DESC_OPERADOR_FECHAMENTO']}}
@php $vlr_cx = 0; @php $vlr_saldo_cx = 0; @php $total_ent = 0; @php $total_sai = 0; @foreach ($info['ENTRADAS'] AS $ENTRADAS) @php $total_ent = $total_ent + $ENTRADAS['VALOR']; @endforeach
CLASSIFICAÇÃO VALOR
R$ {{number_format($ENTRADAS['VALOR'], 2, ',' , '.')}}
R$ {{number_format($total_ent, 2, ',' , '.')}}
@php $vlr_cx = 0; @php $vlr_saldo_cx = 0; @foreach ($info['SAIDAS'] AS $SAIDAS) @php $total_sai = $total_sai + $SAIDAS['VALOR']; @endforeach
CLASSIFICAÇÃO VALOR
R$ {{number_format($SAIDAS['VALOR'], 2, ',' , '.')}}
R$ {{number_format($total_sai, 2, ',' , '.')}}
@php $vlr_vend = 0; @foreach ($info['VENDAS'] AS $VENDAS) @php $vlr_vend = $VENDAS['VALOR_TOTAL'] + $vlr_vend; @endforeach
FORMA DE PAGAMENTO VALOR
R$ {{number_format($VENDAS['VALOR_TOTAL'], 2, ',' , '.')}}
R$ {{number_format($vlr_vend, 2, ',' , '.')}}
@php $vlr_vend_out = 0; @foreach ($info['VENDAS_OUT'] AS $VENDAS_OUT) @php $vlr_vend_out = $VENDAS_OUT['VALOR_TOTAL'] + $vlr_vend_out; @endforeach
R$ {{number_format($VENDAS_OUT['VALOR_TOTAL'], 2, ',' , '.')}}
@php $vrl_total_adiantamentos = 0; @if(count($info['ADIANTAMENTOS']) > 0)
@php $vrl_total_adiantamentos = 0; @foreach ($info['ADIANTAMENTOS'] AS $ADIANTAMENTOS) @php $vrl_total_adiantamentos = $vrl_total_adiantamentos + floatval($ADIANTAMENTOS['VALOR']); @endforeach
R$ {{number_format($ADIANTAMENTOS['VALOR'], 2, ',' , '.')}}
R$ {{number_format($vrl_total_adiantamentos, 2, ',' , '.')}}
@endif