Formattazione stile codice
This commit is contained in:
parent
1250256b39
commit
49f4c9ddb7
|
@ -228,12 +228,10 @@ if (!$has_settings) {
|
|||
<div class="row">';
|
||||
foreach ($settings as $setting => $required) {
|
||||
if (empty(setting($setting))) {
|
||||
|
||||
echo '
|
||||
<div class="col-md-4">
|
||||
'.Settings::input($setting, $required).'
|
||||
</div>';
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -279,7 +279,7 @@ class Contratto extends Document
|
|||
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
|
||||
'MONTH(data_bozza) = '.prepare(date('m', strtotime((string) $data))),
|
||||
]);
|
||||
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
|
||||
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'co_contratti', 'numero', [
|
||||
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
|
||||
]);
|
||||
|
|
|
@ -19,13 +19,11 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Models\Module;
|
||||
use Models\Upload;
|
||||
use Modules\Anagrafiche\Anagrafica;
|
||||
use Modules\Anagrafiche\Sede;
|
||||
use Modules\Contratti\Contratto;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
use Modules\Scadenzario\Scadenza;
|
||||
|
|
|
@ -207,7 +207,7 @@ class Ordine extends Document
|
|||
'MONTH(data) = '.prepare(date('m', strtotime($data))),
|
||||
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
|
||||
]);
|
||||
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
|
||||
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero', [
|
||||
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
||||
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
|
||||
|
@ -247,7 +247,7 @@ class Ordine extends Document
|
|||
'MONTH(data) = '.prepare(date('m', strtotime($data))),
|
||||
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
|
||||
]);
|
||||
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
|
||||
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'or_ordini', 'numero_esterno', [
|
||||
'YEAR(data) = '.prepare(date('Y', strtotime($data))),
|
||||
'idtipoordine IN (SELECT `id` FROM `or_tipiordine` WHERE `dir` = '.prepare($direzione).')',
|
||||
|
|
|
@ -308,7 +308,7 @@ class Preventivo extends Document
|
|||
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
|
||||
'MONTH(data_bozza) = '.prepare(date('m', strtotime((string) $data))),
|
||||
]);
|
||||
} elseif ((str_contains($maschera, 'YYYY')) or (str_contains($maschera, 'yy'))) {
|
||||
} elseif (str_contains($maschera, 'YYYY') or str_contains($maschera, 'yy')) {
|
||||
$ultimo = Generator::getPreviousFrom($maschera, 'co_preventivi', 'numero', [
|
||||
'YEAR(data_bozza) = '.prepare(date('Y', strtotime((string) $data))),
|
||||
]);
|
||||
|
|
|
@ -547,8 +547,7 @@ class Validator
|
|||
public function __construct(
|
||||
/** @var string XML da validare */
|
||||
protected $xml
|
||||
)
|
||||
{
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -495,7 +495,7 @@ class Gestore
|
|||
|
||||
// Salvataggio del file
|
||||
file_put_contents(base_dir().'/'.$file, $xml);
|
||||
} catch (\Exception $e) {
|
||||
} catch (\Exception) {
|
||||
}
|
||||
|
||||
// File per il pagamento delle vendite SEPA CBI
|
||||
|
|
|
@ -411,4 +411,3 @@ if (!empty($documento['note'])) {
|
|||
<p class="small-bold text-muted">'.tr('Note', [], ['upper' => true]).':</p>
|
||||
<p>'.nl2br((string) $documento['note']).'</p>';
|
||||
}
|
||||
|
||||
|
|
|
@ -134,7 +134,6 @@ echo '
|
|||
</td>
|
||||
</tr>';
|
||||
|
||||
|
||||
if (!empty($destinazione)) {
|
||||
echo '
|
||||
<tr>
|
||||
|
|
|
@ -26,7 +26,7 @@ foreach ($impostazioni as $impostazione) {
|
|||
// Rimozione dell'indice precedente
|
||||
try {
|
||||
$database->query('ALTER TABLE `zz_settings` DROP INDEX `nome`');
|
||||
} catch (PDOException $e) {
|
||||
} catch (PDOException) {
|
||||
}
|
||||
$database->query('ALTER TABLE `zz_settings` CHANGE `nome` `nome` VARCHAR(150) NOT NULL');
|
||||
$database->query('ALTER TABLE `zz_settings` ADD UNIQUE(`nome`)');
|
||||
|
|
Loading…
Reference in New Issue