openstamanager/templates/fatture/body.php

271 lines
8.8 KiB
PHP
Raw Permalink Normal View History

<?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/>.
*/
include_once __DIR__.'/../../core.php';
$v_iva = [];
$v_totale = [];
$prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
2019-07-12 12:40:13 +02:00
// Creazione righe fantasma
2024-01-15 15:30:45 +01:00
$autofill = new Util\Autofill(6, 40);
$rows_per_page = $rows_per_page ?: ($fattura_accompagnatoria ? 13 : 25);
$autofill->setRows($rows_per_page);
2019-07-12 12:40:13 +02:00
// Intestazione tabella per righe
echo "
2024-05-22 13:15:34 +02:00
<table class='table table-striped' id='contents'>
<thead>
<tr>
2024-05-22 13:15:34 +02:00
<th class='text-center border-bottom' style='width:5%'>".tr('#', [], ['upper' => true])."</th>
<th class='text-center border-bottom' style='width:50%'>".tr('Descrizione', [], ['upper' => true])."</th>
<th class='text-center border-bottom' style='width:14%'>".tr('Q.tà', [], ['upper' => true])."</th>
<th class='text-center border-bottom' style='width:16%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
<th class='text-center border-bottom' style='width:20%'>".tr('Importo', [], ['upper' => true])."</th>
<th class='text-center border-bottom' style='width:10%'>".tr('IVA', [], ['upper' => true]).' (%)</th>
</tr>
</thead>
<tbody>';
2019-07-12 12:40:13 +02:00
// Righe documento
if (setting('Raggruppa attività per tipologia in fattura')) {
$righe = get_righe_composte($documento);
} else {
$righe = $documento->getRighe();
}
2024-05-03 16:53:48 +02:00
if (count($righe) > 25) {
if (!empty($options['last-page-footer'])) {
$rows_per_page += 5;
$autofill->setRows($rows_per_page);
}
}
$num = 0;
if (!setting('Visualizza riferimento su ogni riga in stampa')) {
$riferimenti = [];
$id_rif = [];
foreach ($righe as $riga) {
$riferimento = ($riga->getOriginalComponent() ? $riga->getOriginalComponent()->getDocument()->getReference() : null);
if (!empty($riferimento)) {
if (!array_key_exists($riferimento, $riferimenti)) {
$riferimenti[$riferimento] = [];
}
if (!in_array($riga->id, $riferimenti[$riferimento])) {
$id_rif[] = $riga->id;
$riferimenti[$riferimento][] = $riga->id;
}
}
}
}
foreach ($righe as $riga) {
++$num;
2019-07-11 18:10:38 +02:00
$r = $riga->toArray();
2019-07-12 12:40:13 +02:00
$autofill->count($r['descrizione']);
2018-12-12 18:42:41 +01:00
2019-07-12 12:40:13 +02:00
$v_iva[$r['desc_iva']] = sum($v_iva[$r['desc_iva']], $riga->iva);
$v_totale[$r['desc_iva']] = sum($v_totale[$r['desc_iva']], $riga->totale_imponibile);
echo '
<tr>
<td class="text-center" style="vertical-align: middle">';
$text = '';
foreach ($riferimenti as $key => $riferimento) {
if (in_array($riga->id, $riferimento)) {
if ($riga->id === $riferimento[0]) {
$riga_ordine = $database->fetchOne('SELECT numero_cliente, data_cliente FROM or_ordini WHERE id = '.prepare($riga->idordine));
2024-04-23 09:56:36 +02:00
if (!setting('Visualizza numero ordine cliente')) {
2024-04-12 13:22:14 +02:00
if (!empty($riga_ordine['numero_cliente']) && !empty($riga_ordine['data_cliente'])) {
$text = $text.'<b>Ordine n. '.$riga_ordine['numero_cliente'].' del '.Translator::dateToLocale($riga_ordine['data_cliente']).'</b><br>';
}
}
2024-05-23 11:36:25 +02:00
$r['descrizione'] = str_replace('Rif. '.strtolower((string) $key), '', $r['descrizione']);
preg_match("/Rif\.(.*)/s", $r['descrizione'], $rif2);
$r['descrizione'] = str_replace('Rif.'.strtolower($rif2[1]), '', $r['descrizione']);
if (!empty($rif2)) {
$text .= '<b>'.$rif2[0].'</b>';
}
$text .= '<b>'.$key.'</b></td><td></td><td></td><td></td><td></td></tr><tr><td class="text-center" nowrap="nowrap" style="vertical-align: middle">';
echo '
</td>
<td>
'.nl2br($text);
}
}
$r['descrizione'] = preg_replace("/Rif\.(.*)/s", ' ', $r['descrizione']);
$autofill->count($r['descrizione']);
}
2024-05-23 11:36:25 +02:00
$source_type = $riga::class;
if (setting('Visualizza riferimento su ogni riga in stampa')) {
echo $num.'
</td>
2024-05-23 11:36:25 +02:00
<td>'.nl2br((string) $r['descrizione']).'<br>';
} else {
echo $num.'
</td>
2024-05-23 11:36:25 +02:00
<td>'.nl2br((string) $r['descrizione']);
}
2019-07-12 12:40:13 +02:00
if ($riga->isArticolo()) {
echo '<small>'.$riga->codice.'</small>';
2024-03-22 15:52:24 +01:00
}
if ($riga->isArticolo()) {
2019-07-12 12:40:13 +02:00
// Seriali
$seriali = $riga->serials;
if (!empty($seriali)) {
2019-07-12 13:04:28 +02:00
$text = tr('SN').': '.implode(', ', $seriali);
2019-07-12 12:40:13 +02:00
echo '
<small>'.$text.'</small>';
2018-02-15 14:25:27 +01:00
2019-07-12 12:40:13 +02:00
$autofill->count($text, true);
2018-02-15 14:25:27 +01:00
}
}
// Informazioni su CIG, CUP, ...
if ($riga->hasOriginalComponent()) {
$documento_originale = $riga->getOriginalComponent()->getDocument();
$num_item = $documento_originale['num_item'];
$codice_commessa = $documento_originale['codice_commessa'];
$codice_cig = $documento_originale['codice_cig'];
$codice_cup = $documento_originale['codice_cup'];
$id_documento_fe = $documento_originale['id_documento_fe'];
$extra_riga = replace('_ID_DOCUMENTO__NUMERO_RIGA__CODICE_COMMESSA__CODICE_CIG__CODICE_CUP_', [
'_ID_DOCUMENTO_' => $id_documento_fe ? 'DOC: '.$id_documento_fe : null,
'_NUMERO_RIGA_' => $num_item ? ', NRI: '.$num_item : null,
'_CODICE_COMMESSA_' => $codice_commessa ? ', COM: '.$codice_commessa : null,
'_CODICE_CIG_' => $codice_cig ? ', CIG: '.$codice_cig : null,
'_CODICE_CUP_' => $codice_cup ? ', CUP: '.$codice_cup : null,
]);
echo '
<br><small>'.$extra_riga.'</small>';
}
echo '
</td>';
2019-07-12 12:40:13 +02:00
if (!$riga->isDescrizione()) {
2018-02-15 17:41:09 +01:00
echo '
2019-07-12 12:40:13 +02:00
<td class="text-center">
'.Translator::numberToLocale(abs($riga->qta), $d_qta).' '.$r['um'].'
</td>';
2019-07-12 12:40:13 +02:00
// Prezzo unitario
2018-08-11 15:49:46 +02:00
echo '
2019-07-12 12:40:13 +02:00
<td class="text-right">
'.moneyFormat($prezzi_ivati ? $riga->prezzo_unitario_ivato : $riga->prezzo_unitario, $d_importi);
2019-07-11 18:10:38 +02:00
if ($riga->sconto > 0) {
2020-02-15 14:11:44 +01:00
$text = discountInfo($riga, false);
2019-07-12 12:40:13 +02:00
echo '
<br><small class="text-muted">'.$text.'</small>';
$autofill->count($text, true);
}
2019-07-12 12:40:13 +02:00
echo '
</td>';
2019-07-12 12:40:13 +02:00
// Imponibile
2018-08-11 15:49:46 +02:00
echo '
2019-07-12 12:40:13 +02:00
<td class="text-right">
'.moneyFormat($prezzi_ivati ? ($riga->totale_imponibile + $riga->iva) : $riga->totale_imponibile, $d_importi).'
</td>';
2019-07-12 12:40:13 +02:00
// Iva
2018-02-15 17:41:09 +01:00
echo '
2019-07-12 12:40:13 +02:00
<td class="text-center">
'.Translator::numberToLocale($riga->aliquota->percentuale, 0).'
2019-07-12 12:40:13 +02:00
</td>';
} else {
echo '
<td></td>
<td></td>
<td></td>
<td></td>';
}
2019-07-12 12:40:13 +02:00
echo '
</tr>';
2019-07-12 12:40:13 +02:00
$autofill->next();
}
echo '
|autofill|
</tbody>
</table>';
// Aggiungo diciture particolari per l'anagrafica cliente
2024-02-06 17:36:05 +01:00
$dicitura = $dbo->fetchOne('SELECT `diciturafissafattura` AS dicitura FROM `an_anagrafiche` WHERE `idanagrafica` = '.prepare($id_cliente));
2019-07-12 12:40:13 +02:00
if (!empty($dicitura['dicitura'])) {
echo '
<p class="text-left">
2024-05-23 11:36:25 +02:00
<span>'.nl2br((string) $dicitura['dicitura']).'</span>
</p>';
}
// Aggiungo diciture per condizioni iva particolari
foreach ($v_iva as $key => $value) {
2024-04-18 17:44:05 +02:00
$dicitura = $dbo->fetchOne('SELECT `dicitura` FROM `co_iva` LEFT JOIN `co_iva_lang` ON (`co_iva`.`id` = `co_iva_lang`.`id_record` AND `co_iva_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).') WHERE `title` = '.prepare($key));
2019-07-12 12:40:13 +02:00
if (!empty($dicitura['dicitura'])) {
echo '
<p class="text-center">
2024-05-23 11:36:25 +02:00
<b>'.nl2br((string) $dicitura['dicitura']).'</b>
</p>';
}
}
2018-03-22 19:10:29 +01:00
echo '
<table class="table">';
echo '
<tr>
2018-03-22 19:10:29 +01:00
<td width="100%">';
2024-01-15 15:30:45 +01:00
if (!empty($record['note'])) {
echo '
2024-05-22 13:15:34 +02:00
<p class="small-bold text-muted">'.tr('Note', [], ['upper' => true]).':</p>
2024-05-23 11:36:25 +02:00
<p>'.nl2br((string) $record['note']).'</p>';
2024-01-15 15:30:45 +01:00
}
2019-07-12 12:40:13 +02:00
2024-01-15 15:30:45 +01:00
echo '
2018-03-22 19:10:29 +01:00
</td>';
2018-03-22 19:10:29 +01:00
echo '
</tr>';
echo '
</table>';