2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-11-29 18:21:31 +01:00
|
|
|
|
2020-02-27 16:37:11 +01:00
|
|
|
include_once __DIR__.'/../../../core.php';
|
2024-03-05 16:01:45 +01:00
|
|
|
use Models\Module;
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2024-03-05 16:01:45 +01:00
|
|
|
$id_module = (new Module())->GetByName('Preventivi')->id_record;
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2024-02-26 10:50:43 +01:00
|
|
|
$rs = $dbo->fetchArray("SELECT *,
|
|
|
|
`an_anagrafiche`.`ragione_sociale` AS ragione_sociale
|
|
|
|
FROM
|
|
|
|
`co_preventivi`
|
|
|
|
INNER JOIN `an_anagrafiche` ON `co_preventivi`.`idanagrafica`=`an_anagrafiche`.`idanagrafica`
|
|
|
|
INNER JOIN `co_statipreventivi` ON `co_preventivi`.`idstato`=`co_statipreventivi`.`id`
|
|
|
|
LEFT JOIN `co_statipreventivi_lang` ON (`co_statipreventivi`.`id`=`co_statipreventivi_lang`.`id_record` AND `co_statipreventivi_lang`.`id_lang` = ".prepare(setting('Lingua')).")
|
|
|
|
WHERE
|
|
|
|
`co_statipreventivi_lang`.`name` = 'In lavorazione'
|
|
|
|
AND `default_revision` = 1
|
|
|
|
ORDER BY
|
|
|
|
`data_conclusione` ASC");
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-02-27 16:37:11 +01:00
|
|
|
if (!empty($rs)) {
|
|
|
|
echo "
|
|
|
|
<table class='table table-hover'>
|
|
|
|
<tr>
|
|
|
|
<th width='70%'>Preventivo</th>
|
|
|
|
<th width='15%'>Data inizio</th>
|
|
|
|
<th width='15%'>Data conclusione</th>
|
|
|
|
</tr>";
|
2018-02-18 19:53:23 +01:00
|
|
|
|
2020-02-27 16:37:11 +01:00
|
|
|
foreach ($rs as $preventivo) {
|
|
|
|
$data_accettazione = ($preventivo['data_accettazione'] != '0000-00-00') ? Translator::dateToLocale($preventivo['data_accettazione']) : '';
|
|
|
|
$data_conclusione = ($preventivo['data_conclusione'] != '0000-00-00') ? Translator::dateToLocale($preventivo['data_conclusione']) : '';
|
2018-02-18 19:53:23 +01:00
|
|
|
|
2020-02-27 16:37:11 +01:00
|
|
|
if (strtotime($preventivo['data_conclusione']) < strtotime(date('Y-m-d')) && $data_conclusione != '') {
|
|
|
|
$attr = ' class="danger"';
|
|
|
|
} else {
|
|
|
|
$attr = '';
|
2018-02-18 19:53:23 +01:00
|
|
|
}
|
|
|
|
|
2020-09-23 17:53:19 +02:00
|
|
|
echo '<tr '.$attr.'><td><a href="'.base_path().'/editor.php?id_module='.$id_module.'&id_record='.$preventivo['id'].'">'.$preventivo['nome']."</a><br><small class='help-block'>".$preventivo['ragione_sociale'].'</small></td>';
|
2020-02-27 16:37:11 +01:00
|
|
|
echo '<td '.$attr.'>'.$data_accettazione.'</td>';
|
|
|
|
echo '<td '.$attr.'>'.$data_conclusione.'</td></tr>';
|
2018-02-18 19:53:23 +01:00
|
|
|
}
|
2020-02-27 16:37:11 +01:00
|
|
|
|
|
|
|
echo '
|
|
|
|
</table>';
|
|
|
|
} else {
|
|
|
|
echo '
|
|
|
|
<p>'.tr('Non ci sono preventivi in lavorazione').'.</p>';
|
|
|
|
}
|