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';
|
2018-06-26 09:41:43 +02:00
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
use Modules\Interventi\Intervento;
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
// Tabella con riepilogo interventi
|
2020-02-14 17:02:16 +01:00
|
|
|
$interventi = Intervento::where('id_contratto', $id_record)->get();
|
2020-07-02 15:37:22 +02:00
|
|
|
$totale_ore_completate = 0;
|
2020-02-14 17:02:16 +01:00
|
|
|
if (!empty($interventi)) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
|
|
|
<table class="table table-bordered table-condensed">
|
|
|
|
<tr>
|
2017-09-14 17:37:32 +02:00
|
|
|
<th>'.tr('Attività').'</th>
|
|
|
|
<th width="100">'.tr('Ore').'</th>
|
|
|
|
<th width="100">'.tr('Km').'</th>
|
|
|
|
<th width="120">'.tr('Costo').'</th>
|
|
|
|
<th width="120">'.tr('Addebito').'</th>
|
|
|
|
<th width="120">'.tr('Tot. scontato').'</th>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
// Tabella con i dati
|
2020-02-14 17:02:16 +01:00
|
|
|
foreach ($interventi as $intervento) {
|
2020-07-02 15:37:22 +02:00
|
|
|
$totale_ore_completate += !empty($intervento->stato->is_completato) ? $intervento->ore_totali : 0;
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
// Riga per il singolo intervento
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-02-14 17:02:16 +01:00
|
|
|
<tr style="background:'.$intervento->stato->colore.';">
|
2017-08-04 16:28:16 +02:00
|
|
|
<td>
|
2020-02-14 17:02:16 +01:00
|
|
|
<a href="javascript:;" class="btn btn-primary btn-xs" onclick="$(\'#dettagli_'.$intervento->id.'\').toggleClass(\'hide\'); $(this).find(\'i\').toggleClass(\'fa-plus\').toggleClass(\'fa-minus\');"><i class="fa fa-plus"></i></a>
|
|
|
|
'.Modules::link('Interventi', $intervento->id, tr('Intervento num. _NUM_ del _DATE_', [
|
|
|
|
'_NUM_' => $intervento->codice,
|
|
|
|
'_DATE_' => Translator::dateToLocale($intervento->inizio),
|
2017-09-14 17:37:32 +02:00
|
|
|
])).'
|
|
|
|
</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
'.numberFormat($intervento->ore_totali).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
'.numberFormat($intervento->km_totali).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
'.moneyFormat($intervento->spesa).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
'.moneyFormat($intervento->imponibile).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
'.moneyFormat($intervento->totale_imponibile).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
|
|
|
</tr>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
// Riga con dettagli
|
|
|
|
echo '
|
2020-02-14 17:02:16 +01:00
|
|
|
<tr class="hide" id="dettagli_'.$intervento->id.'">
|
2017-09-14 17:37:32 +02:00
|
|
|
<td colspan="6">';
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
// Lettura sessioni di lavoro
|
|
|
|
$sessioni = $intervento->sessioni;
|
|
|
|
if (!empty($sessioni)) {
|
2017-09-14 17:37:32 +02:00
|
|
|
echo '
|
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
2017-08-04 16:28:16 +02:00
|
|
|
<tr>
|
2017-09-14 17:37:32 +02:00
|
|
|
<th>'.tr('Tecnico').'</th>
|
|
|
|
<th width="230">'.tr('Tipo attività').'</th>
|
|
|
|
<th width="120">'.tr('Ore').'</th>
|
|
|
|
<th width="120">'.tr('Km').'</th>
|
2019-09-06 15:08:31 +02:00
|
|
|
<th width="120">'.tr('Costo ore').'</th>
|
2017-09-14 17:37:32 +02:00
|
|
|
<th width="120">'.tr('Costo km').'</th>
|
|
|
|
<th width="120">'.tr('Diritto ch.').'</th>
|
2019-09-06 15:08:31 +02:00
|
|
|
<th width="120">'.tr('Prezzo ore').'</th>
|
2017-09-14 17:37:32 +02:00
|
|
|
<th width="120">'.tr('Prezzo km').'</th>
|
|
|
|
<th width="120">'.tr('Diritto ch.').'</th>
|
|
|
|
</tr>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
foreach ($sessioni as $sessione) {
|
2017-09-14 17:37:32 +02:00
|
|
|
// Visualizzo lo sconto su ore o km se c'è
|
2020-02-14 17:02:16 +01:00
|
|
|
$sconto_ore = !empty($sessione->sconto_totale_manodopera) ? '<br><span class="label label-danger">'.moneyFormat(-$sessione->sconto_totale_manodopera).'</span>' : '';
|
|
|
|
$sconto_km = !empty($sessione->sconto_totale_viaggio) ? '<br><span class="label label-danger">'.moneyFormat(-$sessione->sconto_totale_viaggio).'</span>' : '';
|
2018-01-19 22:48:39 +01:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2017-09-14 17:37:32 +02:00
|
|
|
<tr>
|
2020-02-14 17:02:16 +01:00
|
|
|
<td>'.$sessione->anagrafica->ragione_sociale.'</td>
|
|
|
|
<td>'.$sessione->tipo->descrizione.'</td>
|
|
|
|
<td class="text-right">'.numberFormat($sessione->ore).'</td>
|
|
|
|
<td class="text-right">'.numberFormat($sessione->km).'</td>
|
|
|
|
<td class="text-right danger">'.moneyFormat($sessione->costo_manodopera).'</td>
|
|
|
|
<td class="text-right danger">'.moneyFormat($sessione->costo_viaggio).'</td>
|
|
|
|
<td class="text-right danger">'.moneyFormat($sessione->costo_diritto_chiamata).'</td>
|
|
|
|
<td class="text-right success">'.moneyFormat($sessione->prezzo_manodopera).$sconto_ore.'</td>
|
|
|
|
<td class="text-right success">'.moneyFormat($sessione->prezzo_viaggio).$sconto_km.'</td>
|
|
|
|
<td class="text-right success">'.moneyFormat($sessione->prezzo_diritto_chiamata).'</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
2017-09-14 17:37:32 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2017-09-14 17:37:32 +02:00
|
|
|
</table>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
// Lettura articoli utilizzati
|
|
|
|
$articoli = $intervento->articoli;
|
|
|
|
if (!$articoli->isEmpty()) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2017-09-14 17:37:32 +02:00
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
2017-08-04 16:28:16 +02:00
|
|
|
<tr>
|
2017-09-14 17:37:32 +02:00
|
|
|
<th>'.tr('Materiale').'</th>
|
|
|
|
<th width="120">'.tr('Q.tà').'</th>
|
|
|
|
<th width="150">'.tr('Prezzo di acquisto').'</th>
|
|
|
|
<th width="150">'.tr('Prezzo di vendita').'</th>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
foreach ($articoli as $articolo) {
|
|
|
|
$sconto = !empty($articolo->sconto) ? '<br><span class="label label-danger">'.moneyFormat(-$articolo->sconto).'</span>' : '';
|
2017-09-14 17:37:32 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
|
|
|
<tr>
|
2017-09-14 17:37:32 +02:00
|
|
|
<td>
|
2020-02-14 17:02:16 +01:00
|
|
|
'.Modules::link('Articoli', $articolo->idarticolo, $articolo->descrizione).'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2020-02-14 17:02:16 +01:00
|
|
|
<td class="text-right">'.numberFormat($articolo->qta, 'qta').'</td>
|
|
|
|
<td class="text-right danger">'.moneyFormat($articolo->spesa).'</td>
|
|
|
|
<td class="text-right success">'.moneyFormat($articolo->imponibile).$sconto.'</td>
|
2017-09-14 17:37:32 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-09-14 17:37:32 +02:00
|
|
|
echo '
|
|
|
|
</table>';
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
// Lettura spese aggiuntive
|
|
|
|
$righe = $intervento->righe;
|
|
|
|
if (!$righe->isEmpty()) {
|
2017-09-14 17:37:32 +02:00
|
|
|
echo '
|
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
|
|
<tr>
|
|
|
|
<th>'.tr('Altre spese').'</th>
|
|
|
|
<th width="120">'.tr('Q.tà').'</th>
|
|
|
|
<th width="150">'.tr('Prezzo di acquisto').'</th>
|
|
|
|
<th width="150">'.tr('Prezzo di vendita').'</th>
|
|
|
|
</tr>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
foreach ($righe as $riga) {
|
|
|
|
$sconto = !empty($riga->sconto) ? '<br><span class="label label-danger">'.moneyFormat(-$riga->sconto).'</span>' : '';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
echo '
|
2017-09-14 17:37:32 +02:00
|
|
|
<tr>
|
|
|
|
<td>
|
2020-02-14 17:02:16 +01:00
|
|
|
'.$riga->descrizione.'
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>
|
2020-02-14 17:02:16 +01:00
|
|
|
<td class="text-right">'.numberFormat($riga->qta, 'qta').'</td>
|
|
|
|
<td class="text-right danger">'.moneyFormat($riga->spesa).'</td>
|
|
|
|
<td class="text-right success">'.moneyFormat($riga->imponibile).$sconto.'</td>
|
2017-08-04 16:28:16 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
2017-09-14 17:37:32 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2017-09-14 17:37:32 +02:00
|
|
|
</table>';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2017-08-04 16:28:16 +02:00
|
|
|
</td>
|
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
$array_interventi = $interventi->toArray();
|
|
|
|
$totale_km = sum(array_column($array_interventi, 'km_totali'));
|
|
|
|
$totale_costo = sum(array_column($array_interventi, 'spesa'));
|
|
|
|
$totale_addebito = sum(array_column($array_interventi, 'imponibile'));
|
|
|
|
$totale = sum(array_column($array_interventi, 'totale_imponibile'));
|
2020-07-02 15:37:22 +02:00
|
|
|
$totale_ore = sum(array_column($array_interventi, 'ore_totali'));
|
2020-02-14 17:02:16 +01:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
// Totali
|
|
|
|
echo '
|
|
|
|
<tr>
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2017-09-14 17:37:32 +02:00
|
|
|
<b><big>'.tr('Totale').'</big></b>
|
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
<big><b>'.numberFormat($totale_ore).'</b></big>
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
<big><b>'.numberFormat($totale_km).'</b></big>
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
<big><b>'.moneyFormat($totale_costo).'</b></big>
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
<big><b>'.moneyFormat($totale_addebito).'</b></big>
|
2017-09-14 17:37:32 +02:00
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-06 13:19:20 +02:00
|
|
|
<td class="text-right">
|
2020-02-14 17:02:16 +01:00
|
|
|
<big><b>'.moneyFormat($totale).'</b></big>
|
2017-08-04 16:28:16 +02:00
|
|
|
</td>
|
|
|
|
</tr>';
|
|
|
|
|
2020-02-14 17:02:16 +01:00
|
|
|
$stati = $interventi->groupBy('idstatointervento');
|
2020-07-20 14:40:11 +02:00
|
|
|
if (count($stati) > 0) {
|
2020-07-17 16:03:21 +02:00
|
|
|
// Totali per stato
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-07-17 16:03:21 +02:00
|
|
|
<tr>
|
|
|
|
<td colspan="6">
|
|
|
|
<br><b>'.tr('Totale interventi per stato', [], ['upper' => true]).'</b>
|
|
|
|
</td>
|
|
|
|
</tr>';
|
2017-09-14 17:37:32 +02:00
|
|
|
|
2020-07-17 16:03:21 +02:00
|
|
|
foreach ($stati as $interventi_collegati) {
|
|
|
|
$stato = $interventi_collegati->first()->stato;
|
|
|
|
$totale_stato = sum(array_column($interventi_collegati->toArray(), 'totale_imponibile'));
|
|
|
|
|
|
|
|
echo '
|
|
|
|
<tr>
|
|
|
|
<td colspan="3"></td>
|
|
|
|
|
|
|
|
<td class="text-right" colspan="2" style="background:'.$stato->colore.';">
|
|
|
|
<big><b>'.$stato->descrizione.':</b></big>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td class="text-right">
|
|
|
|
<big><b>'.moneyFormat($totale_stato).'</b></big>
|
|
|
|
</td>
|
|
|
|
</tr>';
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
2017-09-14 17:37:32 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
|
|
|
</table>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Bilancio del contratto
|
|
|
|
*/
|
2018-06-29 17:30:41 +02:00
|
|
|
$rs = $dbo->fetchArray('SELECT SUM(subtotale - sconto) AS budget FROM co_righe_contratti WHERE idcontratto='.prepare($id_record));
|
2017-08-04 16:28:16 +02:00
|
|
|
$budget = $rs[0]['budget'];
|
|
|
|
|
2018-06-29 17:30:41 +02:00
|
|
|
$rs = $dbo->fetchArray("SELECT SUM(qta) AS totale_ore FROM `co_righe_contratti` WHERE um='ore' AND idcontratto=".prepare($id_record));
|
2019-03-08 17:24:48 +01:00
|
|
|
$totale_ore_contratto = $rs[0]['totale_ore'];
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-11-22 15:34:44 +01:00
|
|
|
$diff = sum($budget, -$totale);
|
2018-05-09 15:43:37 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
if ($diff > 0) {
|
2019-04-13 02:56:39 +02:00
|
|
|
$bilancio = '<span class="text-success"><big>'.moneyFormat($diff).'</big></span>';
|
2017-08-04 16:28:16 +02:00
|
|
|
} elseif ($diff < 0) {
|
2019-04-13 02:56:39 +02:00
|
|
|
$bilancio = '<span class="text-danger"><big>'.moneyFormat($diff).'</big></span>';
|
2017-08-04 16:28:16 +02:00
|
|
|
} else {
|
2019-04-13 02:56:39 +02:00
|
|
|
$bilancio = '<span><big>'.moneyFormat($diff).'</big></span>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
|
|
|
<div class="well text-center">
|
|
|
|
<big>
|
2017-09-14 17:37:32 +02:00
|
|
|
<b>'.tr('Rapporto budget/spesa').'</b>:<br>
|
2017-08-04 16:28:16 +02:00
|
|
|
'.$bilancio.'
|
|
|
|
</big>
|
|
|
|
<br><br>';
|
|
|
|
|
2017-09-14 18:25:09 +02:00
|
|
|
echo '
|
|
|
|
<div class="row">
|
2019-03-08 17:24:48 +01:00
|
|
|
<big class="col-md-4 col-md-offset-4 text-center">
|
2021-09-03 17:58:22 +02:00
|
|
|
<table class="table text-left table-striped table-bordered">';
|
|
|
|
if (!empty($totale_ore_contratto)) {
|
|
|
|
echo '
|
2017-09-14 18:25:09 +02:00
|
|
|
<tr>
|
2020-07-17 16:03:21 +02:00
|
|
|
<td>'.tr('Ore a contratto').':</td>
|
|
|
|
<td class="text-right">'.Translator::numberToLocale($totale_ore_contratto).'</td>
|
2021-09-03 17:58:22 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
echo '
|
2017-09-14 18:25:09 +02:00
|
|
|
<tr>
|
2019-03-08 17:24:48 +01:00
|
|
|
<td>'.tr('Ore erogate totali').':</td>
|
2020-07-02 15:37:22 +02:00
|
|
|
<td class="text-right">'.Translator::numberToLocale($totale_ore).'</td>
|
2021-09-03 17:58:22 +02:00
|
|
|
</tr>';
|
|
|
|
if (!empty($totale_ore_contratto)) {
|
|
|
|
echo '
|
2020-07-17 16:03:21 +02:00
|
|
|
<tr>
|
2019-03-08 17:24:48 +01:00
|
|
|
<td>'.tr('Ore residue totali').':</td>
|
2020-07-02 15:37:22 +02:00
|
|
|
<td class="text-right">'.Translator::numberToLocale(floatval($totale_ore_contratto) - floatval($totale_ore)).'</td>
|
2021-09-03 17:58:22 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
echo '
|
2017-09-14 18:25:09 +02:00
|
|
|
<tr>
|
2019-03-08 17:24:48 +01:00
|
|
|
<td>'.tr('Ore erogate concluse').':</td>
|
|
|
|
<td class="text-right">'.Translator::numberToLocale($totale_ore_completate).'</td>
|
2021-09-03 17:58:22 +02:00
|
|
|
</tr>';
|
|
|
|
if (!empty($totale_ore_contratto)) {
|
|
|
|
echo '
|
2020-07-17 16:03:21 +02:00
|
|
|
<tr>
|
|
|
|
<td>'.tr('Ore residue concluse').':</td>
|
2019-03-08 17:24:48 +01:00
|
|
|
<td class="text-right">'.Translator::numberToLocale(floatval($totale_ore_contratto) - floatval($totale_ore_completate)).'</td>
|
2021-09-03 17:58:22 +02:00
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
echo '
|
2017-09-14 18:25:09 +02:00
|
|
|
</table>
|
|
|
|
</big>
|
|
|
|
</div>';
|
2021-09-03 17:58:22 +02:00
|
|
|
|
|
|
|
if (empty($totale_ore_contratto)) {
|
2017-09-14 18:25:09 +02:00
|
|
|
echo '
|
|
|
|
<div class="alert alert-info">
|
|
|
|
<p>'.tr('Per monitorare il consumo ore, inserisci almeno una riga con unità di misura "ore"').'.</p>
|
|
|
|
</div>';
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:58:22 +02:00
|
|
|
echo '
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>';
|
|
|
|
|
|
|
|
/*
|
|
|
|
Stampa consuntivo
|
|
|
|
*/
|
|
|
|
echo '
|
|
|
|
<div class="text-center">
|
2017-09-21 17:48:41 +02:00
|
|
|
'.Prints::getLink('Consuntivo contratto', $id_record, 'btn-primary', tr('Stampa consuntivo')).'
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>';
|