Commit 2cbe112d authored by sandroresende's avatar sandroresende

filtro usuário por tipo e modulo

parent a8c3ac6f
......@@ -51,9 +51,11 @@
Este formulário permite que você adicione novas propostas ou edite os dados da proposta selecionada.
</p>
<div class="scrimutilexemplo">
<button type="button" class="br-button block secondary mr-3" aria-label="Ícone ilustrativo" data-bs-toggle="modal" data-bs-target="#novaProposta">
<i class="fas fa-plus" aria-hidden="true"></i>Adicionar Proposta
</button>
@if(!$selecaoProposta->bln_selecao_concluida)
<button type="button" class="br-button block secondary mr-3" aria-label="Ícone ilustrativo" data-bs-toggle="modal" data-bs-target="#novaProposta">
<i class="fas fa-plus" aria-hidden="true"></i>Adicionar Proposta
</button>
@endif
</div>
<span class="br-divider my-3"></span>
......
......@@ -26,6 +26,7 @@
<cabecalho-relatorios
:titulo="'Propostas Selecionadas'"
:subtitulo2="' {{count($propostas)}} propostas' "
barracompartilhar="false">
......
......@@ -32,7 +32,7 @@
:subtitulo3="'Valor Intervenção Cadastrado R$ {{number_format( ($proposta->vlr_intervencao), 2, ',' , '.')}}'"
:subtitulo4="'{{$proposta->selecao->txt_selecao}} - Seleção nº {{$proposta->selecao->num_selecao}}'"
@if($proposta->usuario):subtitulo3="'Cadastrada por: {{$proposta->usuario->name}}'" @endif
@if($proposta->updated_at)
:dataatualizacao="'{{date('d/m/Y',strtotime($proposta->updated_at))}}'"
@elseif($proposta->created_at)
......
......@@ -64,7 +64,7 @@
<td>{{date('d/m/Y',strtotime($dados->dte_resultado))}}</td>
<td>{{number_format( ($dados->num_propostas), 0, ',' , '.')}}</td>
<td>@if($dados->bln_selecao_concluida) Concluída @else Em Andamento @endif</td>
<td>{{$dados->user->name}}</td>
<td>@if($dados->user) {{$dados->user->name}} @endif</td>
<td>
@if($dados->bln_selecao_concluida)
<button type="button" class="br-button circle secondary small mr-3" aria-label="Ícone ilustrativo" title="Visualizar"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment