. */ use Carbon\CarbonInterval; use Illuminate\Database\Eloquent\ModelNotFoundException; use Modules\Anagrafiche\Anagrafica; use Modules\Banche\Banca; use Modules\Pagamenti\Pagamento; include_once __DIR__.'/../../core.php'; $anagrafica = Anagrafica::find($documento['idanagrafica']); $anagrafica_azienda = Anagrafica::find(setting('Azienda predefinita')); $pagamento = Pagamento::find($documento['idpagamento']); // Banca dell'Azienda corrente impostata come predefinita per il Cliente $banca_azienda = Banca::where('id_anagrafica', '=', $anagrafica_azienda->id) ->where('id_pianodeiconti3', '=', $pagamento['idconto_vendite'] ?: 0); try { $banca = (clone $banca_azienda) ->findOrFail($anagrafica->idbanca_vendite); } catch (ModelNotFoundException $e) { // Ricerca prima banca dell'Azienda con Conto corrispondente $banca = (clone $banca_azienda) ->orderBy('predefined', 'DESC') ->first(); } // Ri.Ba: Banca predefinita *del Cliente* piuttosto che dell'Azienda if ($pagamento && $pagamento->isRiBa()) { $banca = Banca::where('id_anagrafica', $anagrafica->id) ->where('predefined', 1) ->first(); } // Righe documento $righe = $documento->getRighe(); $has_image = $righe->search(function ($item) { return !empty($item->articolo->immagine); }) !== false; $columns = 6; $columns = $options['pricing'] ? $columns : 3; if ($has_image) { ++$columns; } // Creazione righe fantasma $autofill = new \Util\Autofill($columns); $autofill->setRows(20, 10); echo '
'.tr('Preventivo num. _NUM_ del _DATE_', [ '_NUM_' => $documento['numero'].(count($documento->revisioni) > 1 ? ' '.tr('rev.').' '.$documento->numero_revision : ''), '_DATE_' => Translator::dateToLocale($documento['data_bozza']), ], ['upper' => true]).'

'.tr('Pagamento', [], ['upper' => true]).'

'.$pagamento['descrizione'].'

'.tr('Banca di appoggio', [], ['upper' => true]).'

'.$banca['nome'].'

'.tr('IBAN').'

'.$banca['iban'].'

'.tr('BIC').'

'.$banca['bic'].'

'; if (!empty($destinazione)) { echo ' '; } echo '

'.tr('Spett.le', [], ['upper' => true]).'

$c_ragionesociale$

$c_indirizzo$

$c_citta_full$

'.tr('Partita IVA', [], ['upper' => true]).'

$c_piva$

'.tr('Codice fiscale', [], ['upper' => true]).'

$c_codicefiscale$

'.tr('Destinazione diversa', [], ['upper' => true]).'

'.$destinazione.'
'; // Descrizione if (!empty($documento['descrizione'])) { echo '

'.nl2br($documento['descrizione']).'


'; } // Intestazione tabella per righe echo " "; if ($has_image) { echo " "; } echo " '; if ($options['pricing']) { echo " '; } echo ' '; $num = 0; foreach ($righe as $riga) { ++$num; $r = $riga->toArray(); $autofill->count($r['descrizione']); echo ' '; if ($has_image) { if ($riga->isArticolo() && !empty($riga->articolo->image)) { echo ' '; $autofill->set(5); } else { echo ' '; } } echo ' '; if (!$riga->isDescrizione()) { echo ' '; if ($options['pricing']) { // Prezzo unitario echo ' '; // Imponibile echo ' '; // Iva echo ' '; } } else { echo ' '; if ($options['pricing']) { echo ' '; } } echo ' '; $autofill->next(); } echo ' |autofill| '; // Calcoli $imponibile = $documento->imponibile; $sconto = $documento->sconto; $totale_imponibile = $documento->totale_imponibile; $totale_iva = $documento->iva; $totale = $documento->totale; $sconto_finale = $documento->getScontoFinale(); $netto_a_pagare = $documento->netto; $show_sconto = $sconto > 0; // TOTALE COSTI FINALI if (($options['pricing'] && !isset($options['hide_total'])) || $options['show_only_total']) { // Totale imponibile echo ' '; // Eventuale sconto incondizionato if ($show_sconto) { echo ' '; // Totale imponibile echo ' '; } // IVA echo ' '; // TOTALE echo ' '; if ($sconto_finale) { // SCONTO IN FATTURA echo ' '; // NETTO A PAGARE echo ' '; } } echo '
#Foto".tr('Descrizione', [], ['upper' => true])." ".tr('Q.tà', [], ['upper' => true]).'".tr('Prezzo unitario', [], ['upper' => true])." ".( $options['hide_total'] ? tr('Importo ivato', [], ['upper' => true ]) : tr( 'Importo', [], ['upper' => true]) )." ".tr('IVA', [], ['upper' => true]).' (%)
'.$num.' articolo->image.'" style="max-height: 60px; max-width:80px"> '.nl2br($r['descrizione']); if ($riga->isArticolo()) { // Codice articolo $text = tr('COD. _COD_', [ '_COD_' => $riga->codice, ]); echo '
'.$text.''; $autofill->count($text, true); } echo '
'.Translator::numberToLocale(abs($riga->qta), 'qta').' '.$r['um'].' '.moneyFormat($riga->prezzo_unitario); if ($riga->sconto > 0) { $text = discountInfo($riga, false); echo '
'.$text.''; $autofill->count($text, true); } echo '
'.( $options['hide_total'] ? moneyFormat($riga->totale) : moneyFormat($riga->totale_imponibile) ).' '.Translator::numberToLocale($riga->aliquota->percentuale, 2).'
'.tr('Imponibile', [], ['upper' => true]).': '.moneyFormat($show_sconto ? $imponibile : $totale_imponibile, 2).'
'.tr('Sconto', [], ['upper' => true]).': '.moneyFormat($sconto, 2).'
'.tr('Totale imponibile', [], ['upper' => true]).': '.moneyFormat($totale_imponibile, 2).'
'.tr('Totale IVA', [], ['upper' => true]).': '.moneyFormat($totale_iva, 2).'
'.tr('Totale documento', [], ['upper' => true]).': '.moneyFormat($totale, 2).'
'.tr('Sconto in fattura', [], ['upper' => true]).': '.moneyFormat($sconto_finale, 2).'
'.tr('Netto a pagare', [], ['upper' => true]).': '.moneyFormat($netto_a_pagare, 2).'
'; // CONDIZIONI GENERALI DI FORNITURA echo '
'.tr('Condizioni generali di fornitura', [], ['upper' => true]).'
'.tr('Pagamento', [], ['upper' => true]).' '.$pagamento['descrizione'].'
'.tr('Validità offerta', [], ['upper' => true]).' '; 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, ]); } else { echo '-'; } echo '
'.tr('Tempi consegna', [], ['upper' => true]).' '.$documento['tempi_consegna'].'
'.tr('Esclusioni', [], ['upper' => true]).' '.nl2br($documento['esclusioni']).'
'.tr('Garanzia', [], ['upper' => true]).' '.nl2br($documento['garanzia']).'
'; // Conclusione echo '

'.tr("In attesa di un Vostro Cortese riscontro, colgo l'occasione per porgere Cordiali Saluti").'

'; if (!empty($documento->condizioni_fornitura)) { echo ''.$documento->condizioni_fornitura; }