openstamanager/modules/ddt/row-list.php

384 lines
11 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
echo '
<table class="table table-striped table-hover table-condensed table-bordered">
<tr>
<th>'.tr('Descrizione').'</th>
<th width="120">'.tr('Q.').' <i title="'.tr('da evadere').' / '.tr('totale').'" class="tip fa fa-question-circle-o"></i></th>
<th width="80">'.tr('U.m.').'</th>
<th width="120">'.tr('Costo unitario').'</th>
<th width="120">'.tr('Iva').'</th>
<th width="120">'.tr('Imponibile').'</th>
<th width="60"></th>
</tr>
<tbody class="sortable">';
/*
Articoli e righe generiche
*/
2018-07-09 10:44:54 +02:00
$q_art = 'SELECT *, round(sconto_unitario,'.setting('Cifre decimali per importi').') AS sconto_unitario, round(sconto,'.setting('Cifre decimali per importi').') AS sconto, round(subtotale,'.setting('Cifre decimali per importi').') AS subtotale, (SELECT codice FROM mg_articoli WHERE id=idarticolo) AS codice FROM `dt_righe_ddt` WHERE idddt='.prepare($id_record).' ORDER BY `order`';
$rs = $dbo->fetchArray($q_art);
if (!empty($rs)) {
foreach ($rs as $r) {
$extra = '';
$mancanti = 0;
// Individuazione dei seriali
if (!empty($r['idarticolo']) && !empty($r['abilita_serial'])) {
$serials = array_column($dbo->fetchArray('SELECT serial FROM mg_prodotti WHERE serial IS NOT NULL AND id_riga_ddt='.prepare($r['id'])), 'serial');
$mancanti = $r['qta'] - count($serials);
if ($mancanti > 0) {
$extra = 'class="warning"';
} else {
$mancanti = 0;
}
}
echo '
<tr data-id="'.$r['id'].'" '.$extra.'>
<td align="left">';
if (!empty($r['idarticolo'])) {
echo '
'.Modules::link('Articoli', $r['idarticolo'], $r['codice'].' - '.$r['descrizione']);
if (!empty($r['abilita_serial'])) {
if (!empty($mancanti)) {
echo '
<br><b><small class="text-danger">'.tr('_NUM_ serial mancanti', [
'_NUM_' => $mancanti,
]).'</small></b>';
}
if (!empty($serials)) {
echo '
<br>'.tr('SN').': '.implode(', ', $serials);
}
}
} else {
echo nl2br($r['descrizione']);
}
// Aggiunta dei riferimenti ai documenti
$ref = doc_references($r, $dir, ['idddt']);
if (!empty($ref)) {
echo '
<br>'.Modules::link($ref['module'], $ref['id'], $ref['description'], $ref['description']);
}
echo '
</td>';
echo '
<td class="text-center">';
2018-02-17 09:02:19 +01:00
if (empty($r['is_descrizione'])) {
2019-03-29 12:46:17 +01:00
echo '
<span >'.Translator::numberToLocale($r['qta'] - $r['qta_evasa'], 'qta').' / '.Translator::numberToLocale($r['qta'], 'qta').'</span>';
}
echo '
</td>';
// Unità di misura
echo '
<td class="text-center">';
2018-02-17 09:02:19 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.$r['um'];
}
echo '
</td>';
// Costo unitario
echo '
<td class="text-right">';
2018-02-17 09:02:19 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['subtotale'] / $r['qta']);
2019-07-11 17:34:06 +02:00
if (abs($r['sconto_unitario']) > 0) {
2019-07-11 17:44:42 +02:00
$text = $r['sconto_unitario'] > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT_ _TYPE_');
echo '
2019-07-11 17:44:42 +02:00
<br><small class="label label-danger">'.replace($text, [
'_TOT_' => Translator::numberToLocale(abs($r['sconto_unitario'])),
'_TYPE_' => ($r['tipo_sconto'] == 'PRC' ? '%' : currency()),
2018-02-17 09:02:19 +01:00
]).'</small>';
}
}
echo '
</td>';
// Iva
echo '
<td class="text-right">';
2018-02-17 09:02:19 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['iva']).'
<br><small class="help-block">'.$r['desc_iva'].'</small>';
}
echo '
</td>';
// Imponibile
echo '
<td class="text-right">';
2018-02-17 09:02:19 +01:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['subtotale'] - $r['sconto']);
}
echo '
</td>';
// Possibilità di rimuovere una riga solo se il ddt non è evaso
echo '
<td class="text-center">';
2019-03-29 12:46:17 +01:00
if ($record['flag_completato'] == 0) {
echo "
2018-10-26 19:39:34 +02:00
<form action='".$rootdir.'/editor.php?id_module='.$id_module.'&id_record='.$id_record."' method='post' id='delete-form-".$r['id']."' role='form'>
<input type='hidden' name='backto' value='record-edit'>
<input type='hidden' name='id_record' value='".$id_record."'>
<input type='hidden' name='idriga' value='".$r['id']."'>
<input type='hidden' name='dir' value='".$dir."'>";
if (!empty($r['idarticolo'])) {
echo "
<input type='hidden' name='idarticolo' value='".$r['idarticolo']."'>
<input type='hidden' name='op' value='unlink_articolo'>";
} else {
echo "
<input type='hidden' name='op' value='unlink_riga'>";
}
echo "
<div class='input-group-btn'>";
if (!empty($r['idarticolo']) && $r['abilita_serial']) {
echo "
<a class='btn btn-primary btn-xs'data-toggle='tooltip' title='Aggiorna SN...' onclick=\"launch_modal( 'Aggiorna SN', '".$rootdir.'/modules/fatture/add_serial.php?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$r['id'].'&idarticolo='.$r['idarticolo']."', 1 );\"><i class='fa fa-barcode' aria-hidden='true'></i></a>";
}
echo "
<a class='btn btn-xs btn-warning' title='Modifica questa riga...' onclick=\"launch_modal( 'Modifica riga', '".$rootdir.'/modules/ddt/row-edit.php?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$r['id']."', 1 );\">
<i class='fa fa-edit'></i>
</a>
<a class='btn btn-xs btn-danger' title='Rimuovi questa riga...' onclick=\"if( confirm('Rimuovere questa riga dal ddt?') ){ $('#delete-form-".$r['id']."').submit(); }\">
<i class='fa fa-trash'></i>
</a>
</div>
</form>";
}
2019-05-04 00:32:28 +02:00
echo '
<div class="handle clickable" style="padding:10px">
<i class="fa fa-sort"></i>
</div>';
echo '
</td>
</tr>';
}
}
echo '
</tbody>';
// Calcoli
$imponibile = sum(array_column($rs, 'subtotale'));
$sconto = sum(array_column($rs, 'sconto'));
$iva = sum(array_column($rs, 'iva'));
2019-07-11 17:44:42 +02:00
$totale_imponibile = sum($imponibile, -$sconto);
2018-07-18 15:20:10 +02:00
$totale_iva = sum($iva, $record['iva_rivalsainps']);
$totale = sum([
2019-07-11 17:44:42 +02:00
$totale_imponibile,
2018-07-18 15:20:10 +02:00
$record['rivalsainps'],
$totale_iva,
]);
$netto_a_pagare = sum([
$totale,
//$marca_da_bollo, // Variabile non inizializzata!
2018-07-18 15:20:10 +02:00
-$record['ritenutaacconto'],
]);
// IMPONIBILE
echo '
<tr>
<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>';
if (abs($sconto) > 0) {
// SCONTO
echo '
<tr>
<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>
<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-07-18 15:20:10 +02:00
if (abs($record['rivalsainps']) > 0) {
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Rivalsa', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($record['rivalsainps'], 2).'
</td>
<td></td>
</tr>';
}
if (abs($totale_iva) > 0) {
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('IVA', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($totale_iva, 2).'
</td>
<td></td>
</tr>';
}
// TOTALE
echo '
<tr>
<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>';
// Mostra marca da bollo se c'è
2018-07-18 15:20:10 +02:00
if (abs($record['bollo']) > 0) {
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Marca da bollo', [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($record['bollo'], 2).'
</td>
<td></td>
</tr>';
}
// RITENUTA D'ACCONTO
2018-07-18 15:20:10 +02:00
if (abs($record['ritenutaacconto']) > 0) {
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr("Ritenuta d'acconto", [], ['upper' => true]).':</b>
</td>
<td align="right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($record['ritenutaacconto'], 2).'
</td>
<td></td>
</tr>';
}
// NETTO A PAGARE
if ($totale != $netto_a_pagare) {
echo '
<tr>
<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>';
}
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-28 08:07:56 +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>';