.widget-body - if retencoes.empty? h5 Nenhuma retenção encontrada. - else .table-responsive table.table.table-hover thead tr th style='width: 6em;' Tipo th Descrição th Classificação th style='width: 13em;' BC th style='width: 9em;' Alíquota th style='width: 14em;' Valor do Imposto tbody - retencoes.each do |retencao| tr td = retencao.imposto.class.try(:model_name).try(:human).to_s td = retencao.imposto.try(:descricao_para_retencao).to_s td = retencao.classificacao_da_receita td = retencao.base_de_calculo.to_f.real_contabil td = number_to_percentage(retencao.aliquota.to_f, precision: 2) td = retencao.valor_calculado.to_f.real_contabil .col-md-12 .pull-right ' Total das Retenções: span.fw-semi-bold = @liquidacao.valor_das_retencoes.real_contabil