2017-09-12 16:17:11 +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 16:17:11 +02:00
2020-07-07 18:07:56 +02:00
use Carbon\CarbonInterval ;
2020-11-04 18:31:43 +01:00
use Modules\Anagrafiche\Anagrafica ;
2020-07-07 18:07:56 +02:00
2017-09-12 16:17:11 +02:00
include_once __DIR__ . '/../../core.php' ;
2020-06-16 13:03:54 +02:00
$has_images = null ;
// Righe documento
$righe = $documento -> getRighe ();
foreach ( $righe as $riga ) {
2020-06-30 13:26:15 +02:00
if ( $riga -> articolo -> immagine ) {
2020-06-16 13:03:54 +02:00
$has_images = 1 ;
2020-06-30 13:26:15 +02:00
}
2020-06-16 13:03:54 +02:00
}
2020-11-04 18:31:43 +01:00
$anagrafica = Anagrafica :: find ( $documento [ 'idanagrafica' ]);
2020-11-26 14:55:34 +01:00
$pagamento = $dbo -> fetchOne ( 'SELECT * FROM co_pagamenti WHERE id = ' . prepare ( $documento [ 'idpagamento' ]));
2020-11-04 18:31:43 +01:00
//Verifico se c'è una banca predefinita per il mio cliente
2020-11-06 10:46:42 +01:00
if ( ! empty ( $anagrafica -> idbanca_vendite )) {
2020-11-26 14:55:34 +01:00
$banca = $dbo -> fetchOne ( 'SELECT co_banche.nome, co_banche.iban, co_banche.bic FROM co_banche INNER JOIN co_pianodeiconti3 ON co_banche.id_pianodeiconti3 = co_pianodeiconti3.id WHERE co_pianodeiconti3.id = ' . prepare ( $pagamento [ 'idconto_vendite' ]) . ' AND co_banche.id =' . prepare ( $anagrafica -> idbanca_vendite ));
2020-11-06 10:46:42 +01:00
} elseif ( ! empty ( $pagamento [ 'idconto_vendite' ])) {
2020-11-04 18:31:43 +01:00
//Altrimenti prendo quella associata la metodo di pagamento selezionato
2020-11-26 14:55:34 +01:00
$banca = $dbo -> fetchOne ( 'SELECT co_banche.nome, co_banche.iban, co_banche.bic FROM co_banche INNER JOIN co_pianodeiconti3 ON co_banche.id_pianodeiconti3 = co_pianodeiconti3.id WHERE co_pianodeiconti3.id = ' . prepare ( $pagamento [ 'idconto_vendite' ]) . ' AND co_banche.deleted_at IS NULL' );
2020-06-16 13:03:54 +02:00
}
2019-07-12 12:40:13 +02:00
// Creazione righe fantasma
2020-06-16 13:03:54 +02:00
$autofill = new \Util\Autofill ( $options [ 'pricing' ] ? (( $has_images ) ? 7 : 6 ) : 3 );
2019-07-12 12:40:13 +02:00
$autofill -> setRows ( 20 , 10 );
2017-09-12 16:17:11 +02:00
echo '
< div class = " row " >
< div class = " col-xs-6 " >
< div class = " text-center " style = " height:5mm; " >
2017-09-21 11:02:31 +02:00
< b > '.tr(' Preventivo num . _NUM_ del _DATE_ ' , [
2020-04-01 17:17:26 +02:00
'_NUM_' => $documento [ 'numero' ] . ( count ( $documento -> revisioni ) > 1 ? ' ' . tr ( 'rev.' ) . ' ' . $documento -> numero_revision : '' ),
2019-07-12 12:40:13 +02:00
'_DATE_' => Translator :: dateToLocale ( $documento [ 'data_bozza' ]),
2017-09-12 16:17:11 +02:00
], [ 'upper' => true ]) . ' </ b >
</ div >
2020-06-16 13:03:54 +02:00
2020-07-17 17:34:06 +02:00
< table class = " table " >
< tr >
< td colspan = " 2 " style = " height:10mm;padding-top:2mm; " >
< p class = " small-bold " > '.tr(' Pagamento ', [], [' upper ' => true]).' </ p >
< p > '.$pagamento[' descrizione '].' </ p >
</ td >
< td colspan = " 2 " style = " height:10mm;padding-top:2mm; " >
< p class = " small-bold " > '.tr(' Banca di appoggio ', [], [' upper ' => true]).' </ p >
< p >< small > '.$banca[' nome '].' </ small ></ p >
</ td >
</ tr >
< tr >
< td colspan = " 2 " style = " height:10mm;padding-top:2mm;white-space: nowrap; " >
< p class = " small-bold " > '.tr(' IBAN ').' </ p >
< p > '.$banca[' iban '].' </ p >
</ td >
< td colspan = " 2 " style = " height:10mm;padding-top:2mm; " >
< p class = " small-bold " > '.tr(' BIC ').' </ p >
< p > '.$banca[' bic '].' </ p >
</ td >
</ tr >
2020-06-16 13:03:54 +02:00
</ table >
2017-09-12 16:17:11 +02:00
</ div >
2019-07-12 12:56:46 +02:00
< div class = " col-xs-6 " style = " margin-left: 10px " >
2017-09-12 16:17:11 +02:00
< table class = " table " style = " width:100%;margin-top:5mm; " >
< tr >
< td colspan = 2 class = " border-full " style = " height:16mm; " >
< p class = " small-bold " > '.tr(' Spett . le ', [], [' upper ' => true]).' </ p >
< p > $c_ragionesociale $ </ p >
2018-08-08 19:00:19 +02:00
< p > $c_indirizzo $ </ p >
< p > $c_citta_full $ </ p >
2017-09-12 16:17:11 +02:00
</ td >
</ tr >
< tr >
< td class = " border-bottom border-left " >
< p class = " small-bold " > '.tr(' Partita IVA ', [], [' upper ' => true]).' </ p >
</ td >
< td class = " border-right border-bottom text-right " >
< small > $c_piva $ </ small >
</ td >
</ tr >
< tr >
< td class = " border-bottom border-left " >
< p class = " small-bold " > '.tr(' Codice fiscale ', [], [' upper ' => true]).' </ p >
</ td >
< td class = " border-right border-bottom text-right " >
< small > $c_codicefiscale $ </ small >
</ td >
</ tr >
</ table >
</ div >
</ div > ' ;
// Descrizione
2019-07-12 12:40:13 +02:00
if ( ! empty ( $documento [ 'descrizione' ])) {
2017-09-12 16:17:11 +02:00
echo '
2019-07-12 12:40:13 +02:00
< p > '.nl2br($documento[' descrizione ']).' </ p >
2017-09-12 16:17:11 +02:00
< br > ' ;
}
// Intestazione tabella per righe
echo "
2017-09-12 16:45:18 +02:00
< table class = 'table table-striped table-bordered' id = 'contents' >
2017-09-12 16:17:11 +02:00
< thead >
< tr >
2020-06-16 13:03:54 +02:00
< th class = 'text-center' > #</th>";
2020-06-30 13:26:15 +02:00
if ( $has_images ) {
echo "
2020-06-16 13:03:54 +02:00
< th class = 'text-center' width = '95' > Foto </ th > " ;
}
echo "
2017-09-12 16:17:11 +02:00
< th class = 'text-center' style = 'width:50%' > " .tr('Descrizione', [], ['upper' => true]). " </ th >
2019-07-12 12:40:13 +02:00
< th class = 'text-center' style = 'width:10%' > " .tr('Q.tà', [], ['upper' => true]).'</th>';
if ( $options [ 'pricing' ]) {
echo "
2017-09-12 16:45:18 +02:00
< th class = 'text-center' style = 'width:15%' > " .tr('Prezzo unitario', [], ['upper' => true]). " </ th >
2019-07-12 12:40:13 +02:00
< th class = 'text-center' style = 'width:15%' > " .tr('Importo', [], ['upper' => true]). " </ th >
< th class = 'text-center' style = 'width:10%' > " .tr('IVA', [], ['upper' => true]).' (%)</th>';
}
echo '
2017-09-12 16:17:11 +02:00
</ tr >
</ thead >
< tbody > ' ;
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 16:17:11 +02:00
echo '
2020-09-11 09:04:06 +02:00
< tr >
< td class = " text-center " style = " vertical-align: middle " width = " 25 " >
'.$num.'
</ td > ' ;
2020-06-16 13:03:54 +02:00
if ( $has_images ) {
2020-06-18 09:39:33 +02:00
echo '<td class=\"text-center\" style=\"vertical-align: middle\" >' ;
2020-06-30 13:26:15 +02:00
if ( ! empty ( $riga -> articolo -> immagine )) {
echo '<img src="files/articoli/' . $riga -> articolo -> immagine . '" width="78">' ;
}
2020-06-16 13:03:54 +02:00
echo '</td>' ;
2020-06-09 16:59:26 +02:00
}
2020-05-18 17:18:56 +02:00
echo '
2020-01-22 14:55:22 +01:00
< td style = " vertical-align: middle " >
2017-09-12 16:17:11 +02:00
'.nl2br($r[' descrizione ' ]);
2019-07-12 12:40:13 +02:00
if ( $riga -> isArticolo ()) {
// Codice articolo
$text = tr ( 'COD. _COD_' , [
2020-07-06 13:32:43 +02:00
'_COD_' => $riga -> codice ,
2019-07-12 12:40:13 +02:00
]);
2017-09-12 16:17:11 +02:00
echo '
2019-07-12 12:40:13 +02:00
< br >< small > '.$text.' </ small > ' ;
2017-09-12 16:17:11 +02:00
2019-07-12 12:40:13 +02:00
$autofill -> count ( $text , true );
2017-09-12 16:17:11 +02:00
}
echo '
</ td > ' ;
2019-07-12 12:40:13 +02:00
if ( ! $riga -> isDescrizione ()) {
2018-02-17 09:02:19 +01:00
echo '
2020-01-22 14:55:22 +01:00
< td class = " text-center " style = " vertical-align: middle " >
2019-07-12 12:40:13 +02:00
'.Translator::numberToLocale(abs($riga->qta), ' qta ').' '.$r[' um '].'
2017-09-12 16:17:11 +02:00
</ td > ' ;
2019-07-12 12:40:13 +02:00
if ( $options [ 'pricing' ]) {
// Prezzo unitario
2018-02-17 09:02:19 +01:00
echo '
2020-01-22 14:55:22 +01:00
< td class = " text-right " style = " vertical-align: middle " >
2020-02-14 17:43:39 +01:00
' . moneyFormat ( $riga -> prezzo_unitario );
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 16:17:11 +02:00
</ td > ' ;
2019-07-12 12:40:13 +02:00
// Imponibile
2018-02-17 09:02:19 +01:00
echo '
2020-01-22 14:55:22 +01:00
< td class = " text-right " style = " vertical-align: middle " >
2019-07-12 12:40:13 +02:00
'.moneyFormat($riga->totale_imponibile).'
</ td > ' ;
// Iva
echo '
2020-01-22 14:55:22 +01:00
< td class = " text-center " style = " vertical-align: middle " >
2019-07-12 12:40:13 +02:00
'.Translator::numberToLocale($riga->aliquota->percentuale, 0).'
2017-09-12 16:17:11 +02:00
</ td > ' ;
2019-07-12 12:40:13 +02:00
}
2017-09-12 17:46:19 +02:00
} else {
echo '
2019-07-12 12:40:13 +02:00
< td ></ td > ' ;
2017-09-12 16:17:11 +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 16:17:11 +02:00
</ tr > ' ;
2019-07-12 12:40:13 +02:00
$autofill -> next ();
2017-09-12 16:17:11 +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 ;
$show_sconto = $sconto > 0 ;
2017-09-12 16:17:11 +02:00
// TOTALE COSTI FINALI
2020-02-14 12:10:42 +01:00
if (( $options [ 'pricing' ] && ! isset ( $options [ 'hide_total' ])) || $options [ 'show_only_total' ]) {
2017-09-12 16:17:11 +02:00
// Totale imponibile
echo '
< tr >
2020-05-18 17:18:56 +02:00
< td colspan = " '.( $options['show_only_total'] ? 2 : 4).' " class = " text-right border-top " >
2017-09-12 16:17:11 +02:00
< b > '.tr(' Imponibile ', [], [' upper ' => true]).' :</ b >
</ td >
2020-09-09 15:48:46 +02:00
< th colspan = " '.( $options['show_only_total'] ? (( $has_images ) ? 2 : 1) : (( $has_images ) ? 3 : 2)).' " class = " text-right " >
2019-07-12 12:40:13 +02:00
< b > '.moneyFormat($show_sconto ? $imponibile : $totale_imponibile, 2).' </ b >
2017-09-12 16:17:11 +02:00
</ th >
</ tr > ' ;
// Eventuale sconto incondizionato
2019-07-12 12:40:13 +02:00
if ( $show_sconto ) {
2017-09-12 16:17:11 +02:00
echo '
< tr >
2020-05-18 17:18:56 +02:00
< td colspan = " '.( $options['show_only_total'] ? 2 : 4).' " class = " text-right border-top " >
2017-09-12 16:17:11 +02:00
< b > '.tr(' Sconto ', [], [' upper ' => true]).' :</ b >
</ td >
2020-09-09 15:48:46 +02:00
< th colspan = " '.( $options['show_only_total'] ? (( $has_images ) ? 2 : 1) : (( $has_images ) ? 3 : 2)).' " class = " text-right " >
2019-07-12 12:40:13 +02:00
< b > '.moneyFormat($sconto, 2).' </ b >
2017-09-12 16:17:11 +02:00
</ th >
</ tr > ' ;
2019-07-11 17:44:42 +02:00
// Totale imponibile
2017-09-12 16:17:11 +02:00
echo '
< tr >
2020-05-18 17:18:56 +02:00
< td colspan = " '.( $options['show_only_total'] ? 2 : 4).' " class = " text-right border-top " >
2019-07-11 17:44:42 +02:00
< b > '.tr(' Totale imponibile ', [], [' upper ' => true]).' :</ b >
2017-09-12 16:17:11 +02:00
</ td >
2020-09-09 15:48:46 +02:00
< th colspan = " '.( $options['show_only_total'] ? (( $has_images ) ? 2 : 1) : (( $has_images ) ? 3 : 2)).' " class = " text-right " >
2019-07-12 12:40:13 +02:00
< b > '.moneyFormat($totale_imponibile, 2).' </ b >
2017-09-12 16:17:11 +02:00
</ th >
</ tr > ' ;
}
// IVA
echo '
< tr >
2020-05-18 17:18:56 +02:00
< td colspan = " '.( $options['show_only_total'] ? 2 : 4).' " class = " text-right border-top " >
2017-09-12 16:17:11 +02:00
< b > '.tr(' Totale IVA ', [], [' upper ' => true]).' :</ b >
</ td >
2020-09-09 15:48:46 +02:00
< th colspan = " '.( $options['show_only_total'] ? (( $has_images ) ? 2 : 1) : (( $has_images ) ? 3 : 2)).' " class = " text-right " >
2019-07-12 12:40:13 +02:00
< b > '.moneyFormat($totale_iva, 2).' </ b >
2017-09-12 16:17:11 +02:00
</ th >
</ tr > ' ;
2017-09-12 17:46:19 +02:00
// TOTALE
2017-09-12 16:17:11 +02:00
echo '
< tr >
2020-05-18 17:18:56 +02:00
< td colspan = " '.( $options['show_only_total'] ? 2 : 4).' " class = " text-right border-top " >
2019-07-12 12:40:13 +02:00
< b > '.tr(' Totale documento ', [], [' upper ' => true]).' :</ b >
2017-09-12 16:17:11 +02:00
</ td >
2020-09-09 15:48:46 +02:00
< th colspan = " '.( $options['show_only_total'] ? (( $has_images ) ? 2 : 1) : (( $has_images ) ? 3 : 2)).' " class = " text-right " >
2019-05-02 10:03:57 +02:00
< b > '.moneyFormat($totale, 2).' </ b >
2017-09-12 16:17:11 +02:00
</ th >
</ tr > ' ;
}
echo '
</ table > ' ;
// CONDIZIONI GENERALI DI FORNITURA
2020-06-16 13:03:54 +02:00
2017-09-12 16:17:11 +02:00
echo '
< table class = " table table-bordered " >
< tr >
2017-09-13 11:15:31 +02:00
< th colspan = " 2 " class = " text-center " style = " font-size:13pt; " >
2017-09-12 16:17:11 +02:00
'.tr(' Condizioni generali di fornitura ', [], [' upper ' => true]).'
</ th >
</ tr >
< tr >
< th style = " width:25% " >
'.tr(' Pagamento ', [], [' upper ' => true]).'
</ th >
< td >
2019-07-12 12:40:13 +02:00
'.$pagamento[' descrizione '].'
2017-09-12 16:17:11 +02:00
</ td >
</ tr >
< tr >
< th >
'.tr(' Validità offerta ', [], [' upper ' => true]).'
</ th >
2017-09-13 13:05:35 +02:00
< td > ' ;
2020-07-07 18:07:56 +02:00
if ( ! empty ( $documento -> validita ) && ! empty ( $documento -> tipo_validita )) {
$intervallo = CarbonInterval :: make ( $documento -> validita . ' ' . $documento -> tipo_validita );
echo $intervallo -> forHumans ();
} elseif ( ! empty ( $documento -> validita )) {
echo tr ( '_TOT_ giorni' , [
'_TOT_' => $documento -> validita ,
2017-09-13 13:05:35 +02:00
]);
} else {
echo '-' ;
}
echo '
2017-09-12 16:17:11 +02:00
</ td >
</ tr >
< tr >
< th >
'.tr(' Tempi consegna ', [], [' upper ' => true]).'
</ th >
< td >
2019-07-12 12:40:13 +02:00
'.$documento[' tempi_consegna '].'
2017-09-12 16:17:11 +02:00
</ td >
</ tr >
< tr >
< th >
'.tr(' Esclusioni ', [], [' upper ' => true]).'
</ th >
< td >
2019-07-12 12:40:13 +02:00
'.nl2br($documento[' esclusioni ']).'
2017-09-12 16:17:11 +02:00
</ td >
</ tr >
2021-01-29 17:12:56 +01:00
< tr >
< th >
'.tr(' Garanzia ', [], [' upper ' => true]).'
</ th >
< td >
'.nl2br($documento[' garanzia ']).'
</ td >
</ tr >
2017-09-12 16:17:11 +02:00
</ table > ' ;
// Conclusione
echo '
< p class = " text-center " > '.tr("In attesa di un Vostro Cortese riscontro, colgo l' occasione per porgere Cordiali Saluti " ).'</p>';
2021-01-27 15:15:44 +01:00
if ( ! empty ( $documento -> condizioni_fornitura )){
echo '<pagebreak>' . $documento -> condizioni_fornitura ;
}