header h5 ' Lista de span.fw-semi-bold Pagamentos .widget-body - if @pagamentos.empty? h6 Nenhum registro encontrado. - else table.table.table-hover.table-responsive style="font-size: 14px;" thead tr th width="100" Data th width="120" NÂș do Pagamento th width="100" UO th width="100" Empenho th width="200" Fornecedor th width="100" NF th width="120" Valor th width="60" tbody - @pagamentos.each do |pagamento| tr td = pagamento.data || pagamento.data_da_solicitacao td = pagamento.numero_formatado td = pagamento.liquidacao.unidade_orcamentaria.sigla td = pagamento.empenho.numero_do_empenho.to_s td = pagamento.credor.nome_e_cpf_ou_cnpj.to_s - if pagamento.liquidacao.nota_fiscal_numero.present? td = pagamento.liquidacao.nota_fiscal_numero - else td = '-' td = pagamento.valor.to_f.real_contabil td = link_to portal_da_transparencia_pagamento_path(id: pagamento.id), class: "btn btn_portal btn-sm mb-xs", title: "Ver Detalhes", target: '_blank' do i.icone-detalhar