200 lines
7.8 KiB
PHP
200 lines
7.8 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
switch ($resource) {
|
|
case 'articoli':
|
|
$query = 'SELECT mg_articoli.*, (SELECT CONCAT(co_pianodeiconti2.numero, ".", co_pianodeiconti3.numero, " ", co_pianodeiconti3.descrizione) FROM co_pianodeiconti3 INNER JOIN co_pianodeiconti2 ON co_pianodeiconti3.idpianodeiconti2=co_pianodeiconti2.id WHERE co_pianodeiconti3.id = idconto_vendita) AS idconto_vendita_title, (SELECT CONCAT(co_pianodeiconti2.numero, ".", co_pianodeiconti3.numero, " ", co_pianodeiconti3.descrizione) FROM co_pianodeiconti3 INNER JOIN co_pianodeiconti2 ON co_pianodeiconti3.idpianodeiconti2=co_pianodeiconti2.id WHERE co_pianodeiconti3.id = idconto_acquisto) AS idconto_acquisto_title, co_iva.descrizione AS iva_vendita FROM mg_articoli LEFT OUTER JOIN co_iva ON mg_articoli.idiva_vendita=co_iva.id |where| ORDER BY mg_articoli.id_categoria ASC, mg_articoli.id_sottocategoria ASC';
|
|
|
|
// Individuazione di eventuali listini
|
|
if (!empty($superselect['dir']) && !empty($superselect['idanagrafica'])) {
|
|
$listino = $dbo->fetchOne('SELECT prc_guadagno as percentuale FROM mg_listini WHERE id=(SELECT idlistino_'.($superselect['dir'] == 'uscita' ? 'acquisti' : 'vendite').' FROM an_anagrafiche WHERE idanagrafica='.prepare($superselect['idanagrafica']).')');
|
|
}
|
|
|
|
//per le vendite leggo iva predefinita da anagrafica, se settata
|
|
if (!empty($superselect['dir']) && $superselect['dir'] == 'entrata' && !empty($superselect['idanagrafica'])) {
|
|
$idiva_predefinita = $dbo->fetchArray("SELECT idiva_vendite FROM an_anagrafiche WHERE idanagrafica = '".$superselect['idanagrafica']."' ")[0]['idiva_vendite'];
|
|
$iva_predefinita = $dbo->fetchArray("SELECT descrizione FROM co_iva WHERE id = '".$superselect['idiva_vendita']."' ")[0]['descrizione'];
|
|
}
|
|
|
|
//in alternativa, per tutti gli altri casi, prendo quella da impostazioni
|
|
if (empty($idiva_predefinita)) {
|
|
$idiva_predefinita = get_var('Iva predefinita');
|
|
$rs = $dbo->fetchArray("SELECT descrizione FROM co_iva WHERE id='".$idiva_predefinita."'");
|
|
$iva_predefinita = $rs[0]['descrizione'];
|
|
}
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'mg_articoli.id='.prepare($element);
|
|
}
|
|
|
|
$where[] = 'attivo = 1';
|
|
if (!empty($superselect['dir']) && $superselect['dir'] == 'entrata') {
|
|
//$where[] = '(qta > 0 OR servizio = 1)';
|
|
}
|
|
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'mg_articoli.descrizione LIKE '.prepare('%'.$search.'%');
|
|
$search_fields[] = 'mg_articoli.codice LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
if (!empty($search_fields)) {
|
|
$where[] = '('.implode(' OR ', $search_fields).')';
|
|
}
|
|
|
|
if (!empty($filter)) {
|
|
$where[] = '('.implode(' OR ', $filter).')';
|
|
}
|
|
|
|
$wh = '';
|
|
if (count($where) != 0) {
|
|
$wh = 'WHERE '.implode(' AND ', $where);
|
|
}
|
|
$query = str_replace('|where|', $wh, $query);
|
|
|
|
$prev = -1;
|
|
$rs = $dbo->fetchArray($query);
|
|
foreach ($rs as $r) {
|
|
if ($prev != $r['id_sottocategoria']) {
|
|
$categoria = $dbo->fetchOne('SELECT `nome` FROM `mg_categorie` WHERE `id`='.prepare($r['id_categoria']))['nome'];
|
|
|
|
$sottocategoria = $dbo->fetchOne('SELECT `nome` FROM `mg_categorie` WHERE `id`='.prepare($r['id_sottocategoria']));
|
|
$sottocategoria = isset($sottocategoria['nome']) ? $sottocategoria['nome'] : null;
|
|
|
|
$prev = $r['id_sottocategoria'];
|
|
$results[] = ['text' => $categoria.' ('.(!empty($r['id_sottocategoria']) ? $sottocategoria : '-').')', 'children' => []];
|
|
}
|
|
|
|
if (empty($r['idiva_vendita'])) {
|
|
$idiva = $idiva_predefinita;
|
|
$iva = $iva_predefinita;
|
|
} else {
|
|
$idiva = $r['idiva_vendita'];
|
|
$iva = $r['iva_vendita'];
|
|
}
|
|
|
|
$prezzo_vendita = $r['prezzo_vendita'];
|
|
if (!empty($listino)) {
|
|
$prezzo_vendita = sum($prezzo_vendita, -calcola_sconto([
|
|
'sconto' => $listino['percentuale'],
|
|
'prezzo' => $prezzo_vendita,
|
|
'tipo' => 'PRC',
|
|
'qta' => 1,
|
|
]));
|
|
}
|
|
|
|
$results[count($results) - 1]['children'][] = [
|
|
'id' => $r['id'],
|
|
'text' => $r['codice'].' - '.$r['descrizione'],
|
|
'codice' => $r['codice'],
|
|
'descrizione' => $r['descrizione'],
|
|
'um' => $r['um'],
|
|
'idiva_vendita' => $idiva,
|
|
'iva_vendita' => $iva,
|
|
'idconto_vendita' => $r['idconto_vendita'],
|
|
'idconto_vendita_title' => $r['idconto_vendita_title'],
|
|
'idconto_acquisto' => $r['idconto_acquisto'],
|
|
'idconto_acquisto_title' => $r['idconto_acquisto_title'],
|
|
'prezzo_acquisto' => $r['prezzo_acquisto'],
|
|
'prezzo_vendita' => $prezzo_vendita,
|
|
];
|
|
}
|
|
|
|
break;
|
|
|
|
case 'prodotti_lotti':
|
|
$query = 'SELECT DISTINCT lotto AS descrizione FROM mg_prodotti |where|';
|
|
|
|
$where[] = 'idarticolo='.prepare($superselect['idarticolo']);
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'lotto='.prepare($element);
|
|
}
|
|
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'lotto LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
$custom['id'] = 'descrizione';
|
|
|
|
break;
|
|
|
|
case 'prodotti_serial':
|
|
$query = 'SELECT DISTINCT serial AS descrizione FROM mg_prodotti |where|';
|
|
|
|
$where[] = 'id_articolo='.prepare($superselect['idarticolo']);
|
|
$where[] = 'lotto='.prepare($superselect['lotto']);
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'serial='.prepare($element);
|
|
}
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'serial LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
$custom['id'] = 'descrizione';
|
|
|
|
break;
|
|
|
|
case 'prodotti_altro':
|
|
$query = 'SELECT DISTINCT altro AS descrizione FROM mg_prodotti |where|';
|
|
|
|
$where[] = 'id_articolo='.prepare($superselect['idarticolo']);
|
|
$where[] = 'lotto='.prepare($superselect['lotto']);
|
|
$where[] = 'serial='.prepare($superselect['serial']);
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'altro='.prepare($element);
|
|
}
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'altro LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
$custom['id'] = 'descrizione';
|
|
|
|
break;
|
|
|
|
case 'categorie':
|
|
$query = 'SELECT id, nome AS descrizione FROM mg_categorie |where| ORDER BY id';
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'id='.prepare($element);
|
|
}
|
|
|
|
$where[] = '`parent` IS NULL';
|
|
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'nome LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
break;
|
|
|
|
case 'sottocategorie':
|
|
if (isset($superselect['id_categoria'])) {
|
|
$query = 'SELECT id, nome AS descrizione FROM mg_categorie |where| ORDER BY id';
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'id='.prepare($element);
|
|
}
|
|
|
|
$where[] = '`parent`='.prepare($superselect['id_categoria']);
|
|
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'nome LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'misure':
|
|
$query = 'SELECT valore AS id, valore AS descrizione FROM mg_unitamisura |where| ORDER BY valore';
|
|
|
|
foreach ($elements as $element) {
|
|
$filter[] = 'valore='.prepare($element);
|
|
}
|
|
if (!empty($search)) {
|
|
$search_fields[] = 'valore LIKE '.prepare('%'.$search.'%');
|
|
}
|
|
|
|
break;
|
|
}
|