2017-09-12 17:46:19 +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-09-12 17:46:19 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
// Righe documento
|
|
|
|
$righe = $documento->getRighe();
|
|
|
|
|
2021-04-08 12:18:38 +02:00
|
|
|
$columns = 7;
|
2019-07-12 12:40:13 +02:00
|
|
|
|
2020-12-15 17:59:43 +01:00
|
|
|
//Immagine solo per documenti di vendita
|
2021-02-18 18:48:44 +01:00
|
|
|
if ($documento->direzione == 'entrata') {
|
2020-12-15 17:59:43 +01:00
|
|
|
$has_image = $righe->search(function ($item) {
|
|
|
|
return !empty($item->articolo->immagine);
|
|
|
|
}) !== false;
|
|
|
|
|
|
|
|
if ($has_image) {
|
2021-02-18 18:48:44 +01:00
|
|
|
++$columns;
|
2020-12-15 17:59:43 +01:00
|
|
|
$char_number = $options['pricing'] ? 26 : 63;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 18:48:44 +01:00
|
|
|
if ($documento->direzione == 'uscita') {
|
2021-07-07 15:01:51 +02:00
|
|
|
$columns += 2;
|
2019-07-12 12:40:13 +02:00
|
|
|
$char_number = $options['pricing'] ? 26 : 63;
|
|
|
|
} else {
|
2020-12-31 16:13:28 +01:00
|
|
|
$columns = 6;
|
2019-07-12 12:40:13 +02:00
|
|
|
$char_number = $options['pricing'] ? 45 : 82;
|
2019-01-10 17:27:19 +01:00
|
|
|
}
|
2019-07-12 12:40:13 +02:00
|
|
|
$columns = $options['pricing'] ? $columns : $columns - 3;
|
2017-09-12 17:46:19 +02:00
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
// Creazione righe fantasma
|
|
|
|
$autofill = new \Util\Autofill($columns, $char_number);
|
|
|
|
$autofill->setRows(30);
|
2017-09-12 17:46:19 +02:00
|
|
|
|
|
|
|
// Intestazione tabella per righe
|
|
|
|
echo "
|
|
|
|
<table class='table table-striped table-bordered' id='contents'>
|
|
|
|
<thead>
|
2020-09-02 18:42:00 +02:00
|
|
|
<tr>
|
2021-07-07 15:01:51 +02:00
|
|
|
<th class='text-center' style='width:4%'>".tr('#', [], ['upper' => true]).'</th>';
|
2020-12-15 17:59:43 +01:00
|
|
|
|
2021-02-18 18:48:44 +01:00
|
|
|
if ($documento->direzione == 'uscita') {
|
2020-12-15 17:59:43 +01:00
|
|
|
echo "
|
2021-07-07 15:01:51 +02:00
|
|
|
<th class='text-center' style='width:11%'>".tr('Codice', [], ['upper' => true])."</th>
|
2021-07-15 10:58:36 +02:00
|
|
|
<th class='text-center' style='width:11%'>".tr('Codice fornitore', [], ['upper' => true]).'</th>';
|
2020-12-15 17:59:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-10 18:11:09 +01:00
|
|
|
if ($has_image) {
|
2019-07-12 12:40:13 +02:00
|
|
|
echo "
|
|
|
|
<th class='text-center' style='width:20%'>".tr('Immagine', [], ['upper' => true]).'</th>';
|
2019-01-10 17:27:19 +01:00
|
|
|
}
|
2019-07-12 12:40:13 +02:00
|
|
|
|
|
|
|
echo "
|
|
|
|
<th class='text-center'>".tr('Descrizione', [], ['upper' => true])."</th>
|
2021-07-07 15:01:51 +02:00
|
|
|
<th class='text-center' style='width:9%'>".tr('Q.tà', [], ['upper' => true]).'</th>';
|
2019-07-12 12:40:13 +02:00
|
|
|
|
|
|
|
if ($options['pricing']) {
|
|
|
|
echo "
|
2021-07-07 15:01:51 +02:00
|
|
|
<th class='text-center' style='width:11%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
|
|
|
|
<th class='text-center' style='width:11%'>".tr('Imponibile', [], ['upper' => true])."</th>
|
|
|
|
<th class='text-center' style='width:5%'>".tr('IVA', [], ['upper' => true]).' (%)</th>';
|
2019-07-12 12:40:13 +02:00
|
|
|
}
|
|
|
|
|
2021-04-08 12:18:38 +02:00
|
|
|
echo "
|
2021-04-12 15:51:27 +02:00
|
|
|
<th class='text-center' style='width:10%'>".tr('Data evasione', [], ['upper' => true]).'</th>
|
2017-09-12 17:46:19 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
2021-04-12 15:51:27 +02:00
|
|
|
<tbody>';
|
2017-09-12 17:46:19 +02:00
|
|
|
|
2020-09-11 09:04:06 +02:00
|
|
|
$num = 0;
|
|
|
|
foreach ($righe as $riga) {
|
|
|
|
++$num;
|
2019-07-12 12:40:13 +02:00
|
|
|
$r = $riga->toArray();
|
|
|
|
|
|
|
|
$autofill->count($r['descrizione']);
|
2017-09-12 17:46:19 +02:00
|
|
|
|
|
|
|
echo '
|
2020-09-11 09:04:06 +02:00
|
|
|
<tr>
|
|
|
|
<td class="text-center" style="vertical-align: middle">
|
|
|
|
'.$num.'
|
|
|
|
</td>';
|
2020-09-02 18:42:00 +02:00
|
|
|
|
2019-01-10 18:11:09 +01:00
|
|
|
if ($has_image) {
|
2020-11-27 15:24:55 +01:00
|
|
|
if ($riga->isArticolo() && !empty($riga->articolo->image)) {
|
2019-07-12 12:40:13 +02:00
|
|
|
echo '
|
|
|
|
<td align="center">
|
2020-07-06 17:58:48 +02:00
|
|
|
<img src="'.$riga->articolo->image.'" style="max-height: 80px; max-width:120px">
|
2019-07-12 12:40:13 +02:00
|
|
|
</td>';
|
|
|
|
|
|
|
|
$autofill->set(5);
|
|
|
|
} else {
|
|
|
|
echo '
|
|
|
|
<td></td>';
|
2019-01-10 18:11:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-07 15:01:51 +02:00
|
|
|
if ($documento->direzione == 'uscita') {
|
|
|
|
echo '
|
|
|
|
<td class="text-center" style="vertical-align: middle">
|
|
|
|
'.$riga->articolo->codice.'
|
|
|
|
</td>
|
|
|
|
<td class="text-center" style="vertical-align: middle">
|
|
|
|
'.($riga->articolo ? $riga->articolo->dettaglioFornitore($documento->idanagrafica)->codice_fornitore : '').'
|
|
|
|
</td>';
|
2021-07-15 10:58:36 +02:00
|
|
|
}
|
2021-07-07 15:01:51 +02:00
|
|
|
|
2019-01-10 18:11:09 +01:00
|
|
|
echo '
|
2019-07-12 12:40:13 +02:00
|
|
|
<td>
|
2017-09-12 17:46:19 +02:00
|
|
|
'.nl2br($r['descrizione']);
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
if ($riga->isArticolo()) {
|
2022-01-21 15:35:59 +01:00
|
|
|
if ($documento->direzione == 'entrata' && !$options['hide_codice']) {
|
2021-04-08 12:18:38 +02:00
|
|
|
// Codice articolo
|
|
|
|
$text = tr('COD. _COD_', [
|
|
|
|
'_COD_' => $riga->codice,
|
|
|
|
]);
|
|
|
|
echo '
|
|
|
|
<br><small>'.$text.'</small>';
|
2017-09-12 17:46:19 +02:00
|
|
|
|
2021-04-08 12:18:38 +02:00
|
|
|
$autofill->count($text, true);
|
|
|
|
}
|
2017-09-12 17:46:19 +02:00
|
|
|
|
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 '
|
|
|
|
<br><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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-12 17:46:19 +02:00
|
|
|
echo '
|
|
|
|
</td>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
if (!$riga->isDescrizione()) {
|
2020-10-02 18:27:07 +02:00
|
|
|
$qta = $riga->qta;
|
|
|
|
$um = $r['um'];
|
|
|
|
|
|
|
|
if ($riga->isArticolo() && $documento->direzione == 'uscita' && !empty($riga->articolo->um_secondaria)) {
|
|
|
|
$um = $riga->articolo->um_secondaria;
|
|
|
|
$qta *= $riga->articolo->fattore_um_secondaria;
|
|
|
|
}
|
|
|
|
|
2018-02-15 17:41:09 +01:00
|
|
|
echo '
|
2019-07-12 12:40:13 +02:00
|
|
|
<td class="text-center">
|
2020-10-02 18:27:07 +02:00
|
|
|
'.Translator::numberToLocale(abs($qta), 'qta').' '.$um.'
|
2017-09-12 17:46:19 +02:00
|
|
|
</td>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
if ($options['pricing']) {
|
|
|
|
// Prezzo unitario
|
2018-02-15 17:41:09 +01:00
|
|
|
echo '
|
2019-07-12 12:40:13 +02:00
|
|
|
<td class="text-right">
|
2021-07-07 15:01:51 +02:00
|
|
|
'.moneyFormat($riga->prezzo_unitario);
|
2018-01-18 19:03:06 +01:00
|
|
|
|
2019-07-12 12:40:13 +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);
|
2017-09-21 10:01:07 +02:00
|
|
|
}
|
2019-07-12 12:40:13 +02:00
|
|
|
|
|
|
|
echo '
|
2017-09-12 17:46:19 +02:00
|
|
|
</td>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
// Imponibile
|
2018-02-15 17:41:09 +01:00
|
|
|
echo '
|
2019-07-12 12:40:13 +02:00
|
|
|
<td class="text-right">
|
|
|
|
'.moneyFormat($riga->totale_imponibile).'
|
|
|
|
</td>';
|
2018-01-18 19:03:06 +01:00
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
// Iva
|
|
|
|
echo '
|
|
|
|
<td class="text-center">
|
|
|
|
'.Translator::numberToLocale($riga->aliquota->percentuale, 0).'
|
2017-09-12 17:46:19 +02:00
|
|
|
</td>';
|
2019-07-12 12:40:13 +02:00
|
|
|
}
|
2021-04-08 12:18:38 +02:00
|
|
|
|
|
|
|
echo '
|
|
|
|
<td class="text-center">
|
2021-07-07 15:01:51 +02:00
|
|
|
'.Translator::dateToLocale($riga->data_evasione).($riga->ora_evasione ? '<br>'.Translator::timeToLocale($riga->ora_evasione).'' : '').'
|
2021-04-08 12:18:38 +02:00
|
|
|
</td>';
|
2017-09-12 17:46:19 +02:00
|
|
|
} else {
|
|
|
|
echo '
|
2019-07-12 12:40:13 +02:00
|
|
|
<td></td>';
|
2017-09-12 17:46:19 +02:00
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
if ($options['pricing']) {
|
|
|
|
echo '
|
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
<td></td>';
|
|
|
|
}
|
2018-01-18 19:03:06 +01:00
|
|
|
}
|
2019-07-12 12:40:13 +02:00
|
|
|
|
2018-01-18 19:03:06 +01:00
|
|
|
echo '
|
2017-09-12 17:46:19 +02:00
|
|
|
</tr>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
$autofill->next();
|
2017-09-12 17:46:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
|
|
|
|autofill|
|
|
|
|
</tbody>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
// Calcoli
|
|
|
|
$imponibile = $documento->imponibile;
|
|
|
|
$sconto = $documento->sconto;
|
|
|
|
$totale_imponibile = $documento->totale_imponibile;
|
|
|
|
$totale_iva = $documento->iva;
|
|
|
|
$totale = $documento->totale;
|
2021-04-06 15:44:51 +02:00
|
|
|
$sconto_finale = $documento->getScontoFinale();
|
|
|
|
$netto_a_pagare = $documento->netto;
|
2019-07-12 12:40:13 +02:00
|
|
|
|
|
|
|
$show_sconto = $sconto > 0;
|
|
|
|
|
2021-04-08 12:18:38 +02:00
|
|
|
$colspan = 5;
|
2021-07-15 10:58:36 +02:00
|
|
|
($documento->direzione == 'uscita' ? $colspan += 2 : $colspan);
|
2020-12-15 17:59:43 +01:00
|
|
|
($has_image ? $colspan++ : $colspan);
|
|
|
|
|
2017-09-12 17:46:19 +02:00
|
|
|
// TOTALE COSTI FINALI
|
2017-09-21 15:51:39 +02:00
|
|
|
if ($options['pricing']) {
|
2017-09-12 17:46:19 +02:00
|
|
|
// Totale imponibile
|
|
|
|
echo '
|
|
|
|
<tr>
|
2020-12-31 16:13:28 +01:00
|
|
|
<td colspan="'.($has_image ? 5 : 4).'" class="text-right border-top">
|
2017-09-12 17:46:19 +02:00
|
|
|
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
|
|
|
|
</td>
|
|
|
|
|
2019-05-02 10:03:57 +02:00
|
|
|
<th colspan="2" class="text-right">
|
2019-07-12 12:40:13 +02:00
|
|
|
<b>'.moneyFormat($show_sconto ? $imponibile : $totale_imponibile, 2).'</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
|
|
|
|
// Eventuale sconto incondizionato
|
2019-07-12 12:40:13 +02:00
|
|
|
if ($show_sconto) {
|
2017-09-12 17:46:19 +02:00
|
|
|
echo '
|
|
|
|
<tr>
|
2020-12-31 16:13:28 +01:00
|
|
|
<td colspan="'.($has_image ? 5 : 4).'" class="text-right border-top">
|
2017-09-12 17:46:19 +02:00
|
|
|
<b>'.tr('Sconto', [], ['upper' => true]).':</b>
|
|
|
|
</td>
|
|
|
|
|
2019-05-02 10:03:57 +02:00
|
|
|
<th colspan="2" class="text-right">
|
2019-07-12 12:40:13 +02:00
|
|
|
<b>'.moneyFormat($sconto, 2).'</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
|
2019-07-11 17:44:42 +02:00
|
|
|
// Totale imponibile
|
2017-09-12 17:46:19 +02:00
|
|
|
echo '
|
|
|
|
<tr>
|
2020-12-31 16:13:28 +01:00
|
|
|
<td colspan="'.($has_image ? 5 : 4).'" class="text-right border-top">
|
2019-07-11 17:44:42 +02:00
|
|
|
<b>'.tr('Totale imponibile', [], ['upper' => true]).':</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</td>
|
|
|
|
|
2019-05-02 10:03:57 +02:00
|
|
|
<th colspan="2" class="text-right">
|
2019-07-12 12:40:13 +02:00
|
|
|
<b>'.moneyFormat($totale_imponibile, 2).'</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// IVA
|
|
|
|
echo '
|
|
|
|
<tr>
|
2020-12-31 16:13:28 +01:00
|
|
|
<td colspan="'.($has_image ? 5 : 4).'" class="text-right border-top">
|
2017-09-12 17:46:19 +02:00
|
|
|
<b>'.tr('Totale IVA', [], ['upper' => true]).':</b>
|
|
|
|
</td>
|
|
|
|
|
2019-05-02 10:03:57 +02:00
|
|
|
<th colspan="2" class="text-right">
|
2019-07-12 12:40:13 +02:00
|
|
|
<b>'.moneyFormat($totale_iva, 2).'</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
|
|
|
|
// TOTALE
|
|
|
|
echo '
|
|
|
|
<tr>
|
2020-12-31 16:13:28 +01:00
|
|
|
<td colspan="'.($has_image ? 5 : 4).'" class="text-right border-top">
|
2019-07-12 12:40:13 +02:00
|
|
|
<b>'.tr('Totale documento', [], ['upper' => true]).':</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</td>
|
2019-05-02 10:03:57 +02:00
|
|
|
<th colspan="2" class="text-right">
|
|
|
|
<b>'.moneyFormat($totale, 2).'</b>
|
2017-09-12 17:46:19 +02:00
|
|
|
</th>
|
|
|
|
</tr>';
|
2021-04-06 15:44:51 +02:00
|
|
|
|
2021-04-12 15:51:27 +02:00
|
|
|
if ($sconto_finale) {
|
2022-01-15 17:30:49 +01:00
|
|
|
// SCONTO IN FATTURA
|
2021-04-06 15:44:51 +02:00
|
|
|
echo '
|
|
|
|
<tr>
|
|
|
|
<td colspan="'.$colspan.'" class="text-right border-top">
|
2022-01-15 17:30:49 +01:00
|
|
|
<b>'.tr('Sconto in fattura', [], ['upper' => true]).':</b>
|
2021-04-06 15:44:51 +02:00
|
|
|
</td>
|
|
|
|
<th colspan="2" class="text-right">
|
|
|
|
<b>'.moneyFormat($sconto_finale, 2).'</b>
|
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
|
|
|
|
// NETTO A PAGARE
|
|
|
|
echo '
|
|
|
|
<tr>
|
|
|
|
<td colspan="'.$colspan.'" class="text-right border-top">
|
|
|
|
<b>'.tr('Netto a pagare', [], ['upper' => true]).':</b>
|
|
|
|
</td>
|
|
|
|
<th colspan="2" class="text-right">
|
|
|
|
<b>'.moneyFormat($netto_a_pagare, 2).'</b>
|
|
|
|
</th>
|
|
|
|
</tr>';
|
|
|
|
}
|
2017-09-12 17:46:19 +02:00
|
|
|
}
|
|
|
|
|
2018-02-15 17:41:09 +01:00
|
|
|
echo '
|
2017-09-12 17:46:19 +02:00
|
|
|
</table>';
|
|
|
|
|
2019-07-12 12:40:13 +02:00
|
|
|
if (!empty($documento['note'])) {
|
2017-09-12 17:46:19 +02:00
|
|
|
echo '
|
|
|
|
<br>
|
|
|
|
<p class="small-bold">'.tr('Note', [], ['upper' => true]).':</p>
|
2019-07-12 12:40:13 +02:00
|
|
|
<p>'.nl2br($documento['note']).'</p>';
|
2017-09-12 17:46:19 +02:00
|
|
|
}
|