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/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
|
2019-05-24 19:22:17 +02:00
|
|
|
$rs = $dbo->fetchArray('SELECT *,
|
2020-03-12 22:15:02 +01:00
|
|
|
((SELECT SUM(co_righe_contratti.qta) FROM co_righe_contratti WHERE co_righe_contratti.um=\'ore\' AND co_righe_contratti.idcontratto=co_contratti.id) - IFNULL( (SELECT SUM(in_interventi_tecnici.ore) FROM in_interventi_tecnici INNER JOIN in_interventi ON in_interventi_tecnici.idintervento=in_interventi.id WHERE in_interventi.id_contratto=co_contratti.id AND in_interventi.idstatointervento IN (SELECT in_statiintervento.idstatointervento FROM in_statiintervento WHERE in_statiintervento.is_completato = 1)), 0) ) AS ore_rimanenti,
|
2019-05-24 19:22:17 +02:00
|
|
|
DATEDIFF(data_conclusione, NOW()) AS giorni_rimanenti,
|
|
|
|
data_conclusione,
|
|
|
|
ore_preavviso_rinnovo,
|
|
|
|
giorni_preavviso_rinnovo,
|
|
|
|
(SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=co_contratti.idanagrafica) AS ragione_sociale
|
|
|
|
FROM co_contratti WHERE
|
2021-07-29 15:57:38 +02:00
|
|
|
idstato IN (SELECT id FROM co_staticontratti WHERE is_pianificabile = 1) AND
|
2019-05-24 19:22:17 +02:00
|
|
|
rinnovabile = 1 AND
|
|
|
|
YEAR(data_conclusione) > 1970 AND
|
|
|
|
(SELECT id FROM co_contratti contratti WHERE contratti.idcontratto_prev = co_contratti.id) IS NULL
|
|
|
|
HAVING (ore_rimanenti < ore_preavviso_rinnovo OR DATEDIFF(data_conclusione, NOW()) < ABS(giorni_preavviso_rinnovo))
|
|
|
|
ORDER BY giorni_rimanenti ASC, ore_rimanenti ASC');
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
if (!empty($rs)) {
|
|
|
|
echo '
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tr>
|
2017-09-04 12:02:29 +02:00
|
|
|
<th width="50%">'.tr('Contratto').'</th>
|
2019-05-24 19:22:17 +02:00
|
|
|
<th width="15%" class="text-center">'.tr('Data inizio').'</th>
|
|
|
|
<th width="15%" class="text-center">'.tr('Data conclusione').'</th>
|
2017-09-04 12:02:29 +02:00
|
|
|
<th width="20%">'.tr('Rinnovo').'</th>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
|
|
|
|
foreach ($rs as $r) {
|
|
|
|
$data_accettazione = !empty($r['data_accettazione']) ? Translator::dateToLocale($r['data_accettazione']) : '';
|
|
|
|
|
|
|
|
$data_conclusione = !empty($r['data_conclusione']) ? Translator::dateToLocale($r['data_conclusione']) : '';
|
|
|
|
|
|
|
|
// Se scaduto, segna la riga in rosso
|
|
|
|
$class = (strtotime($r['data_conclusione']) < strtotime(date('Y-m-d')) && !empty($data_conclusione)) ? 'danger' : '';
|
|
|
|
|
2019-05-24 20:27:43 +02:00
|
|
|
if (isset($r['ore_rimanenti'])) {
|
2019-05-02 13:17:06 +02:00
|
|
|
// Se ore finite, segna la riga in rosso
|
2019-05-24 19:22:17 +02:00
|
|
|
if ($class != 'danger') {
|
|
|
|
$class = ($r['ore_rimanenti'] < 0) ? 'warning' : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$ore_rimanenti = ($r['ore_rimanenti'] >= 0) ? tr('ore rimanenti: _NUM_') : tr('ore in aggiunta: _NUM_');
|
|
|
|
$ore_rimanenti = str_replace('_NUM_', abs($r['ore_rimanenti']), $ore_rimanenti);
|
2019-05-02 13:17:06 +02:00
|
|
|
}
|
|
|
|
|
2019-05-24 19:22:17 +02:00
|
|
|
$scadenza = ($r['giorni_rimanenti'] > 0) ? tr('scade tra _DAYS_ giorni') : tr('scaduto da _DAYS_ giorni');
|
|
|
|
$scadenza = str_replace('_DAYS_', abs($r['giorni_rimanenti']), $scadenza);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
echo '
|
|
|
|
<tr class="'.$class.'">
|
|
|
|
<td>
|
|
|
|
'.Modules::link('Contratti', $r['id'], $r['nome']).'<br>
|
|
|
|
<small class="help-block">'.$r['ragione_sociale'].'</small>
|
|
|
|
</td>
|
|
|
|
<td class="text-center">'.$data_accettazione.'</td>
|
|
|
|
<td class="text-center">'.$data_conclusione.'</td>
|
2019-05-24 19:22:17 +02:00
|
|
|
<td>'.$scadenza.(isset($r['ore_rimanenti']) ? ' ('.$ore_rimanenti.')' : '').'</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
echo '
|
|
|
|
</table>';
|
|
|
|
} else {
|
|
|
|
echo '
|
2017-09-04 12:02:29 +02:00
|
|
|
<p>'.tr('Non ci sono contratti in scadenza').'.</p>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|