openstamanager/templates/riepilogo_interventi/piece.php

85 lines
3.4 KiB
PHP
Raw Normal View History

2019-07-12 18:37:58 +02:00
<?php
include_once __DIR__.'/../../core.php';
use Modules\Interventi\Intervento;
$intervento = Intervento::find($record['id']);
2019-07-16 12:13:10 +02:00
$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;
2019-07-12 18:37:58 +02:00
$somma_imponibile[] = $imponibile;
$somma_sconto[] = $sconto;
$somma_totale_imponibile[] = $totale_imponibile;
2019-07-15 11:16:12 +02:00
$pricing = isset($pricing) ? $pricing : true;
2019-07-12 18:37:58 +02:00
// Informazioni intervento
echo '
<tr>
<td colspan="2">
<p>'.tr('Intervento _NUM_ del _DATE_', [
2019-07-15 11:16:12 +02:00
'_NUM_' => $intervento->codice,
'_DATE_' => dateFormat($intervento->inizio),
2019-07-12 18:37:58 +02:00
]).'</p>
2019-07-15 11:16:12 +02:00
<p><small><b>'.tr('Cliente').':</b> '.$intervento->anagrafica->ragione_sociale.'</small></p>
<p><small><b>'.tr('Stato').':</b> '.$intervento->stato->descrizione.'</small></p>
2019-07-12 18:37:58 +02:00
</td>
2019-07-15 11:16:12 +02:00
<td class="text-center">'.($pricing ? moneyFormat($imponibile, 2) : '-').'</td>
2019-07-16 12:13:10 +02:00
<td class="text-center">'.($pricing && empty($options['dir']) ? moneyFormat($sconto, 2) : '-').'</td>
2019-07-15 11:16:12 +02:00
<td class="text-center">'.($pricing ? moneyFormat($totale_imponibile, 2) : '-').'</td>
2019-07-12 18:37:58 +02:00
</tr>';
// Sessioni
$sessioni = $intervento->sessioni;
if (!empty($sessioni)) {
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>
2019-07-15 11:16:12 +02:00
<td><small>'.$sessione->anagrafica->ragione_sociale.' <small>('.$sessione->tipo->descrizione.')</small></td>
2019-07-12 18:37:58 +02:00
<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) {
2019-07-16 12:13:10 +02:00
$prezzo = empty($options['dir']) ? $riga->prezzo_unitario_vendita : $riga->prezzo_unitario_acquisto;
$totale = empty($options['dir']) ? $riga->totale_imponibile : $riga->spesa;
2019-07-12 18:37:58 +02:00
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>
2019-07-16 12:13:10 +02:00
<td class="text-center"><small>'.($pricing ? moneyFormat($prezzo) : '-').'</small></td>
<td class="text-center"><small>'.($pricing ? moneyFormat($totale) : '-').'</small></td>
2019-07-12 18:37:58 +02:00
</tr>';
}
}