Fix minori

This commit is contained in:
Pek5892 2024-04-23 14:43:42 +02:00
parent eadeb43b8a
commit fbc4b3d718
6 changed files with 2 additions and 21 deletions

View File

@ -456,7 +456,7 @@ switch ($resource) {
case 'regioni': case 'regioni':
if (isset($superselect['id_nazione'])) { if (isset($superselect['id_nazione'])) {
$query = 'SELECT `an_regioni`.`id` AS id, `an_regioni`.`iso2`, CONCAT(CONCAT_WS(\' - \', `an_regioni`.`iso2`, `an_regioni_lang`.`title`), \' (\', `an_nazioni`.`iso2`, \')\') AS descrizione FROM `an_regioni` LEFT JOIN `an_regioni_lang` ON (`an_regioni`.`id` = `an_regioni_lang`.`id_record` AND `an_regioni_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') INNER JOIN `an_nazioni` ON `an_regioni`.`id_nazione` = `an_nazioni`.`id` |where| ORDER BY `an_regioni_lang`.`title`'; $query = 'SELECT `an_regioni`.`id` AS id, `an_regioni_lang`.`title` AS descrizione FROM `an_regioni` LEFT JOIN `an_regioni_lang` ON (`an_regioni`.`id` = `an_regioni_lang`.`id_record` AND `an_regioni_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') INNER JOIN `an_nazioni` ON `an_regioni`.`id_nazione` = `an_nazioni`.`id` |where| ORDER BY `an_regioni_lang`.`title`';
foreach ($elements as $element) { foreach ($elements as $element) {
$filter[] = '`an_regioni`.`id`='.prepare($element); $filter[] = '`an_regioni`.`id`='.prepare($element);
@ -466,8 +466,6 @@ switch ($resource) {
if (!empty($search)) { if (!empty($search)) {
$search_fields[] = '`an_regioni_lang`.`title` LIKE '.prepare('%'.$search.'%'); $search_fields[] = '`an_regioni_lang`.`title` LIKE '.prepare('%'.$search.'%');
$search_fields[] = '`an_regioni`.`iso2` LIKE '.prepare('%'.$search.'%');
$search_fields[] = 'CONCAT_WS(\' - \', `an_regioni`.`iso2`, `an_regioni_lang`.`title`) LIKE '.prepare('%'.$search.'%');
} }
} }
break; break;

View File

@ -32,9 +32,6 @@ switch (filter('op')) {
flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.')); flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.'));
} else { } else {
$attributo = Attributo::build(); $attributo = Attributo::build();
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$attributo->name = $descrizione;
}
$id_record = $dbo->lastInsertedID(); $id_record = $dbo->lastInsertedID();
$attributo->setTranslation('title', $descrizione); $attributo->setTranslation('title', $descrizione);
$attributo->setTranslation('title', $title); $attributo->setTranslation('title', $title);
@ -52,9 +49,6 @@ switch (filter('op')) {
flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.')); flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.'));
} else { } else {
$attributo->setTranslation('title', $title); $attributo->setTranslation('title', $title);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$attributo->name = $descrizione;
}
$attributo->save(); $attributo->save();
flash()->info(tr('Attributo aggiornato correttamente!')); flash()->info(tr('Attributo aggiornato correttamente!'));

View File

@ -25,10 +25,6 @@ echo '
<input type="hidden" name="backto" value="record-edit"> <input type="hidden" name="backto" value="record-edit">
<div class="row"> <div class="row">
<div class="col-md-6">
{[ "type": "text", "label": "'.tr('Nome').'", "name": "nome", "required": 1, "help": "'.tr("Nome univoco dell'attributo").'" ]}
</div>
<div class="col-md-6"> <div class="col-md-6">
{[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]} {[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]}
</div> </div>

View File

@ -31,10 +31,6 @@ echo '
<div class="panel-body"> <div class="panel-body">
<div class="row"> <div class="row">
<div class="col-md-6">
{[ "type": "span", "label": "'.tr('Nome').'", "name": "nome", "value": "'.$attributo->getTranslation('title').'", "help": "'.tr("Nome univoco dell'attributo").'" ]}
</div>
<div class="col-md-6"> <div class="col-md-6">
{[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "value": "'.$attributo->getTranslation('title').'", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]} {[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "value": "'.$attributo->getTranslation('title').'", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]}
</div> </div>

View File

@ -17,9 +17,6 @@ switch (filter('op')) {
} else { } else {
if (empty($combinazione)) { if (empty($combinazione)) {
$combinazione = Combinazione::build(); $combinazione = Combinazione::build();
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
$combinazione->name = $nome;
}
$id_record = $dbo->lastInsertedID(); $id_record = $dbo->lastInsertedID();
} }
$combinazione->setTranslation('title', $nome); $combinazione->setTranslation('title', $nome);

View File

@ -37,7 +37,7 @@ include_once __DIR__.'/../../core.php';
<div class="row"> <div class="row">
<div class="col-md-6"> <div class="col-md-6">
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "name", "required": 1, "value": "$title$" ]} {[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "name", "required": 1, "value": "$name$" ]}
</div> </div>
<div class="col-md-6"> <div class="col-md-6">