Fix query selezione preventivi
This commit is contained in:
parent
ff0ff38f8f
commit
85e7e9311f
|
@ -14,7 +14,7 @@ switch ($resource) {
|
||||||
$where[] = 'an_anagrafiche.idanagrafica='.prepare($superselect['idanagrafica']);
|
$where[] = 'an_anagrafiche.idanagrafica='.prepare($superselect['idanagrafica']);
|
||||||
|
|
||||||
$stato = !empty($superselect['stato']) ? $superselect['stato'] : 'pianificabile';
|
$stato = !empty($superselect['stato']) ? $superselect['stato'] : 'pianificabile';
|
||||||
$where[] = 'idstato IN (SELECT `id` FROM co_staticontratti WHERE '.$stato.' = 1)';
|
$where[] = 'idstato IN (SELECT `id` FROM `co_staticontratti` WHERE '.$stato.' = 1)';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($search)) {
|
if (!empty($search)) {
|
||||||
|
|
|
@ -16,7 +16,7 @@ switch ($resource) {
|
||||||
$where[] = 'co_preventivi.default_revision=1';
|
$where[] = 'co_preventivi.default_revision=1';
|
||||||
|
|
||||||
$stato = !empty($superselect['stato']) ? $superselect['stato'] : 'fatturabile';
|
$stato = !empty($superselect['stato']) ? $superselect['stato'] : 'fatturabile';
|
||||||
$where[] = 'idstato IN (SELECT `id` FROM co_staticontratti WHERE '.$stato.' = 1)';
|
$where[] = 'idstato IN (SELECT `id` FROM `co_statipreventivi` WHERE '.$stato.' = 1)';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($search)) {
|
if (!empty($search)) {
|
||||||
|
|
Loading…
Reference in New Issue