openstamanager/modules/preventivi/row-list.php

266 lines
7.3 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>
2020-05-29 15:58:47 +02:00
<tr>
<th width="35" class="text-center" >'.tr('#').'</th>
2018-05-18 18:12:19 +02:00
<th>'.tr('Descrizione').'</th>
<th class="text-center tip" width="150" title="'.tr('da evadere').' / '.tr('totale').'">'.tr('Q.').' <i class="fa fa-question-circle-o"></i></th>
<th class="text-center" width="150">'.tr('Prezzo unitario').'</th>
<th class="text-center" width="150">'.tr('Iva unitaria').'</th>
<th class="text-center" width="150">'.tr('Importo').'</th>
2020-07-05 00:22:22 +02:00
<th width="100"></th>
2018-05-18 18:12:19 +02:00
</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.'">';
2020-06-09 16:59:26 +02:00
echo '
2020-05-29 15:58:47 +02:00
<td class="text-center">
2020-06-09 16:59:26 +02:00
'.(($riga->order) + 1).'
2020-05-29 15:58:47 +02:00
</td>';
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>';
} else {
// Quantità e unità di misura
2019-05-04 06:39:18 +02:00
echo '
<td class="text-center">
'.numberFormat($riga->qta_rimanente, 'qta').' / '.numberFormat($riga->qta, 'qta').' '.$r['um'].'
</td>';
// Prezzi unitari
echo '
<td class="text-right">
'.moneyFormat($riga->prezzo_unitario_corrente);
if ($dir == 'entrata' && $riga->costo_unitario != 0) {
echo '
2020-07-05 00:22:22 +02:00
<br><small class="text-muted">
'.tr('Acquisto').': '.moneyFormat($riga->costo_unitario).'
</small>';
}
2019-07-17 18:30:20 +02:00
if (abs($riga->sconto_unitario) > 0) {
2020-02-15 14:11:44 +01:00
$text = discountInfo($riga);
2019-07-11 17:44:42 +02:00
2018-06-23 18:35:08 +02:00
echo '
<br><small class="label label-danger">'.$text.'</small>';
}
echo '
</td>';
// Iva
2018-06-23 18:35:08 +02:00
echo '
<td class="text-right">
'.moneyFormat($riga->iva_unitaria).'
2020-07-05 00:22:22 +02:00
<br><small class="'.(($riga->aliquota->deleted_at) ? 'text-red' : '').' text-muted">'.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ('.$riga->aliquota->codice_natura_fe.')' : null).'</small>
</td>';
// Importo
2018-06-23 18:35:08 +02:00
echo '
<td class="text-right">
'.moneyFormat($riga->importo).'
</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>
2020-07-05 00:22:22 +02:00
<a class="btn btn-xs btn-default handle" title="Modifica ordine...">
<i class="fa fa-sort"></i>
</a>
2020-01-17 17:31:07 +01:00
</div>';
2018-06-23 18:35:08 +02:00
}
2019-05-04 00:32:28 +02:00
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>
2020-05-29 15:58:47 +02:00
<td colspan="4" 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>
2020-05-29 15:58:47 +02: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>
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>
2020-05-29 15:58:47 +02: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>';
}
// Totale iva
echo '
<tr>
2020-05-29 15:58:47 +02:00
<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>
2020-05-29 15:58:47 +02:00
<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-03-19 12:26:41 +01:00
$margine_class = ($margine <= 0 and $preventivo->totale > 0) ? 'danger' : 'success';
$margine_icon = ($margine <= 0 and $preventivo->totale > 0) ? 'warning' : 'check';
2019-09-12 09:31:55 +02:00
echo '
2020-03-19 12:26:41 +01:00
<tr>
2020-05-29 15:58:47 +02:00
<td colspan="5" class="text-right">
2020-03-19 12:26:41 +01:00
'.tr('Costi').':
</td>
<td align="right">
'.moneyFormat($preventivo->spesa).'
</td>
<td></td>
</tr>
<tr>
2020-05-29 15:58:47 +02:00
<td colspan="5" class="text-right">
'.tr('Margine (_PRC_%)', [
'_PRC_' => numberFormat($preventivo->margine_percentuale),
]).':
</td>
2020-03-19 12:26:41 +01:00
<td align="right" class="'.$margine_class.'">
<i class="fa fa-'.$margine_icon.' text-'.$margine_class.'"></i> '.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,
});
}
});
});
});
2020-06-09 16:59:26 +02:00
</script>';