@if(trim_null($item->ANALITICA) == 'N')
{{ $item->CODREDUZIDO }} |
@else
{{ $item->CODREDUZIDO }} |
@endif
@if(trim_null($item->ANALITICA) == 'N')
{{ $item->DESC_CONTA }} |
@else
{{ $item->DESC_CONTA }} |
@endif
@if($item->SALDO_ANTERIOR < 0)
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format(abs($item->SALDO_ANTERIOR), 2, ',' , '.')}} D |
@else
R$ {{number_format(abs($item->SALDO_ANTERIOR), 2, ',' , '.')}} D |
@endif
@else
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format(abs($item->SALDO_ANTERIOR), 2, ',' , '.')}} C |
@else
R$ {{number_format(abs($item->SALDO_ANTERIOR), 2, ',' , '.')}} C |
@endif
@endif
@if($info->IMPRESSAO_VALORES == 0 || $info->IMPRESSAO_VALORES == 2)
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format($item->VALOR_DEBITO, 2, ',' , '.')}} |
R$ {{number_format($item->VALOR_CREDITO, 2, ',' , '.')}} |
@else
R$ {{number_format($item->VALOR_DEBITO, 2, ',' , '.')}} |
R$ {{number_format($item->VALOR_CREDITO, 2, ',' , '.')}} |
@endif
@endif
@if($info->IMPRESSAO_VALORES == 1 || $info->IMPRESSAO_VALORES == 2)
@if($item->MOV_LIQUIDO < 0)
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format(abs($item->MOV_LIQUIDO), 2, ',' , '.')}} D |
@else
R$ {{number_format(abs($item->MOV_LIQUIDO), 2, ',' , '.')}} D |
@endif
@else
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format(abs($item->MOV_LIQUIDO), 2, ',' , '.')}} C |
@else
R$ {{number_format(abs($item->MOV_LIQUIDO), 2, ',' , '.')}} C |
@endif
@endif
@endif
@if($item->SALDO < 0)
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format(abs($item->SALDO), 2, ',' , '.')}} D |
@else
R$ {{number_format(abs($item->SALDO), 2, ',' , '.')}} D |
@endif
@else
@if(trim_null($item->ANALITICA) == 'N')
R$ {{number_format($item->SALDO, 2, ',' , '.')}} C |
@else
R$ {{number_format($item->SALDO, 2, ',' , '.')}} C |
@endif
@endif
@endif
@if($info->TIPO_RELATORIO == 1)
@php $totDebito = $totDebito + $item->VALOR_DEBITO;
@php $totCredito = $totCredito + $item->VALOR_CREDITO;
@if(trim_null($item->ANALITICA) == 'N')
{{ $item->CODREDUZIDO }} |
@else
{{ $item->CODREDUZIDO }} |
@endif
@if(trim_null($item->ANALITICA) == 'N')
{{ $item->DESC_CONTA }} |
@else
{{ $item->DESC_CONTA }} |
@endif
@if($item->SALDO_ANTERIOR < 0)
R$ {{number_format(abs($item->SALDO_ANTERIOR), 2, ',' , '.')}} D |
@else
R$ {{number_format($item->SALDO_ANTERIOR, 2, ',' , '.')}} C |
@endif
@if($info->IMPRESSAO_VALORES == 0 || $info->IMPRESSAO_VALORES == 2)
R$ {{number_format($item->VALOR_DEBITO, 2, ',' , '.')}} |
R$ {{number_format($item->VALOR_CREDITO, 2, ',' , '.')}} |
@endif
@if($info->IMPRESSAO_VALORES == 1 || $info->IMPRESSAO_VALORES == 2)
@if($item->MOV_LIQUIDO < 0)
R$ {{number_format(abs($item->MOV_LIQUIDO), 2, ',' , '.')}} D |
@else
R$ {{number_format($item->MOV_LIQUIDO, 2, ',' , '.')}} C |
@endif
@endif
@if($item->SALDO < 0)
R$ {{number_format(abs($item->SALDO), 2, ',' , '.')}} D |
@else
R$ {{number_format($item->SALDO, 2, ',' , '.')}} C |
@endif
@endif
@php $count++;
@endforeach