2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-09-14 10:49:23 +02:00
|
|
|
include_once __DIR__.'/init.php';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-28 16:43:40 +02:00
|
|
|
$show_prezzi = Auth::user()['gruppo'] != 'Tecnici' || (Auth::user()['gruppo'] == 'Tecnici' && setting('Mostra i prezzi al tecnico'));
|
|
|
|
|
2019-07-12 17:35:14 +02:00
|
|
|
$righe = $intervento->getRighe();
|
|
|
|
if (!$righe->isEmpty()) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-striped table-hover table-condensed table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>'.tr('Descrizione').'</th>
|
|
|
|
<th class="text-center" width="8%">'.tr('Q.tà').'</th>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2018-09-28 16:43:40 +02:00
|
|
|
if ($show_prezzi) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<th class="text-center" width="15%">'.tr('Prezzo di acquisto').'</th>
|
|
|
|
<th class="text-center" width="15%">'.tr('Prezzo di vendita').'</th>
|
|
|
|
<th class="text-center" width="10%">'.tr('Iva unitaria').'</th>
|
|
|
|
<th class="text-center" width="15%">'.tr('Importo').'</th>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 15:20:10 +02:00
|
|
|
if (!$record['flag_completato']) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<th class="text-center" width="120" class="text-center">'.tr('#').'</th>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2019-07-12 17:35:14 +02:00
|
|
|
|
2020-07-31 11:56:48 +02:00
|
|
|
<tbody>';
|
2019-07-12 17:35:14 +02:00
|
|
|
|
|
|
|
foreach ($righe as $riga) {
|
|
|
|
$extra = '';
|
|
|
|
$mancanti = $riga->isArticolo() ? $riga->missing_serials_number : 0;
|
|
|
|
if ($mancanti > 0) {
|
|
|
|
$extra = 'class="warning"';
|
|
|
|
}
|
2020-07-06 13:32:43 +02:00
|
|
|
$descrizione = (!empty($riga->articolo) ? $riga->codice.' - ' : '').$riga['descrizione'];
|
2019-07-12 17:35:14 +02:00
|
|
|
|
|
|
|
echo '
|
2020-08-03 12:43:30 +02:00
|
|
|
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'" '.$extra.'>
|
2020-09-25 11:14:50 +02:00
|
|
|
<td>';
|
|
|
|
|
|
|
|
// Informazioni aggiuntive sulla destra
|
|
|
|
echo '
|
|
|
|
<small class="pull-right text-right text-muted">';
|
|
|
|
|
|
|
|
// Aggiunta dei riferimenti ai documenti
|
|
|
|
if ($riga->hasOriginalComponent()) {
|
|
|
|
echo '
|
|
|
|
'.reference($riga->getOriginalComponent()->getDocument(), tr('Origine'));
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
|
|
|
</small>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
'.Modules::link($riga->isArticolo() ? Modules::get('Articoli')['id'] : null, $riga->isArticolo() ? $riga['idarticolo'] : null, $descrizione);
|
2019-07-12 17:35:14 +02:00
|
|
|
|
|
|
|
if ($riga->isArticolo()) {
|
|
|
|
if (!empty($mancanti)) {
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<br><b><small class="text-danger">'.tr('_NUM_ serial mancanti', [
|
|
|
|
'_NUM_' => $mancanti,
|
|
|
|
]).'</small></b>';
|
2019-07-12 17:35:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$serials = $riga->serials;
|
|
|
|
if (!empty($serials)) {
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<br>'.tr('SN').': '.implode(', ', $serials);
|
2019-07-12 17:35:14 +02:00
|
|
|
}
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</td>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Quantità
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<td class="text-right">
|
|
|
|
'.Translator::numberToLocale($riga->qta, 'qta').' '.$riga->um.'
|
|
|
|
</td>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-04-21 15:44:49 +02:00
|
|
|
if ($show_prezzi) {
|
2020-09-25 11:03:39 +02:00
|
|
|
// Costo unitario
|
2020-04-21 15:44:49 +02:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<td class="text-right">
|
|
|
|
'.moneyFormat($riga->costo_unitario).'
|
|
|
|
</td>';
|
2020-04-24 08:26:22 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
// Prezzo unitario
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<td class="text-right">
|
|
|
|
'.moneyFormat($riga->prezzo_unitario);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-06-30 17:28:59 +02:00
|
|
|
if (abs($riga->sconto_unitario) > 0) {
|
|
|
|
$text = discountInfo($riga);
|
2019-07-11 17:44:42 +02:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<br><small class="label label-danger">'.$text.'</small>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2018-03-19 18:11:51 +01:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</td>';
|
2018-05-05 09:29:09 +02:00
|
|
|
|
2018-03-19 18:11:51 +01:00
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<td class="text-right">
|
2021-02-23 11:34:37 +01:00
|
|
|
'.moneyFormat($riga->iva_unitaria_scontata).'
|
2020-07-31 11:56:48 +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>';
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Prezzo di vendita
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
<td class="text-right">
|
|
|
|
'.moneyFormat($riga->importo).'
|
|
|
|
</td>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pulsante per riportare nel magazzino centrale.
|
|
|
|
// Visibile solo se l'intervento non è stato nè fatturato nè completato.
|
2018-07-18 15:20:10 +02:00
|
|
|
if (!$record['flag_completato']) {
|
2017-08-04 16:28:16 +02:00
|
|
|
echo '
|
2020-08-03 12:43:30 +02:00
|
|
|
<td class="text-center">
|
|
|
|
<div class="input-group-btn">';
|
2019-07-12 17:35:14 +02:00
|
|
|
|
2020-08-03 12:43:30 +02:00
|
|
|
if ($riga->isArticolo() && !empty($riga->abilita_serial)) {
|
2019-07-12 17:35:14 +02:00
|
|
|
echo '
|
2020-08-03 12:43:30 +02:00
|
|
|
<a class="btn btn-primary btn-xs" title="'.tr('Modifica seriali della riga').'" onclick="modificaSeriali(this)">
|
2020-07-31 11:56:48 +02:00
|
|
|
<i class="fa fa-barcode"></i>
|
2020-08-03 12:43:30 +02:00
|
|
|
</a>';
|
2019-07-12 17:35:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2020-08-03 12:43:30 +02:00
|
|
|
<a class="btn btn-xs btn-warning" title="'.tr('Modifica riga').'" onclick="modificaRiga(this)">
|
2020-07-31 11:56:48 +02:00
|
|
|
<i class="fa fa-edit"></i>
|
2020-08-03 12:43:30 +02:00
|
|
|
</a>
|
2020-07-31 11:56:48 +02:00
|
|
|
|
2020-08-03 12:43:30 +02:00
|
|
|
<a class="btn btn-xs btn-danger" title="'.tr('Rimuovi riga').'" onclick="rimuoviRiga(this)">
|
2020-07-31 11:56:48 +02:00
|
|
|
<i class="fa fa-trash"></i>
|
2020-08-03 12:43:30 +02:00
|
|
|
</a>
|
|
|
|
</div>';
|
|
|
|
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</td>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</tr>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '
|
2020-07-31 11:56:48 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>';
|
2018-11-01 12:39:54 +01:00
|
|
|
} else {
|
|
|
|
echo '
|
2019-07-12 17:35:14 +02:00
|
|
|
<p>'.tr('Nessuna riga presente').'.</p>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
|
2020-08-03 12:43:30 +02:00
|
|
|
echo '
|
2017-08-04 16:28:16 +02:00
|
|
|
<script type="text/javascript">
|
2020-08-03 12:43:30 +02:00
|
|
|
async function modificaRiga(button) {
|
2020-09-03 11:55:15 +02:00
|
|
|
let riga = $(button).closest("tr");
|
|
|
|
let id = riga.data("id");
|
|
|
|
let type = riga.data("type");
|
2020-08-03 12:43:30 +02:00
|
|
|
|
|
|
|
// Salvataggio via AJAX
|
2021-03-29 18:31:23 +02:00
|
|
|
await salvaForm("#edit-form", {}, button);
|
2020-08-03 12:43:30 +02:00
|
|
|
|
2021-03-29 18:31:23 +02:00
|
|
|
// Chiusura tooltip
|
|
|
|
if ($(button).hasClass("tooltipstered"))
|
|
|
|
$(button).tooltipster("close");
|
2020-08-03 12:43:30 +02:00
|
|
|
|
2021-03-29 18:31:23 +02:00
|
|
|
// Apertura modal
|
|
|
|
openModal("'.tr('Modifica sessione').'", "'.$module->fileurl('row-edit.php').'?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&riga_id=" + id + "&riga_type=" + type);
|
2020-08-03 12:43:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function rimuoviRiga(button) {
|
|
|
|
swal({
|
|
|
|
title: "'.tr('Rimuovere questa riga?').'",
|
|
|
|
html: "'.tr('Sei sicuro di volere rimuovere questa riga dal documento?').' '.tr("L'operazione è irreversibile").'.",
|
|
|
|
type: "warning",
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: "'.tr('Sì').'"
|
|
|
|
}).then(function () {
|
2020-09-03 11:55:15 +02:00
|
|
|
let riga = $(button).closest("tr");
|
|
|
|
let id = riga.data("id");
|
|
|
|
let type = riga.data("type");
|
2020-08-03 12:43:30 +02:00
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: globals.rootdir + "/actions.php",
|
|
|
|
type: "POST",
|
|
|
|
dataType: "json",
|
|
|
|
data: {
|
2020-01-17 17:31:07 +01:00
|
|
|
id_module: globals.id_module,
|
|
|
|
id_record: globals.id_record,
|
2020-08-03 12:43:30 +02:00
|
|
|
op: "delete_riga",
|
|
|
|
riga_type: type,
|
|
|
|
riga_id: id,
|
|
|
|
},
|
|
|
|
success: function (response) {
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
error: function() {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}).catch(swal.noop);
|
|
|
|
}
|
|
|
|
|
|
|
|
function modificaSeriali(button) {
|
2020-09-03 11:55:15 +02:00
|
|
|
let riga = $(button).closest("tr");
|
|
|
|
let id = riga.data("id");
|
|
|
|
let type = riga.data("type");
|
2020-08-03 12:43:30 +02:00
|
|
|
|
|
|
|
openModal("'.tr('Aggiorna SN').'", globals.rootdir + "/modules/fatture/add_serial.php?id_module=" + globals.id_module + "&id_record=" + globals.id_record + "&riga_id=" + id + "&riga_type=" + type);
|
|
|
|
}
|
|
|
|
</script>';
|