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
|
||||
if ($conto_secondo['dir'] == 'uscita'){
|
||||
if ($conto_secondo['dir'] == 'uscita') {
|
||||
echo '
|
||||
<button type="button" class="btn btn-info btn-xs" onclick="aggiornaReddito('.$conto_terzo['id'].')">
|
||||
<i class="fa fa-refresh"></i>
|
||||
|
|
|
@ -4,10 +4,22 @@ namespace API;
|
|||
|
||||
class Resource
|
||||
{
|
||||
/**
|
||||
* @param $request
|
||||
*
|
||||
* @return bool se true, la richiesta di apertura di considera fallita e viene restituito 404
|
||||
*/
|
||||
public function open($request)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $request
|
||||
* @param $response
|
||||
*
|
||||
* @retrun void
|
||||
*/
|
||||
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">
|
||||
'.$firma.'<br>';
|
||||
|
||||
if (empty($documento['firma_file'])){
|
||||
|
||||
echo ' <i>('.tr('Timbro e firma leggibile').'.)</i>';
|
||||
|
||||
|
||||
}else{
|
||||
|
||||
echo ' <i>'.$documento['firma_nome'].'</i>';
|
||||
|
||||
if (empty($documento['firma_file'])) {
|
||||
echo ' <i>('.tr('Timbro e firma leggibile').'.)</i>';
|
||||
} else {
|
||||
echo ' <i>'.$documento['firma_nome'].'</i>';
|
||||
}
|
||||
|
||||
echo '
|
||||
|
|
Loading…
Reference in New Issue