.widget header> h5 ' Lista de span.fw-semi-bold Saldos no Estoque .widget-body - if @estoques.empty? h6 Nenhum registro encontrado. - else .table-responsive table.table.table-hover.table-striped.table-bordered thead tr th.text-center Almoxarifado th.text-center Unidade Orçamentária th.text-center Valor Unit. th.text-center Qtde. th.text-center Total tbody - @estoques.each do |estoque| tr td.text-center = estoque.almoxarifado.codigo_e_nome td.text-center = estoque.unidade_orcamentaria.codigo_completo_e_nome td.text-center = estoque.valor_unitario_medio.to_f.valor_financeiro(maximum_precision: 4) if estoque.try(:valor_unitario_medio).present? td.text-center = estoque.quantidade_total_saldo td.text-center = estoque.valor_total_saldo.to_f.valor_financeiro(maximum_precision: 4) if estoque.try(:valor_total_saldo).present? = will_paginate@movimentacoes, previous_label: "<", next_label: ">"