openstamanager/modules/preventivi/row-list.php

254 lines
6.9 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
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>
2019-05-04 06:39:18 +02:00
<th width="120">'.tr('Costo 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">';
2020-01-17 17:31:07 +01:00
// Righe documento
$righe = $preventivo->getRighe();
2019-05-04 06:39:18 +02:00
foreach ($righe as $riga) {
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:39:18 +02:00
<tr data-id="'.$riga->id.'">';
2019-05-04 06:39:18 +02:00
// Descrizione
$descrizione = nl2br($riga->descrizione);
if ($riga->isArticolo()) {
$descrizione = Modules::link('Articoli', $riga->idarticolo, $riga->articolo->codice.' - '.$descrizione);
2018-06-23 18:35:08 +02:00
}
echo '
2019-05-04 06:39:18 +02:00
<td>
'.$descrizione.'
</td>';
2019-05-04 06:39:18 +02:00
if ($riga->isDescrizione()) {
echo '
2019-05-04 06:39:18 +02:00
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>';
} else {
// Q.tà
echo '
<td class="text-center">
'.Translator::numberToLocale($riga->qta_rimanente, 'qta').' / '.Translator::numberToLocale($riga->qta, 'qta').'
</td>';
2019-05-04 06:39:18 +02:00
// Unità di misura
echo '
2019-05-04 06:39:18 +02:00
<td class="text-center">
'.$riga->um.'
</td>';
2019-05-04 06:39:18 +02:00
// Costo unitario
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:39:18 +02:00
<td class="text-right">
2020-02-14 17:43:39 +01:00
'.moneyFormat($riga->prezzo_unitario);
2019-07-17 18:30:20 +02:00
if (abs($riga->sconto_unitario) > 0) {
$text = $riga->sconto_unitario > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT_ _TYPE_');
2019-07-11 17:44:42 +02:00
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, [
2019-07-17 18:30:20 +02:00
'_TOT_' => Translator::numberToLocale(abs($riga->sconto_unitario)),
2019-05-04 06:39:18 +02:00
'_TYPE_' => ($riga->tipo_sconto == 'PRC' ? '%' : currency()),
]).'</small>';
}
2019-05-04 06:39:18 +02:00
echo'
</td>';
2019-05-04 06:39:18 +02:00
// IVA
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:39:18 +02:00
<td class="text-right">
'.moneyFormat($riga->iva).'<br>
<small class="help-block">'.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ('.$riga->aliquota->codice_natura_fe.')' : null).'</small>
</td>';
2019-05-04 06:39:18 +02:00
// Imponibile
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:39:18 +02:00
<td class="text-right">
2019-09-05 18:40:39 +02:00
'.moneyFormat($riga->totale_imponibile).'
2019-05-04 06:39:18 +02:00
</td>';
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">';
if (empty($record['is_completato'])) {
2019-05-04 06:39:18 +02:00
echo '
2020-01-17 17:31:07 +01:00
<div class="btn-group">
<a class="btn btn-xs btn-warning" onclick="editRow(\''.addslashes(get_class($riga)).'\', '.$riga->id.')">
<i class="fa fa-edit"></i>
</a>
<a class="btn btn-xs btn-danger" onclick="deleteRow(\''.addslashes(get_class($riga)).'\', '.$riga->id.')">
<i class="fa fa-trash"></i>
</a>
</div>';
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>';
}
echo '
</tbody>';
2019-05-04 06:39:18 +02:00
echo '
<script>
2020-01-17 17:31:07 +01:00
function editRow(type, id){
launch_modal("'.tr('Modifica riga').'", "'.$module->fileurl('row-edit.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&idriga=" + id + "&type=" + encodeURIComponent(type));
}
2020-01-17 17:31:07 +01:00
function deleteRow(type, id){
2019-07-17 18:30:20 +02:00
if(confirm("'.tr('Rimuovere questa riga dal documento?').'")){
2020-01-17 17:31:07 +01:00
redirect("", {
backto: "record-edit",
op: "delete_riga",
idriga: id,
type: type,
}, "post");
2019-05-04 06:39:18 +02:00
}
}
</script>';
2019-07-12 17:35:14 +02:00
// Calcoli
$imponibile = abs($preventivo->imponibile);
$sconto = $preventivo->sconto;
$totale_imponibile = abs($preventivo->totale_imponibile);
$iva = abs($preventivo->iva);
$totale = abs($preventivo->totale);
2019-07-18 09:42:51 +02:00
// Totale imponibile scontato
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
</td>
2019-05-04 06:39:18 +02:00
<td class="text-right">
'.moneyFormat($preventivo->imponibile, 2).'
</td>
<td></td>
</tr>';
2019-07-12 17:35:14 +02:00
// SCONTO
if (!empty($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>
2019-05-04 06:39:18 +02:00
<td class="text-right">
'.moneyFormat($preventivo->sconto, 2).'
</td>
<td></td>
</tr>';
2019-05-04 06:39:18 +02:00
// Totale imponibile scontato
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>';
}
// Totale iva
echo '
<tr>
<td colspan="5" class="text-right">
2019-05-04 06:39:18 +02:00
<b>'.tr('Iva', [], ['upper' => true]).':</b>
</td>
2019-05-04 06:39:18 +02:00
<td class="text-right">
'.moneyFormat($preventivo->iva, 2).'
</td>
<td></td>
</tr>';
2019-09-12 09:31:55 +02:00
// Totale
echo '
<tr>
<td colspan="5" class="text-right">
<b>'.tr('Totale', [], ['upper' => true]).':</b>
</td>
2019-05-04 06:39:18 +02:00
<td class="text-right">
'.moneyFormat($preventivo->totale, 2).'
</td>
<td></td>
</tr>';
2019-09-12 09:31:55 +02:00
// Margine
$margine = $preventivo->margine;
2020-02-05 14:51:39 +01:00
$margine_style = ($margine <= 0 and $preventivo->totale > 0) ? 'background-color: #FFC6C6; border: 3px solid red' : '';
2019-09-12 09:31:55 +02:00
echo '
<tr>
<td colspan="5" class="text-right">
'.tr('Margine (_PRC_%)', [
'_PRC_' => numberFormat($preventivo->margine_percentuale),
]).':
</td>
<td align="right" style="'.$margine_style.'">
'.moneyFormat($preventivo->margine).'
</td>
<td></td>
</tr>';
2019-09-12 09:31:55 +02: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(/^,/, "");
$.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>';