Formattazione codice

This commit is contained in:
Pek5892 2024-04-23 09:56:36 +02:00
parent cccd2b3c39
commit 1cc40b76e2
29 changed files with 89 additions and 94 deletions

View File

@ -34,7 +34,6 @@ class CausaleMovimento extends Model
'title',
];
public function getModuleAttribute()
{
return 'Causali movimenti';

View File

@ -22,7 +22,7 @@ use Modules\Newsletter\Newsletter;
include_once __DIR__.'/../../core.php';
if (!empty(($id_record))) {
if (!empty($id_record)) {
$newsletter = Newsletter::find($id_record);
$record = $newsletter->toArray();

View File

@ -75,7 +75,7 @@ switch (filter('op')) {
if (isset($nome)) {
// Se non esiste già un tipo di scadenza con lo stesso nome
if (empty(Tipo::where('id', '=', (new Tipo())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first())) {
$tipo = tipo::build();
$tipo = Tipo::build();
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$tipo->name = $nome;
}

View File

@ -386,7 +386,6 @@ class Database extends Util\Singleton
return null;
}
/**
* Restituisce l'identificativo dell'ultimo elemento inserito.
*

View File

@ -95,7 +95,7 @@ foreach ($righe as $riga) {
if (in_array($riga->id, $riferimento)) {
if ($riga->id === $riferimento[0]) {
$riga_ordine = $database->fetchOne('SELECT numero_cliente, data_cliente FROM or_ordini WHERE id = '.prepare($riga->idordine));
if (!(setting('Visualizza numero ordine cliente'))) {
if (!setting('Visualizza numero ordine cliente')) {
if (!empty($riga_ordine['numero_cliente']) && !empty($riga_ordine['data_cliente'])) {
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>';
}

View File

@ -202,7 +202,6 @@ if (database()->columnExists('dt_statiddt_lang', 'name')) {
$database->query('ALTER TABLE `dt_statiddt_lang` DROP `name`');
}
// Controllo se è presente il campo name in dt_tipiddt
$has_name = database()->columnExists('dt_tipiddt', 'name');
if (!$has_name) {
@ -223,7 +222,6 @@ if (database()->columnExists('em_lists_lang', 'name')) {
$database->query('ALTER TABLE `em_lists_lang` DROP `name`');
}
// Controllo se è presente il campo name in em_templates
$has_name = database()->columnExists('em_templates', 'name');
if (!$has_name) {
@ -329,7 +327,6 @@ if (database()->columnExists('mg_categorie_lang', 'name')) {
$database->query('ALTER TABLE `mg_categorie_lang` DROP `name`');
}
// Rimozione categoria 'Componenti' se non collegata ad articoli
$categoria = Categoria::find((new Categoria())->getByField('title', 'Componenti'));
$articoli_collegati = $categoria->articoli()->count();