Fix query selezione preventivi

This commit is contained in:
Luca 2019-03-20 14:56:11 +01:00
parent ff0ff38f8f
commit 85e7e9311f
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ switch ($resource) {
$where[] = 'an_anagrafiche.idanagrafica='.prepare($superselect['idanagrafica']);
$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)) {

View File

@ -16,7 +16,7 @@ switch ($resource) {
$where[] = 'co_preventivi.default_revision=1';
$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)) {