.widget
header>
h5
' Lista de
span.fw-semi-bold Itens da Proposta
.widget-body
- if itens_do_projeto.empty?
h6 Nenhum registro encontrado.
- else
.table-responsive
table.table.table-hover style="font-size: 95%;"
thead
tr
th Item
th Marca
th Quantidade
th Preço Inicial
th Preço Final
tbody
- itens_do_projeto.each do |item|
tr
td
p.form-control-static data-toggle="tooltip" data-placement="top" title="Descrição Técnica: #{item.item_do_lote.item_do_pedido.item.descricao_tecnica}" = "#{item.item_do_lote.item_do_pedido.item.descricao} (#{item.item_do_lote.item_do_pedido.item.unidade_de_medida.descricao})"
td = item.marca
td = item.item_do_lote.item_do_pedido.quantidade_total_requisitada
td = item.preco.try(:valor_financeiro)
td = 0