openstamanager/modules/preventivi/row-list.php

259 lines
7.3 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
/*
ARTICOLI + RIGHE GENERICHE
*/
2018-08-11 15:49:46 +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, IFNULL((SELECT codice FROM mg_articoli WHERE id=idarticolo), "") AS codice FROM co_righe_preventivi WHERE idpreventivo='.prepare($id_record).' ORDER BY `order`';
$rs = $dbo->fetchArray($q_art);
echo '
<table class="table table-striped table-hover table-condensed table-bordered">
2018-05-18 18:12:19 +02:00
<thead>
<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>
2018-05-18 18:12:19 +02:00
<th width="80">'.tr('U.m.').'</th>
<th width="160">'.tr('Prezzo unitario').'</th>
2018-05-18 18:12:19 +02:00
<th width="120">'.tr('Iva').'</th>
<th width="120">'.tr('Imponibile').'</th>
<th width="60"></th>
</tr>
</thead>
<tbody class="sortable">';
// se ho almeno un articolo caricato mostro la riga
2018-06-23 18:35:08 +02:00
foreach ($rs as $r) {
echo '
<tr data-id="'.$r['id'].'">
<td>';
2018-06-23 18:35:08 +02:00
if (!empty($r['idarticolo'])) {
echo Modules::link('Articoli', $r['idarticolo'], $r['codice'].' - '.$r['descrizione']);
} else {
echo nl2br($r['descrizione']);
}
2018-06-23 18:35:08 +02:00
echo '
</td>';
2018-06-23 18:35:08 +02:00
// q.tà
echo '
2019-02-14 17:49:58 +01:00
<td class="text-center">';
2018-06-23 18:35:08 +02:00
if (empty($r['is_descrizione'])) {
echo '
<span >'.Translator::numberToLocale($r['qta'] - $r['qta_evasa'], 'qta').' / '.Translator::numberToLocale($r['qta'], 'qta').'</span>';
2018-06-23 18:35:08 +02:00
}
echo '
</td>';
2018-06-23 18:35:08 +02:00
// um
echo '
<td class="text-center">';
2018-06-23 18:35:08 +02:00
if (empty($r['is_descrizione'])) {
echo '
2018-06-23 18:35:08 +02:00
'.$r['um'];
}
echo '
</td>';
// prezzo di vendita unitario
2018-06-23 18:35:08 +02:00
echo '
<td class="text-right">';
2018-06-23 18:35:08 +02: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_');
2018-06-23 18:35:08 +02:00
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()),
]).'</small>';
}
2018-06-23 18:35:08 +02:00
}
2018-06-23 18:35:08 +02:00
echo '
</td>';
2018-06-23 18:35:08 +02:00
// iva
echo '
<td class="text-right">';
2018-06-23 18:35:08 +02:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['iva']).'
<br><small class="help-block">'.$r['desc_iva'].'</small>';
2018-06-23 18:35:08 +02:00
}
echo'
</td>';
2018-06-23 18:35:08 +02:00
// Imponibile
echo '
<td class="text-right">';
2018-06-23 18:35:08 +02:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['subtotale'] - $r['sconto']);
2018-06-23 18:35:08 +02:00
}
2018-06-23 18:35:08 +02:00
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
echo '
<td class="text-center">';
2019-03-29 12:46:17 +01:00
if ($record['stato'] != 'Pagato') {
2018-06-23 18:35:08 +02:00
echo "
<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='op' value='unlink_articolo'>
<input type='hidden' name='idriga' value='".$r['id']."'>
<input type='hidden' name='idarticolo' value='".$r['idarticolo']."'>
<div class='btn-group'>
<a class='btn btn-xs btn-warning' title='Modifica riga' onclick=\"launch_modal( 'Modifica riga', '".$rootdir.'/modules/preventivi/row-edit.php?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$r['id']."', 1 );\"><i class='fa fa-edit'></i></a>
<a href='javascript:;' class='btn btn-xs btn-danger' title='Rimuovi questa riga' onclick=\"if( confirm('Rimuovere questa riga dal preventivo?') ){ $('#delete-form-".$r['id']."').submit(); }\"><i class='fa fa-trash'></i></a>
</div>
</form>";
2018-06-23 18:35:08 +02:00
}
2019-05-04 00:32:28 +02:00
echo '
<div class="handle clickable" style="padding:10px">
<i class="fa fa-sort"></i>
</div>';
2018-06-23 18:35:08 +02:00
echo '
</td>
</tr>';
}
// Calcoli
$totale_acquisto = 0;
foreach ($rs as $r) {
2018-12-23 16:16:59 +01:00
$totale_acquisto += ($r['prezzo_unitario_acquisto'] * $r['qta']);
}
$imponibile = sum(array_column($rs, 'subtotale'));
$sconto = sum(array_column($rs, 'sconto'));
2018-05-18 18:12:19 +02:00
$iva = sum(array_column($rs, 'iva'));
2019-07-11 17:44:42 +02:00
$totale_imponibile = sum($imponibile, -$sconto);
$totale = sum([
2019-07-11 17:44:42 +02:00
$totale_imponibile,
$iva,
]);
$totale_guadagno = sum([
2019-07-11 17:44:42 +02:00
$totale_imponibile
2018-12-23 16:16:59 +01:00
- $totale_acquisto,
]);
echo '
</tbody>';
// SCONTO
if (abs($sconto) > 0) {
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>';
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>';
// 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>';
} else {
// Totale 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>';
}
// Totale iva
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($iva, 2).'
</td>
<td></td>
</tr>';
// Totale preventivo
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>';
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(/^,/, "");
$.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>';