Fix minori
This commit is contained in:
parent
eadeb43b8a
commit
fbc4b3d718
|
@ -456,7 +456,7 @@ switch ($resource) {
|
|||
|
||||
case 'regioni':
|
||||
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) {
|
||||
$filter[] = '`an_regioni`.`id`='.prepare($element);
|
||||
|
@ -466,8 +466,6 @@ switch ($resource) {
|
|||
|
||||
if (!empty($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;
|
||||
|
|
|
@ -32,9 +32,6 @@ switch (filter('op')) {
|
|||
flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.'));
|
||||
} else {
|
||||
$attributo = Attributo::build();
|
||||
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
||||
$attributo->name = $descrizione;
|
||||
}
|
||||
$id_record = $dbo->lastInsertedID();
|
||||
$attributo->setTranslation('title', $descrizione);
|
||||
$attributo->setTranslation('title', $title);
|
||||
|
@ -52,9 +49,6 @@ switch (filter('op')) {
|
|||
flash()->error(tr('Questo nome è già stato utilizzato per un altro attributo.'));
|
||||
} else {
|
||||
$attributo->setTranslation('title', $title);
|
||||
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
||||
$attributo->name = $descrizione;
|
||||
}
|
||||
$attributo->save();
|
||||
|
||||
flash()->info(tr('Attributo aggiornato correttamente!'));
|
||||
|
|
|
@ -25,10 +25,6 @@ echo '
|
|||
<input type="hidden" name="backto" value="record-edit">
|
||||
|
||||
<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">
|
||||
{[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]}
|
||||
</div>
|
||||
|
|
|
@ -31,10 +31,6 @@ echo '
|
|||
|
||||
<div class="panel-body">
|
||||
<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">
|
||||
{[ "type": "text", "label": "'.tr('Titolo').'", "name": "titolo", "value": "'.$attributo->getTranslation('title').'", "required": 1, "help": "'.tr("Nome visibile dell'attributo").'" ]}
|
||||
</div>
|
||||
|
|
|
@ -17,9 +17,6 @@ switch (filter('op')) {
|
|||
} else {
|
||||
if (empty($combinazione)) {
|
||||
$combinazione = Combinazione::build();
|
||||
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {
|
||||
$combinazione->name = $nome;
|
||||
}
|
||||
$id_record = $dbo->lastInsertedID();
|
||||
}
|
||||
$combinazione->setTranslation('title', $nome);
|
||||
|
|
|
@ -37,7 +37,7 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
<div class="row">
|
||||
<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 class="col-md-6">
|
||||
|
|
Loading…
Reference in New Issue