Commit 7f9b8ae19f26e107648587e665d0d3b9b27a7242
1 parent
ff83533d
Exists in
master
permite recurso nos 2 tipos de resposta
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
acompanhamento/cadastro.php
... | ... | @@ -345,8 +345,8 @@ |
345 | 345 | <td colspan="4"> |
346 | 346 | <br> |
347 | 347 | <?php |
348 | - //se tiver resposta negada, e permitir recurso | |
349 | - if($situacao == "N" and $permiterecurso) | |
348 | + //com resposta negada ou não, e permitir recurso, pode ser possivel solicitar recurso | |
349 | + if( ($situacao == "N" or $situacao == "R") and $permiterecurso) | |
350 | 350 | { |
351 | 351 | ?> |
352 | 352 | <input type="button" value="Solicitar Recurso" class="botaoformulario" name="recurso" id="btnRecurso" onclick="preparaRecurso();"/> | ... | ... |
restrito/lda_tiposolicitacao/formulario.php
... | ... | @@ -79,7 +79,7 @@ getErro($erro); |
79 | 79 | </div> |
80 | 80 | |
81 | 81 | <div class="col-md-3"> |
82 | - <input type="submit" value="buscar" class="btn btn-info waves-effect waves-button name="buscar" id="buscar" /> | |
82 | + <!--input type="submit" value="buscar" class="btn btn-info waves-effect waves-button name="buscar" id="buscar" /--> | |
83 | 83 | <input type="submit" value="<?php echo $acao;?>" class="btn btn-success waves-effect waves-button" name="acao" id="acao" /> |
84 | 84 | <input type="button" value="Limpar" name="limpar" class="btn btn-danger waves-effect waves-button" onclick="limpa()" /> |
85 | 85 | </div> | ... | ... |