Formattazione stile codice

This commit is contained in:
valentina 2024-09-25 15:11:01 +02:00
parent 37cb653565
commit 3337c78b4e
7 changed files with 18 additions and 18 deletions

View File

@ -172,11 +172,11 @@ if (empty($record) || !$has_access) {
<i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").' <i class="fa fa-chevron-left"></i> '.tr("Torna all'elenco").'
</a>'; </a>';
if (isMobile()) { if (isMobile()) {
echo'<div>'; echo '<div>';
} else { } else {
echo'<div class="float-right d-none d-sm-inline">'; echo '<div class="float-right d-none d-sm-inline">';
}; }
// Pulsanti personalizzati // Pulsanti personalizzati
$buttons = $structure->filepath('buttons.php'); $buttons = $structure->filepath('buttons.php');

View File

@ -67,12 +67,12 @@ class Ricevuta
} else { } else {
$this->file = $file; $this->file = $file;
$this->xml = XML::readFile($this->file); $this->xml = XML::readFile($this->file);
$filename = explode('.', (string) $name)[0]; $filename = explode('.', (string) $name)[0];
$pieces = explode('_', $filename); $pieces = explode('_', $filename);
$progressivo_invio = $pieces[1]; $progressivo_invio = $pieces[1];
$this->fattura = Fattura::where([ $this->fattura = Fattura::where([
'progressivo_invio' => $progressivo_invio, 'progressivo_invio' => $progressivo_invio,
])->first(); ])->first();

View File

@ -28,14 +28,14 @@ use Monolog\Handler\AbstractProcessingHandler;
*/ */
class MessageHandler extends AbstractProcessingHandler 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()) { if (\Whoops\Util\Misc::isAjaxRequest()) {
return; return;
} }
// Costruisci il messaggio di errore // Costruisci il messaggio di errore
$message = tr('Si è verificato un errore').' <i>[uid: '.$record['extra']['uid'].']</i>.'; $message = tr('Si è verificato un errore').' <i>[uid: '.$record['extra']['uid'].']</i>.';
// Aggiungi informazioni utente se autenticato // Aggiungi informazioni utente se autenticato
@ -55,7 +55,7 @@ class MessageHandler extends AbstractProcessingHandler
try { try {
flash()->error($message); flash()->error($message);
} catch (\Exception) { } catch (\Exception) {
// Gestisci l'eccezione se necessario // Gestisci l'eccezione se necessario
} }
// Messaggio visivo immediato // Messaggio visivo immediato

View File

@ -94,7 +94,7 @@ foreach ($righe as $riga) {
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>'; $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']); $r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);
if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) { if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1]), '', $r['descrizione']); $r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1]), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>'; $text .= '<b>'.$rif2[0].'</b>';

View File

@ -105,7 +105,7 @@ foreach ($righe as $riga) {
} }
} }
$r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']); $r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);
if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) { if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']); $r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>'; $text .= '<b>'.$rif2[0].'</b>';

View File

@ -22,8 +22,8 @@ include_once __DIR__.'/../../core.php';
echo ' echo '
<tr> <tr>
<th colspan="4" class="text-right">TOTALE GENERALE</th> <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_dare ?: 0), 2).'</th>
<th class="text-right">'.moneyFormat(abs($totale_avere?:0), 2).'</th> <th class="text-right">'.moneyFormat(abs($totale_avere ?: 0), 2).'</th>
</tr> </tr>
</tbody> </tbody>
</table>'; </table>';

View File

@ -123,14 +123,14 @@ foreach ($righe as $riga) {
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>'; $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']); $r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);
if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) { if (preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2)) {
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']); $r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1] ?: ''), '', $r['descrizione']);
$text .= '<b>'.$rif2[0].'</b>'; $text .= '<b>'.$rif2[0].'</b>';
} }
$text .= '<b>'.$key.'</b></td>'; $text .= '<b>'.$key.'</b></td>';
if ($options['pricing']) { if ($options['pricing']) {
$text .= ' $text .= '
<td></td> <td></td>