97 lines
3.8 KiB
PHP
97 lines
3.8 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
use Modules\Interventi\Intervento;
|
|
|
|
$intervento = Intervento::find($record['id']);
|
|
|
|
$imponibile = empty($options['dir']) ? $intervento->imponibile : $intervento->spesa;
|
|
$sconto = empty($options['dir']) ? $intervento->sconto : 0;
|
|
$totale_imponibile = empty($options['dir']) ? $intervento->totale_imponibile : $intervento->spesa;
|
|
|
|
$somma_imponibile[] = $imponibile;
|
|
$somma_sconto[] = $sconto;
|
|
$somma_totale_imponibile[] = $totale_imponibile;
|
|
|
|
$pricing = isset($pricing) ? $pricing : true;
|
|
|
|
// Informazioni intervento
|
|
echo '
|
|
<tr>
|
|
<td colspan="2">';
|
|
|
|
if (dateFormat($intervento->inizio)) {
|
|
echo '
|
|
<p>'.tr('Intervento _NUM_ del _DATE_', [
|
|
'_NUM_' => $intervento->codice,
|
|
'_DATE_' => dateFormat($intervento->inizio),
|
|
]).'</p>';
|
|
} else {
|
|
echo '
|
|
<p>'.tr('Promemoria _NUM_', [
|
|
'_NUM_' => $intervento->codice,
|
|
]).'</p>';
|
|
}
|
|
echo '
|
|
<p><small><b>'.tr('Cliente').':</b> '.$intervento->anagrafica->ragione_sociale.'</small></p>
|
|
<p><small><b>'.tr('Stato').':</b> '.$intervento->stato->descrizione.'</small></p>
|
|
<p><small><b>'.tr('Data richiesta').':</b> '.dateFormat($intervento->data_richiesta).'</small></p>
|
|
<p><small><b>'.tr('Richiesta').':</b> '.$intervento->richiesta.'</small></p>
|
|
</td>
|
|
<td class="text-center">'.($pricing ? moneyFormat($imponibile, 2) : '-').'</td>
|
|
<td class="text-center">'.($pricing && empty($options['dir']) ? moneyFormat($sconto, 2) : '-').'</td>
|
|
<td class="text-center">'.($pricing ? moneyFormat($totale_imponibile, 2) : '-').'</td>
|
|
</tr>';
|
|
|
|
// Sessioni
|
|
$sessioni = $intervento->sessioni;
|
|
if (count($sessioni) > 0) {
|
|
echo '
|
|
<tr>
|
|
<td style="border-top: 0; border-bottom: 0;"></td>
|
|
<th style="background-color: #eee"><small>'.tr('Sessioni').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Data').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Inizio').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Fine').'</small></th>
|
|
</tr>';
|
|
|
|
foreach ($sessioni as $sessione) {
|
|
echo '
|
|
<tr>
|
|
<td style="border-top: 0; border-bottom: 0;"></td>
|
|
<td><small>'.$sessione->anagrafica->ragione_sociale.' <small>('.$sessione->tipo->descrizione.')</small></td>
|
|
<td class="text-center"><small>'.dateFormat($sessione->orario_inizio).'</small></td>
|
|
<td class="text-center"><small>'.timeFormat($sessione->orario_inizio).'</small></td>
|
|
<td class="text-center"><small>'.timeFormat($sessione->orario_fine).'</small></td>
|
|
</tr>';
|
|
}
|
|
}
|
|
|
|
// Righe
|
|
$righe = $intervento->getRighe();
|
|
if (!$righe->isEmpty()) {
|
|
echo '
|
|
<tr>
|
|
<td style="border-top: 0; border-bottom: 0;"></td>
|
|
<th style="background-color: #eee"><small>'.tr('Materiale utilizzato e spese aggiuntive').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Qta').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Prezzo unitario').'</small></th>
|
|
<th class="text-center" style="background-color: #eee"><small>'.tr('Imponibile').'</small></th>
|
|
</tr>';
|
|
|
|
foreach ($righe as $riga) {
|
|
$prezzo = empty($options['dir']) ? $riga->prezzo_unitario_vendita : $riga->prezzo_unitario_acquisto;
|
|
$totale = empty($options['dir']) ? $riga->totale_imponibile : $riga->spesa;
|
|
|
|
echo '
|
|
<tr>
|
|
<td style="border-top: 0; border-bottom: 0;"></td>
|
|
<td><small>'.$riga->descrizione.'</small></td>
|
|
<td class="text-center"><small>'.$riga->qta.' '.$riga->um.'</small></td>
|
|
<td class="text-center"><small>'.($pricing ? moneyFormat($prezzo) : '-').'</small></td>
|
|
<td class="text-center"><small>'.($pricing ? moneyFormat($totale) : '-').'</small></td>
|
|
</tr>';
|
|
}
|
|
}
|