{{ $item->ESPECIE }} |
{{ $item->SERIE }} |
{{ $item->DESC_NUMERO }} |
{{ $item->DIA_EMISSAO }} |
{{ $item->EMPRESA_UF }} |
{{ number_format($item->VALOR_CONTABIL, 2, ',' , '.') }} |
{{ $item->CFOP_CODIGO }} |
{{ number_format($item->BASECALCULO_ICMS, 2, ',' , '.') }} |
{{ number_format($item->ALIQUOTA_ICMS, 2, ',' , '.') }} |
{{ number_format($item->IMPOSTO_ICMS, 2, ',' , '.') }} |
{{ number_format($item->ISENTAS_ICMS, 2, ',' , '.') }} |
{{ number_format($item->OUTRAS_ICMS, 2, ',' , '.') }} |
{{ $item->OBSERVACAO }} |
@php $valorContabil = $valorContabil + $item->VALOR_CONTABIL;
@php $baseCalculoIcms = $baseCalculoIcms + $item->BASECALCULO_ICMS;
@php $impostoDebitadoIcms = $impostoDebitadoIcms + $item->IMPOSTO_ICMS;
@php $isentasIcms = $isentasIcms + $item->ISENTAS_ICMS;
@php $outrasIcms = $outrasIcms + $item->OUTRAS_ICMS;
@endforeach
Totalizadores: |
{{ number_format($valorContabil, 2, ',' , '.') }} |
|
{{ number_format($baseCalculoIcms, 2, ',' , '.') }} |
|
{{ number_format($impostoDebitadoIcms, 2, ',' , '.') }} |
{{ number_format($isentasIcms, 2, ',' , '.') }} |
{{ number_format($outrasIcms, 2, ',' , '.') }} |
|