1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 06:55:05 +01:00
openstamanager/modules/iva/ajax/select.php
2018-09-21 18:08:47 +02:00

23 lines
643 B
PHP

<?php
include_once __DIR__.'/../../../core.php';
switch ($resource) {
case 'iva':
$query = 'SELECT id, IF(codice IS NULL, descrizione, CONCAT(codice, " - ", descrizione)) AS descrizione FROM co_iva |where| ORDER BY descrizione ASC';
foreach ($elements as $element) {
$filter[] = 'id='.prepare($element);
}
if (!empty($search)) {
$search_fields[] = 'descrizione LIKE '.prepare('%'.$search.'%');
$search_fields[] = 'codice LIKE '.prepare('%'.$search.'%');
}
if (empty($filter)) {
$where[] = 'deleted_at IS NULL';
}
break;
}