Stile del codice
This commit is contained in:
parent
6d10476820
commit
9ab93a11ea
|
@ -147,7 +147,7 @@ foreach ($primo_livello as $conto_primo) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pulsante per aggiornare il totale reddito del conto di livello 3
|
// Pulsante per aggiornare il totale reddito del conto di livello 3
|
||||||
if ($conto_secondo['dir'] == 'uscita'){
|
if ($conto_secondo['dir'] == 'uscita') {
|
||||||
echo '
|
echo '
|
||||||
<button type="button" class="btn btn-info btn-xs" onclick="aggiornaReddito('.$conto_terzo['id'].')">
|
<button type="button" class="btn btn-info btn-xs" onclick="aggiornaReddito('.$conto_terzo['id'].')">
|
||||||
<i class="fa fa-refresh"></i>
|
<i class="fa fa-refresh"></i>
|
||||||
|
|
|
@ -4,10 +4,22 @@ namespace API;
|
||||||
|
|
||||||
class Resource
|
class Resource
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @param $request
|
||||||
|
*
|
||||||
|
* @return bool se true, la richiesta di apertura di considera fallita e viene restituito 404
|
||||||
|
*/
|
||||||
public function open($request)
|
public function open($request)
|
||||||
{
|
{
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $request
|
||||||
|
* @param $response
|
||||||
|
*
|
||||||
|
* @retrun void
|
||||||
|
*/
|
||||||
public function close($request, $response)
|
public function close($request, $response)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -334,15 +334,10 @@ echo '
|
||||||
<td rowspan="2" class="text-center" style="font-size:8pt;height:30mm;vertical-align:bottom">
|
<td rowspan="2" class="text-center" style="font-size:8pt;height:30mm;vertical-align:bottom">
|
||||||
'.$firma.'<br>';
|
'.$firma.'<br>';
|
||||||
|
|
||||||
if (empty($documento['firma_file'])){
|
if (empty($documento['firma_file'])) {
|
||||||
|
echo ' <i>('.tr('Timbro e firma leggibile').'.)</i>';
|
||||||
echo ' <i>('.tr('Timbro e firma leggibile').'.)</i>';
|
} else {
|
||||||
|
echo ' <i>'.$documento['firma_nome'].'</i>';
|
||||||
|
|
||||||
}else{
|
|
||||||
|
|
||||||
echo ' <i>'.$documento['firma_nome'].'</i>';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
Loading…
Reference in New Issue