119 lines
5.3 KiB
PHP
119 lines
5.3 KiB
PHP
<?php
|
|
|
|
if (file_exists(__DIR__.'/../../../core.php')) {
|
|
include_once __DIR__.'/../../../core.php';
|
|
} else {
|
|
include_once __DIR__.'/../../core.php';
|
|
}
|
|
|
|
include_once Modules::filepath('Interventi', 'modutil.php');
|
|
|
|
$idiva = get_var('Iva predefinita');
|
|
$rs_iva = $dbo->fetchArray('SELECT descrizione, percentuale, indetraibile FROM co_iva WHERE id='.prepare($idiva));
|
|
($rs_iva[0]['percentuale'] > 0) ? $hide = '' : $hide = 'hide';
|
|
|
|
if (Auth::admin() || $_SESSION['gruppo'] != 'Tecnici') {
|
|
$costi = get_costi_intervento($id_record);
|
|
|
|
$rss = $dbo->fetchArray('SELECT in_statiintervento.completato AS flag_completato FROM in_statiintervento INNER JOIN in_interventi ON in_statiintervento.idstatointervento=in_interventi.idstatointervento WHERE in_interventi.id='.prepare($id_record));
|
|
|
|
if ($rss[0]['flag_completato']) {
|
|
$readonly = 'readonly';
|
|
} else {
|
|
$readonly = '';
|
|
}
|
|
|
|
echo '
|
|
<!-- Riepilogo dei costi -->
|
|
<table class="table table condensed table-striped table-hover table-bordered">
|
|
<tr>
|
|
<th width="40%"></th>
|
|
<th width="20%" class="text-center">'.tr('Costo', [], ['upper' => true]).'</th>
|
|
<th width="20%" class="text-center">'.tr('Addebito', [], ['upper' => true]).'</th>
|
|
<th width="20%" class="text-center">'.tr('Tot. Scontato', [], ['upper' => true]).'</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale manodopera', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['manodopera_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['manodopera_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['manodopera_scontato']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale diritto di chiamata', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['dirittochiamata_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['dirittochiamata_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['dirittochiamata_scontato']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale viaggio', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['viaggio_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['viaggio_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['viaggio_scontato']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale articoli', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['ricambi_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['ricambi_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['ricambi_scontato']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale altre spese', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['altro_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['altro_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['altro_scontato']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Sconto incondizionato', [], ['upper' => true]).'</th>
|
|
<td class="text-right">-</td>
|
|
<td class="text-right">-</td>
|
|
<td class="text-right">'.Translator::numberToLocale(-$costi['sconto_globale']).' €</td>
|
|
</tr>
|
|
|
|
|
|
<tr class='.$hide.' >
|
|
<th>'.tr('Imponibile', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['totale_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['totale_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['totale_scontato']).' €</td>
|
|
</tr>
|
|
|
|
|
|
<tr class='.$hide.' >
|
|
<th>'.tr('IVA', [], ['upper' => true]).'</th>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['iva_costo']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['iva_addebito']).' €</td>
|
|
<td class="text-right">'.Translator::numberToLocale($costi['iva_totale']).' €</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>'.tr('Totale', [], ['upper' => true]).'</th>
|
|
<th class="text-right">'.Translator::numberToLocale($costi['totaleivato_costo']).' €</th>
|
|
<th class="text-right">'.Translator::numberToLocale($costi['totaleivato_addebito']).' €</th>
|
|
<th class="text-right">'.Translator::numberToLocale($costi['totale']).' €</th>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
|
|
// Lettura dello sconto incondizionato
|
|
$rss = $dbo->fetchArray('SELECT sconto_globale, tipo_sconto_globale FROM in_interventi WHERE id='.prepare($id_record));
|
|
$sconto = $rss[0]['sconto_globale'];
|
|
$tipo_sconto = $rss[0]['tipo_sconto_globale'];
|
|
|
|
echo '
|
|
|
|
<!-- SCONTO -->
|
|
<div class="row">
|
|
<div class="col-md-4 pull-right">
|
|
{[ "type": "number", "label": "'.tr('Sconto incondizionato').'", "name": "sconto_globale", "value": "'.$sconto.'", "icon-after": "choice|untprc|'.$tipo_sconto.'|'.$readonly.'", "extra": "'.$readonly.'" ]}
|
|
</div>
|
|
</div>';
|
|
|
|
echo '
|
|
<script src="'.$rootdir.'/lib/init.js"></script>';
|