Migliorie minori

This commit is contained in:
Luca 2020-03-27 13:27:23 +01:00
parent 3a8316dc16
commit c8938b8f4f
2 changed files with 4 additions and 1 deletions

View File

@ -232,7 +232,7 @@ return [
'idnazione',
'nazione',
],
'query' => 'SELECT id as result FROM an_nazioni WHERE LOWER(nome) = LOWER(|value|)',
'query' => 'SELECT id as result FROM an_nazioni WHERE LOWER(nome) = LOWER(|value|) OR LOWER(iso2) = LOWER(|value|)',
],
[
'field' => 'idagente',

View File

@ -615,6 +615,9 @@ if (!$block_edit) {
$art_query = 'SELECT id FROM mg_articoli WHERE attivo = 1 AND deleted_at IS NULL';
if ($dir == 'entrata') {
$art_query .= ' AND (qta > 0 OR servizio = 1)';
}else{
//Gli articoli possono essere creati al volo direttamente dal modale di aggiunta articolo
$art_query .= ' OR 1=1';
}
$articoli = $dbo->fetchNum($art_query);