openstamanager/modules/fatture/row-list.php

477 lines
15 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
use Modules\Fatture\Components\Riga;
2018-12-23 16:16:59 +01:00
// Righe fattura
$righe = $fattura->getRighe();
echo '
<table class="table table-striped table-hover table-condensed table-bordered">
2018-01-14 17:46:00 +01:00
<thead>
<tr>
<th>'.tr('Descrizione').'</th>
<th width="120">'.tr('Q.').'</th>
<th width="80">'.tr('U.m.').'</th>
2018-12-23 16:16:59 +01:00
<th width="120">'.tr('Prezzo unitario').'</th>
2018-01-14 17:46:00 +01:00
<th width="120">'.tr('Iva').'</th>
<th width="120">'.tr('Importo').'</th>
2018-01-14 17:46:00 +01:00
<th width="60"></th>
</tr>
</thead>
<tbody class="sortable">';
2019-02-12 17:21:27 +01:00
foreach ($righe as $row) {
$riga = $row->toArray();
2018-12-23 16:16:59 +01:00
// Valori assoluti
$riga['qta'] = abs($riga['qta']);
$riga['prezzo_unitario_acquisto'] = abs($riga['prezzo_unitario_acquisto']);
2019-07-11 17:44:42 +02:00
$riga['totale_imponibile'] = ($fattura->isNotaDiAccredito() ? -$row->totale_imponibile : $row->totale_imponibile);
2018-12-23 16:16:59 +01:00
$riga['sconto_unitario'] = abs($riga['sconto_unitario']);
$riga['sconto'] = abs($riga['sconto']);
$riga['iva'] = abs($riga['iva']);
2019-01-09 17:09:43 +01:00
2019-01-10 18:41:25 +01:00
if (empty($riga['is_descrizione'])) {
$riga['descrizione_conto'] = $dbo->fetchOne('SELECT descrizione FROM co_pianodeiconti3 WHERE id = '.prepare($riga['idconto']))['descrizione'];
}
2018-12-23 16:16:59 +01:00
$extra = '';
2019-01-08 17:20:23 +01:00
// Articoli
2019-02-12 17:21:27 +01:00
if ($row->isArticolo()) {
2019-02-13 10:33:08 +01:00
$riga['descrizione'] = (!empty($row->articolo) ? $row->articolo->codice.' - ' : '').$riga['descrizione'];
2019-01-08 17:20:23 +01:00
$delete = 'unlink_articolo';
$extra = '';
$mancanti = 0;
}
2019-01-10 18:41:25 +01:00
// Intervento
elseif (!empty($riga['idintervento'])) {
$intervento = $dbo->fetchOne('SELECT num_item,codice_cig,codice_cup,id_documento_fe FROM in_interventi WHERE id = '.prepare($riga['idintervento']));
$riga['num_item'] = $intervento['num_item'];
2019-01-22 17:16:17 +01:00
$riga['codice_cig'] = $intervento['codice_cig'];
$riga['codice_cup'] = $intervento['codice_cup'];
$riga['id_documento_fe'] = $intervento['id_documento_fe'];
2019-01-25 11:02:36 +01:00
2019-01-10 18:41:25 +01:00
$delete = 'unlink_intervento';
}
// Preventivi
elseif (!empty($riga['idpreventivo'])) {
$preventivo = $dbo->fetchOne('SELECT num_item,codice_cig,codice_cup,id_documento_fe FROM co_preventivi WHERE id = '.prepare($riga['idpreventivo']));
$riga['num_item'] = $preventivo['num_item'];
$riga['codice_cig'] = $preventivo['codice_cig'];
$riga['codice_cup'] = $preventivo['codice_cup'];
$riga['id_documento_fe'] = $preventivo['id_documento_fe'];
2019-01-25 11:02:36 +01:00
2019-01-10 18:41:25 +01:00
$delete = 'unlink_preventivo';
}
// Contratti
elseif (!empty($riga['idcontratto'])) {
$contratto = $dbo->fetchOne('SELECT num_item,codice_cig,codice_cup,id_documento_fe FROM co_contratti WHERE id = '.prepare($riga['idcontratto']));
$riga['num_item'] = $contratto['num_item'];
2019-01-10 18:41:25 +01:00
$riga['codice_cig'] = $contratto['codice_cig'];
$riga['codice_cup'] = $contratto['codice_cup'];
$riga['id_documento_fe'] = $contratto['id_documento_fe'];
$delete = 'unlink_contratto';
}
2019-03-29 12:46:17 +01:00
// Ordini (IDDOCUMENTO,CIG,CUP)
elseif (!empty($riga['idordine'])) {
$ordine = $dbo->fetchOne('SELECT num_item,codice_cig,codice_cup,id_documento_fe FROM or_ordini WHERE id = '.prepare($riga['idordine']));
$riga['num_item'] = $ordine['num_item'];
$riga['codice_cig'] = $ordine['codice_cig'];
$riga['codice_cup'] = $ordine['codice_cup'];
$riga['id_documento_fe'] = $ordine['id_documento_fe'];
$delete = 'unlink_riga';
2019-01-10 18:41:25 +01:00
}
2018-12-23 16:16:59 +01:00
// Righe generiche
else {
$delete = 'unlink_riga';
}
2018-11-30 16:10:15 +01:00
2018-12-23 16:16:59 +01:00
// Individuazione dei seriali
if (!empty($riga['abilita_serial'])) {
2019-02-13 10:33:08 +01:00
$serials = $row->serials;
2018-12-23 16:16:59 +01:00
$mancanti = $riga['qta'] - count($serials);
2018-11-30 16:10:15 +01:00
2018-12-23 16:16:59 +01:00
if ($mancanti > 0) {
$extra = 'class="warning"';
} else {
$mancanti = 0;
2018-10-30 10:27:44 +01:00
}
2018-12-23 16:16:59 +01:00
}
2019-01-09 17:09:43 +01:00
2019-01-10 18:41:25 +01:00
$extra_riga = '';
2019-01-25 11:02:36 +01:00
if (!$riga['is_descrizione']) {
$extra_riga = tr('_DESCRIZIONE_CONTO__ID_DOCUMENTO__NUMERO_RIGA__CODICE_CIG__CODICE_CUP_', [
2019-01-25 11:02:36 +01:00
'_DESCRIZIONE_CONTO_' => $riga['descrizione_conto'] ?: null,
'_ID_DOCUMENTO_' => $riga['id_documento_fe'] ? ' - DOC: '.$riga['id_documento_fe'] : null,
'_NUMERO_RIGA_' => $riga['num_item'] ? ', NRI: '.$riga['num_item'] : null,
'_CODICE_CIG_' => $riga['codice_cig'] ? ', CIG: '.$riga['codice_cig'] : null,
'_CODICE_CUP_' => $riga['codice_cup'] ? ', CUP: '.$riga['codice_cup'] : null,
2019-01-25 11:02:36 +01:00
]);
}
2019-01-10 18:41:25 +01:00
2018-12-23 16:16:59 +01:00
echo '
<tr data-id="'.$riga['id'].'" '.$extra.'>
<td>
2019-02-26 21:46:23 +01:00
'.Modules::link($row->isArticolo() ? Modules::get('Articoli')['id'] : null, $row->isArticolo() ? $riga['idarticolo'] : null, $riga['descrizione']).'
2019-01-10 18:41:25 +01:00
<small class="pull-right text-muted">'.$extra_riga.'</small>';
2018-12-23 16:16:59 +01:00
if (!empty($riga['abilita_serial'])) {
if (!empty($mancanti)) {
echo '
<br><b><small class="text-danger">'.tr('_NUM_ serial mancanti', [
'_NUM_' => $mancanti,
]).'</small></b>';
2018-12-23 16:16:59 +01:00
}
if (!empty($serials)) {
echo '
<br>'.tr('SN').': '.implode(', ', $serials);
}
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
// Aggiunta dei riferimenti ai documenti
2018-12-24 10:46:59 +01:00
if ($fattura->isNotaDiAccredito()) {
2018-12-23 16:16:59 +01:00
$data = $dbo->fetchArray("SELECT IF(numero_esterno != '', numero_esterno, numero) AS numero, data FROM co_documenti WHERE id = ".prepare($record['ref_documento']));
2018-07-04 12:57:53 +02:00
2018-12-23 16:16:59 +01:00
$text = tr('Rif. fattura _NUM_ del _DATE_', [
2018-07-04 12:57:53 +02:00
'_NUM_' => $data[0]['numero'],
'_DATE_' => Translator::dateToLocale($data[0]['data']),
]);
2018-12-23 16:16:59 +01:00
echo '
2018-07-18 15:20:10 +02:00
<br>'.Modules::link('Fatture di vendita', $record['ref_documento'], $text, $text);
2018-12-23 16:16:59 +01:00
}
2019-01-10 18:41:25 +01:00
$ref = doc_references($riga, $dir, ['iddocumento']);
2018-12-23 16:16:59 +01:00
if (!empty($ref)) {
echo '
<br>'.Modules::link($ref['module'], $ref['id'], $ref['description'], $ref['description']);
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
echo '
</td>';
2018-12-23 16:16:59 +01:00
echo '
<td class="text-center">';
2019-02-12 17:21:27 +01:00
if (!$row->isDescrizione()) {
echo '
2019-02-12 17:21:27 +01:00
'.Translator::numberToLocale($riga['qta'], 'qta');
2018-12-23 16:16:59 +01:00
}
echo '
</td>';
2018-12-23 16:16:59 +01:00
// Unità di misura
echo '
<td class="text-center">';
2019-02-12 17:21:27 +01:00
if (!$row->isDescrizione()) {
echo '
2018-12-23 16:16:59 +01:00
'.$riga['um'];
}
echo '
</td>';
2018-12-23 16:16:59 +01:00
// Prezzi unitari
echo '
<td class="text-right">';
2019-02-12 17:21:27 +01:00
if (!$row->isDescrizione()) {
echo '
'.moneyFormat($row->prezzo_unitario_vendita);
2018-12-24 10:46:59 +01:00
2019-07-11 18:10:38 +02:00
if ($dir == 'entrata' && $row->prezzo_unitario_acquisto != 0) {
2018-12-24 10:46:59 +01:00
echo '
2018-12-23 16:16:59 +01:00
<br><small>
'.tr('Acquisto').': '.moneyFormat($row->prezzo_unitario_acquisto).'
2018-12-23 16:16:59 +01:00
</small>';
2018-12-24 10:46:59 +01:00
}
2019-07-11 17:34:06 +02:00
if (abs($row->sconto_unitario) > 0) {
2019-07-11 17:44:42 +02:00
$text = $row->sconto_unitario > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT_ _TYPE_');
2018-02-17 09:02:19 +01:00
echo '
2019-07-11 17:44:42 +02:00
<br><small class="label label-danger">'.replace($text, [
'_TOT_' => Translator::numberToLocale(abs($row->sconto_unitario)),
'_TYPE_' => ($row->tipo_sconto == 'PRC' ? '%' : currency()),
2018-02-17 09:02:19 +01:00
]).'</small>';
}
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
echo '
</td>';
2018-12-23 16:16:59 +01:00
// Iva
echo '
<td class="text-right">';
2019-02-12 17:21:27 +01:00
if (!$row->isDescrizione()) {
echo '
'.moneyFormat($riga['iva']).'
2019-04-05 04:42:02 +02:00
<br><small class="'.(($row->aliquota->deleted_at) ? 'text-red' : '').' help-block">'.$row->aliquota->descrizione.(($row->aliquota->esente) ? ' ('.$row->aliquota->codice_natura_fe.')' : null).'</small>';
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
echo '
</td>';
2018-12-23 16:16:59 +01:00
// Importo
echo '
<td class="text-right">';
2019-02-12 17:21:27 +01:00
if (!$row->isDescrizione()) {
echo '
2019-07-11 17:44:42 +02:00
'.moneyFormat($riga['totale_imponibile']);
2018-12-28 08:07:56 +01:00
/*
2019-02-13 10:33:08 +01:00
<br><small class="text-'.($row->guadagno > 0 ? 'success' : 'danger').'">
'.tr('Guadagno').': '.moneyFormat($row->guadagno).'
2018-12-28 08:07:56 +01:00
</small>';
*/
2018-12-23 16:16:59 +01:00
}
echo '
</td>';
2018-12-23 16:16:59 +01:00
// Possibilità di rimuovere una riga solo se la fattura non è pagata
echo '
<td class="text-center">';
2019-04-19 20:47:55 +02:00
if ($record['stato'] != 'Pagato' && $record['stato'] != 'Emessa' && $riga['id'] != $fattura->rigaBollo->id) {
2018-12-23 16:16:59 +01:00
echo "
<form action='".$rootdir.'/editor.php?id_module='.$id_module.'&id_record='.$id_record."' method='post' id='delete-form-".$riga['id']."' role='form'>
<input type='hidden' name='backto' value='record-edit'>
2018-12-23 16:16:59 +01:00
<input type='hidden' name='idriga' value='".$riga['id']."'>
<input type='hidden' name='op' value='".$delete."'>";
2019-02-12 17:21:27 +01:00
if ($row->isArticolo()) {
echo "
2018-12-23 16:16:59 +01:00
<input type='hidden' name='idarticolo' value='".$riga['idarticolo']."'>";
}
2018-12-23 16:16:59 +01:00
echo "
<div class='input-group-btn'>";
2019-02-12 17:21:27 +01:00
if (!$fattura->isNotaDiAccredito() && $row->isArticolo() && $riga['abilita_serial'] && (empty($riga['idddt']) || empty($riga['idintervento']))) {
echo "
2019-03-29 12:46:17 +01:00
<a class='btn btn-primary btn-xs'data-toggle='tooltip' title='Aggiorna SN...' onclick=\"launch_modal( 'Aggiorna SN', '".$structure->fileurl('add_serial.php').'?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$riga['id'].'&idarticolo='.$riga['idarticolo']."', 1 );\"><i class='fa fa-barcode' aria-hidden='true'></i></a>";
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
echo "
2019-03-29 12:46:17 +01:00
<a class='btn btn-xs btn-warning' title='Modifica questa riga...' onclick=\"launch_modal( 'Modifica riga', '".$structure->fileurl('row-edit.php').'?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$riga['id']."', 1 );\"><i class='fa fa-edit'></i></a>
2018-12-23 16:16:59 +01:00
<a class='btn btn-xs btn-danger' title='Rimuovi questa riga...' onclick=\"if( confirm('Rimuovere questa riga dalla fattura?') ){ $('#delete-form-".$riga['id']."').submit(); }\"><i class='fa fa-trash'></i></a>
</div>
</form>";
2018-12-23 16:16:59 +01:00
}
2018-12-23 16:16:59 +01:00
echo '
<div class="handle clickable" style="padding:10px">
<i class="fa fa-sort"></i>
</div>';
2018-12-23 16:16:59 +01:00
echo '
</td>
</tr>';
2018-12-23 16:16:59 +01:00
}
echo '
</tbody>';
2018-12-23 16:16:59 +01:00
$imponibile = abs($fattura->imponibile);
$sconto = abs($fattura->sconto);
2019-07-11 17:44:42 +02:00
$totale_imponibile = abs($fattura->totale_imponibile);
2018-12-23 16:16:59 +01:00
$iva = abs($fattura->iva);
$totale = abs($fattura->totale);
$netto_a_pagare = abs($fattura->netto);
$guadagno = $fattura->guadagno;
// IMPONIBILE
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($imponibile, 2).'
</td>
<td></td>
</tr>';
// SCONTO
2018-12-23 16:16:59 +01:00
if (!empty($sconto)) {
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
2019-07-12 12:40:13 +02:00
<b><span class="tip" title="'.tr('Un importo positivo indica uno sconto, mentre uno negativo indica una maggiorazione').'"><i class="fa fa-question-circle-o"></i> '.tr('Sconto/maggiorazione', [], ['upper' => true]).':</span></b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($sconto, 2).'
</td>
<td></td>
</tr>';
2019-07-11 17:44:42 +02:00
// TOTALE IMPONIBILE
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
2019-07-11 17:44:42 +02:00
<b>'.tr('Totale imponibile', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-07-11 17:44:42 +02:00
'.moneyFormat($totale_imponibile, 2).'
</td>
<td></td>
</tr>';
}
// RIVALSA INPS
2018-12-23 16:16:59 +01:00
if (!empty($fattura->rivalsa_inps)) {
echo '
<tr>
<td colspan="5" class="text-right">';
2019-02-12 17:21:27 +01:00
if ($dir == 'entrata') {
echo '
<span class="tip" title="'.$database->fetchOne('SELECT CONCAT_WS(\' - \', codice, descrizione) AS descrizione FROM fe_tipo_cassa WHERE codice = '.prepare(setting('Tipo Cassa Previdenziale')))['descrizione'].'" > <i class="fa fa-question-circle-o"></i></span> ';
2019-02-12 17:21:27 +01:00
}
echo '
<b>'.tr('Rivalsa', [], ['upper' => true]).' :</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($fattura->rivalsa_inps, 2).'
</td>
<td></td>
</tr>';
}
// IVA
2018-12-23 16:16:59 +01:00
if (!empty($iva)) {
echo '
<tr>
2018-12-28 18:03:38 +01:00
<td colspan="5" class="text-right">';
2018-12-29 12:03:22 +01:00
if ($records[0]['split_payment']) {
echo '<b>'.tr('Iva a carico del destinatario', [], ['upper' => true]).':</b>';
} else {
echo '<b>'.tr('Iva', [], ['upper' => true]).':</b>';
}
echo '
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($iva, 2).'
</td>
<td></td>
</tr>';
}
// TOTALE
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
<b>'.tr('Totale', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($totale, 2).'
</td>
<td></td>
</tr>';
// RITENUTA D'ACCONTO
2018-12-23 16:16:59 +01:00
if (!empty($fattura->ritenuta_acconto)) {
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
<b>'.tr("Ritenuta d'acconto", [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-06-28 15:13:36 +02:00
'.moneyFormat(abs($fattura->ritenuta_acconto), 2).'
</td>
<td></td>
</tr>';
}
2019-02-15 12:12:44 +01:00
// RITENUTA CONTRIBUTI
if (!empty($fattura->totale_ritenuta_contributi)) {
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Ritenuta contributi', [], ['upper' => true]).':</b>
</td>
<td align="right">
'.moneyFormat($fattura->totale_ritenuta_contributi).'
2019-02-15 12:12:44 +01:00
</td>
<td></td>
</tr>';
}
// NETTO A PAGARE
if ($totale != $netto_a_pagare) {
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
<b>'.tr('Netto a pagare', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($netto_a_pagare, 2).'
</td>
<td></td>
</tr>';
}
// GUADAGNO TOTALE
2018-12-24 10:46:59 +01:00
if ($dir == 'entrata') {
$guadagno_style = $guadagno < 0 ? 'background-color: #FFC6C6; border: 3px solid red' : '';
/*
2018-12-24 10:46:59 +01:00
echo '
<tr>
2018-12-23 16:16:59 +01:00
<td colspan="5" class="text-right">
<b>'.tr('Guadagno', [], ['upper' => true]).':</b>
</td>
2018-12-23 16:16:59 +01:00
<td align="right" style="'.$guadagno_style.'">
'.moneyFormat($guadagno).'
</td>
<td></td>
</tr>';
*/
2018-12-24 10:46:59 +01:00
}
echo '
</table>';
echo '
<script>
$(document).ready(function(){
$(".sortable").each(function() {
$(this).sortable({
axis: "y",
handle: ".handle",
cursor: "move",
dropOnEmpty: true,
scroll: true,
update: function(event, ui) {
2018-10-30 10:27:44 +01:00
var order = "";
$(".table tr[data-id]").each( function(){
order += ","+$(this).data("id");
});
order = order.replace(/^,/, "");
2018-12-23 16:16:59 +01:00
$.post("'.$rootdir.'/actions.php", {
id: ui.item.data("id"),
id_module: '.$id_module.',
id_record: '.$id_record.',
op: "update_position",
2018-10-30 10:27:44 +01:00
order: order,
});
}
});
});
});
</script>';