<?php /* * OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione * Copyright (C) DevCode s.r.l. * * 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/>. */ use Plugins\PianificazioneInterventi\Promemoria; include_once __DIR__.'/../../core.php'; $block_edit = filter('add') ? false : true; $show_prezzi = true; $promemoria = $promemoria ?: Promemoria::find($id_record); $righe = $promemoria->getRighe(); if (!$righe->isEmpty()) { echo ' <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> <th class="text-center" width="15%">'.tr('Prezzo di acquisto').'</th>'; if ($show_prezzi) { echo ' <th class="text-center" width="15%">'.tr('Prezzo di vendita').'</th> <th class="text-center" width="10%">'.tr('Iva').'</th> <th class="text-center" width="15%">'.tr('Imponibile').'</th>'; } if (!$block_edit) { echo ' <th class="text-center" width="120" class="text-center">'.tr('#').'</th>'; } echo ' </tr> </thead> <tbody>'; foreach ($righe as $riga) { $extra = ''; $mancanti = $riga->isArticolo() ? $riga->missing_serials_number : 0; if ($mancanti > 0) { $extra = 'class="warning"'; } $descrizione = (!empty($riga->articolo) ? $riga->codice.' - ' : '').$riga['descrizione']; echo ' <tr '.$extra.'> <td> '.Modules::link($riga->isArticolo() ? Modules::get('Articoli')['id'] : null, $riga->isArticolo() ? $riga['idarticolo'] : null, $descrizione); if ($riga->isArticolo()) { if (!empty($mancanti)) { echo ' <br><b><small class="text-danger">'.tr('_NUM_ serial mancanti', [ '_NUM_' => $mancanti, ]).'</small></b>'; } $serials = $riga->serials; if (!empty($serials)) { echo ' <br>'.tr('SN').': '.implode(', ', $serials); } } echo ' </td>'; // Quantità echo ' <td class="text-right"> '.Translator::numberToLocale($riga->qta, 'qta').' '.$riga->um.' </td>'; if ($show_prezzi) { // Costo unitario echo ' <td class="text-right"> '.moneyFormat($riga->costo_unitario).' </td>'; // Prezzo unitario echo ' <td class="text-right"> '.moneyFormat($riga->prezzo_unitario); if (abs($riga->sconto_unitario) > 0) { $text = discountInfo($riga); echo ' <br><small class="label label-danger">'.$text.'</small>'; } echo ' </td>'; echo ' <td class="text-right"> '.moneyFormat($riga->iva_unitaria_scontata).' <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>'; // Prezzo di vendita echo ' <td class="text-right"> '.moneyFormat($riga->importo).' </td>'; } // Pulsante per riportare nel magazzino centrale. // Visibile solo se l'intervento non è stato nè fatturato nè completato. if (!$block_edit) { echo ' <td class="text-center">'; if ($riga->abilita_serial) { echo ' <button type="button" class="btn btn-info btn-xs" data-toggle="tooltip" onclick="launch_modal(\''.tr('Modifica articoli').'\', \''.base_path().'/modules/fatture/add_serial.php?id_module='.$id_module.'&id_record='.$id_record.'&idarticolo='.$riga->id.'&idriga='.$riga->id.'\');"> <i class="fa fa-barcode"></i> </button>'; } echo ' <button type="button" class="btn btn-warning btn-xs" data-toggle="tooltip" onclick="launch_modal(\''.tr('Modifica').'\', \''.$structure->fileurl('row-edit.php').'?id_module='.$id_module.'&id_record='.$id_record.'&idriga='.$riga->id.'&type='.urlencode(get_class($riga)).'\');"> <i class="fa fa-edit"></i> </button> <button type="button" class="btn btn-danger btn-xs" data-toggle="tooltip" onclick="elimina_riga(\''.addslashes(get_class($riga)).'\', \''.$riga->id.'\');"> <i class="fa fa-trash"></i> </button> </td>'; } echo ' </tr>'; } echo ' </tbody> </table>'; } else { echo ' <p>'.tr('Nessuna riga presente').'.</p>'; } ?> <script type="text/javascript"> function elimina_riga(type, id){ if(confirm('<?php echo tr('Eliminare questa riga?'); ?>')) { $.post(globals.rootdir + '/actions.php', { op: 'delete_riga', id_module: globals.id_module, id_record: globals.id_record, type: type, idriga: id, }, function (data, result) { if (result == 'success') { // Ricarico le righe $('#righe').load('<?php echo $module->fileurl('row-list.php'); ?>?id_module=<?php echo $id_module; ?>&id_record=<?php echo $id_record; ?>'); // Toast alertPush(); } }); } } </script>