Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
59 righe
2.2 KiB
59 righe
2.2 KiB
<? |
|
|
|
foreach ($datiAccount->NucleoFamiliare as $row) { |
|
|
|
?> |
|
<div class="card mb-2"> |
|
<div class="card-header"> |
|
<h6 class="mb-0"> |
|
<?= $RAPPORTI_PARENTELA[$row['RAPPORTO_PARENTELA']]. " <b>". $row['COGNOME'] ." ".$row['NOME']."</b>" ?> |
|
</h6> |
|
</div> |
|
<div class="card-body"> |
|
<div class="form-group row"> |
|
<div class="col-sm-3"> |
|
<label >Codice fiscale</label><br> |
|
<input readonly type="text" class="form-control cfinput" value="<?= $row['CODICE_FISCALE'] ?>"> |
|
</div> |
|
<div class="col-sm-3"> |
|
<label >Data di nascita</label> |
|
<input readonly type="text" class="form-control cfinput" value="<?= Date::dateOracleDate($row['DATA_NASCITA'], 'd-m-Y') ?>"> |
|
</div> |
|
<div class="col-sm-6"> |
|
<label>Sconto prioritario (STUDENTE/DISABILE)</label> |
|
<? |
|
$studente = Utils::isStudente($row['FLAG']); |
|
$disabile = Utils::isDisable($row['FLAG']); |
|
|
|
if($studente==1 || $disabile==1 ) { |
|
if ($studente == 1) { |
|
echo "<h6>Si, " . LABEL_STUDENTE_NUCLEO . "</h6>"; |
|
} |
|
if ($disabile == 1) { |
|
echo "<h6>Si, " . LABEL_DISABILE_NUCLEO . "</h6>"; |
|
} |
|
}else{ |
|
echo "<h6>NO</h6>"; |
|
} |
|
|
|
?> |
|
</div> |
|
<div class="col-sm-4"> |
|
<label >Comune di residenza</label><br> |
|
<input readonly type="text" class="form-control cfinput" value="<?= $row['COMUNE_RESIDENZA'] ?>"> |
|
</div> |
|
<div class="col-sm-4"> |
|
<label >Provincia di residenza</label> |
|
<input readonly type="text" class="form-control cfinput" value="<?= $row['PROV_RESIDENZA'] ?>"> |
|
</div> |
|
<div class="col-sm-4"> |
|
<label >Cap di residenza</label> |
|
<input readonly type="text" class="form-control cfinput" value="<?= $row['CAP_RESIDENZA'] ?>"> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<? |
|
} |
|
?>
|
|
|