setRows($rows_per_page); // Intestazione tabella per righe echo " '; if ($options['pricing']) { echo " '; } echo ' '; // Righe documento $righe = $documento->getRighe(); foreach ($righe as $riga) { $r = $riga->toArray(); $autofill->count($r['descrizione']); 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|
".tr('Descrizione', [], ['upper' => true])." ".tr('Q.tà', [], ['upper' => true]).'".tr('Prezzo unitario', [], ['upper' => true])." ".tr('Importo', [], ['upper' => true])." ".tr('IVA', [], ['upper' => true]).' (%)
'.nl2br($r['descrizione']); if ($riga->isArticolo()) { // Codice articolo $text = tr('COD. _COD_', [ '_COD_' => $riga->articolo->codice, ]); echo '
'.$text.''; $autofill->count($text, true); // Seriali $seriali = $riga->serials; if (!empty($seriali)) { $text = tr('SN').': '.implode(', ', $seriali); echo '
'.$text.''; $autofill->count($text, true); } } // Aggiunta dei riferimenti ai documenti if (setting('Riferimento dei documenti nelle stampe')) { $ref = doc_references($r, $record['dir'], ['idddt']); if (!empty($ref)) { echo '
'.$ref['description'].''; $autofill->count($ref['description'], true); } } echo '
'.Translator::numberToLocale(abs($riga->qta), 'qta').' '.$r['um'].' '.moneyFormat($riga->prezzo_unitario_vendita); if ($riga->sconto > 0) { $text = tr('sconto _TOT_ _TYPE_', [ '_TOT_' => Translator::numberToLocale($riga->sconto_unitario), '_TYPE_' => ($riga->tipo_sconto == 'PRC' ? '%' : currency()), ]); echo '
'.$text.''; $autofill->count($text, true); } echo '
'.moneyFormat($riga->totale_imponibile).' '.Translator::numberToLocale($riga->aliquota->percentuale, 0).'
';