Skip to content

Commit

Permalink
Merge pull request #354 from secultce/feature/alterStatusPC
Browse files Browse the repository at this point in the history
💄 #340 - Adicionado status em análise
  • Loading branch information
jeff-doliveira1 authored Dec 23, 2024
2 parents 6807599 + 91c6f36 commit 8e0c3f4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,8 @@
.d-none {
display: none;
}
.label-diligence-status {
color: #085E55;
font-weight: 700;
font-size: 14px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ $(document).ready(function () {
//Retornando o valor da situação
getSituacion();
$( "#situacion-refo-multi" ).on( "change", function(e) {

sendSituacion(e.target.value);
$("#label-status-actual").html($(this).find("option:selected").text());
$(".multi-itens-select").show();
$("#p-btn-tado").show();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,15 @@
<?php if ($diligenceAndAnswers):
if ($diligenceAndAnswers[0]->status == EntityDiligence::STATUS_SEND): ?>
<div>

<h5>
<?php i::_e("Diligências enviadas"); ?>
</h5>
<div style="display: flex;justify-content: space-between;">
<h5>
<?php i::_e("Diligências enviadas"); ?>
</h5>
<h5 style="font-size: 14px;">
Status Atual:
<label class="label-diligence-status" id="label-status-actual"></label>
</h5>
</div>
<div style="margin-top: 25px;">
<div style="font-size: 14px; padding: 10px; margin-bottom: 10px;">
<label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<label style="font-weight: 500">Selecione o status da prestação de contas</label>
<select name="" id="situacion-refo-multi" class="form-control-multi">
<option value="all" disabled selected>-- Selecione --</option>
<option value="under_analysis">Em Análise</option>
<option value="approved">Aprovada</option>
<option value="partially">Parcialmente aprovada</option>
<option value="disapproved">Reprovada</option>
Expand Down

0 comments on commit 8e0c3f4

Please sign in to comment.