Skip to content

Commit

Permalink
Formattazione stile codice
Browse files Browse the repository at this point in the history
  • Loading branch information
Pek5892 committed Sep 25, 2024
1 parent 37cb653 commit 3337c78
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@
<i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").'
</a>';

if (isMobile()) {
echo'<div>';
} else {
echo'<div class="float-right d-none d-sm-inline">';
};
if (isMobile()) {
echo '<div>';
} else {
echo '<div class="float-right d-none d-sm-inline">';
}

// Pulsanti personalizzati
$buttons = $structure->filepath('buttons.php');
Expand Down
6 changes: 3 additions & 3 deletions plugins/receiptFE/src/Ricevuta.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ public function __construct($name)
} else {
$this->file = $file;
$this->xml = XML::readFile($this->file);

$filename = explode('.', (string) $name)[0];
$pieces = explode('_', $filename);

$progressivo_invio = $pieces[1];

$this->fattura = Fattura::where([
'progressivo_invio' => $progressivo_invio,
])->first();
Expand Down
8 changes: 4 additions & 4 deletions src/Extensions/MessageHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
*/
class MessageHandler extends AbstractProcessingHandler
{
protected function write(array $record): void
protected function write(array $record): void
{
// Controlla se la richiesta è AJAX
// Controlla se la richiesta è AJAX
if (\Whoops\Util\Misc::isAjaxRequest()) {
return;
}

// Costruisci il messaggio di errore
// Costruisci il messaggio di errore
$message = tr('Si è verificato un errore').' <i>[uid: '.$record['extra']['uid'].']</i>.';

// Aggiungi informazioni utente se autenticato
Expand All @@ -55,7 +55,7 @@ protected function write(array $record): void
try {
flash()->error($message);
} catch (\Exception) {
// Gestisci l'eccezione se necessario
// Gestisci l'eccezione se necessario
}

// Messaggio visivo immediato
Expand Down
2 changes: 1 addition & 1 deletion templates/ddt/body.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>';
}
$r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);

if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1]), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>';
Expand Down
2 changes: 1 addition & 1 deletion templates/fatture/body.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
}
}
$r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);

if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>';
Expand Down
4 changes: 2 additions & 2 deletions templates/libro_giornale/bottom.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
echo '
<tr>
<th colspan="4" class="text-right">TOTALE GENERALE</th>
<th class="text-right">'.moneyFormat(abs($totale_dare?:0), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_avere?:0), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_dare ?: 0), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_avere ?: 0), 2).'</th>
</tr>
</tbody>
</table>';
4 changes: 2 additions & 2 deletions templates/ordini/body.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,14 @@
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>';
}
$r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);

if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>';
}

$text .= '<b>'.$key.'</b></td>';

if ($options['pricing']) {
$text .= '
<td></td>
Expand Down

0 comments on commit 3337c78

Please sign in to comment.