openstamanager/modules/contratti/row-list.php

255 lines
7.1 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
/*
2018-05-18 18:12:19 +02:00
ARTICOLI + RIGHE GENERICHE
*/
2018-08-11 15:49:46 +02:00
$rs = $dbo->fetchArray('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_contratti WHERE idcontratto='.prepare($id_record).' ORDER BY `order`');
echo '
2018-01-14 17:46:00 +01:00
<table class="table table-striped table-hover table-condensed table-bordered">
<thead>
2018-05-18 18:12:19 +02:00
<tr>
<th>'.tr('Descrizione').'</th>
<th width="120">'.tr('Q.').'</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="120">'.tr('Costo unitario').'</th>
<th width="120">'.tr('Iva').'</th>
<th width="120">'.tr('Imponibile').'</th>
<th width="60"></th>
</tr>
</thead>
<tbody class="sortable">';
2018-06-23 18:35:08 +02:00
foreach ($rs as $r) {
// Descrizione
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>';
2018-06-23 18:35:08 +02:00
// Costo unitario
echo '
<td class="text-right">';
2018-06-23 18:35:08 +02:00
if (empty($r['is_descrizione'])) {
echo '
'.moneyFormat($r['subtotale'] / $r['qta']);
2018-06-23 18:35:08 +02:00
if ($r['sconto_unitario'] > 0) {
echo '
<br><small class="label label-danger">'.tr('sconto _TOT_ _TYPE_', [
'_TOT_' => Translator::numberToLocale($r['sconto_unitario']),
'_TYPE_' => ($r['tipo_sconto'] == 'PRC' ? '%' : currency()),
]).'</small>';
}
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
}
echo '
</td>';
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='.Modules::get('Contratti')['id'].'&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="op" value="delriga">
<input type="hidden" name="idriga" value="'.$r['id'].'">
<input type="hidden" name="idarticolo" value="'.$r['idarticolo'].'">
<div class="btn-group">';
2018-06-23 18:35:08 +02:00
echo "
<a class='btn btn-xs btn-warning' onclick=\"launch_modal('Modifica riga', '".$rootdir.'/modules/contratti/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 contratto?') ){ $('#delete-form-".$r['id']."').submit(); }\"><i class='fa fa-trash'></i></a>";
2018-06-23 18:35:08 +02:00
echo '
</div>
</form>';
2018-06-23 18:35:08 +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>';
2018-06-23 18:35:08 +02:00
}
2018-06-23 18:35:08 +02:00
// Calcoli
$imponibile = sum(array_column($rs, 'subtotale'));
$sconto = sum(array_column($rs, 'sconto'));
$iva = sum(array_column($rs, 'iva'));
2018-06-23 18:35:08 +02:00
$imponibile_scontato = sum($imponibile, -$sconto);
2018-05-18 18:12:19 +02:00
2018-06-23 18:35:08 +02:00
$totale = sum([
$imponibile_scontato,
$iva,
]);
echo '
</tbody>';
// SCONTO
2018-05-18 18:12:19 +02:00
if (abs($sconto) > 0) {
// Totale imponibile scontato
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
</td>
<td class="text-right">
2019-05-02 10:03:57 +02:00
<span id="budget">'.moneyFormat($imponibile, 2).'</span>
</td>
<td></td>
</tr>';
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Sconto', [], ['upper' => true]).':</b>
</td>
<td class="text-right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($sconto, 2).'
</td>
<td></td>
</tr>';
// Totale imponibile scontato
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Imponibile scontato', [], ['upper' => true]).':</b>
</td>
<td class="text-right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($imponibile_scontato, 2).'
</td>
<td></td>
</tr>';
} else {
// Totale imponibile
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
</td>
<td class="text-right">
2019-05-02 10:03:57 +02:00
<span id="budget">'.moneyFormat($imponibile, 2).'</span>
</td>
<td></td>
</tr>';
}
// Totale iva
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Iva', [], ['upper' => true]).':</b>
</td>
<td class="text-right">
2019-05-02 10:03:57 +02:00
'.moneyFormat($iva, 2).'
</td>
<td></td>
</tr>';
// Totale contratto
echo '
<tr>
<td colspan="5"" class="text-right">
<b>'.tr('Totale', [], ['upper' => true]).':</b>
</td>
<td class="text-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>';