154 lines
6.1 KiB
PHP
Executable File
154 lines
6.1 KiB
PHP
Executable File
<?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/>.
|
|
*/
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
// Movimentazione degli articoli
|
|
echo '
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">'.tr('Movimenti').'</h3>
|
|
<div class="pull-right">';
|
|
if (empty($_GET['movimentazione_completa'])) {
|
|
echo '
|
|
<a class="btn btn-info btn-xs" href="'.base_path().'/editor.php?id_module='.$id_module.'&id_record='.$id_record.'&movimentazione_completa=1#tab_'.$id_plugin.'">
|
|
<i class="fa fa-eye"></i>
|
|
'.tr('Mostra tutti i movimenti').'
|
|
</a>';
|
|
} else {
|
|
echo '
|
|
<a class="btn btn-info btn-xs" href="'.base_path().'/editor.php?id_module='.$id_module.'&id_record='.$id_record.'&movimentazione_completa=0#tab_'.$id_plugin.'">
|
|
<i class="fa fa-eye-slash"></i>
|
|
'.tr('Mostra gli ultimi 20 movimenti').'
|
|
</a>';
|
|
}
|
|
|
|
echo '
|
|
<a class="btn btn-warning btn-xs" href="'.base_path().'/controller.php?id_module='.Modules::get('Movimenti')->id.'&search_Articolo='.($articolo->codice.' - '.$articolo->descrizione).'">
|
|
<i class="fa fa-external-link"></i>
|
|
'.tr('Visualizza dettagli').'
|
|
</a>';
|
|
|
|
echo '
|
|
</div>
|
|
</div>
|
|
<div class="box-body">';
|
|
|
|
// Calcolo la quantità dai movimenti in magazzino
|
|
$qta_totale = $dbo->fetchOne('SELECT SUM(qta) AS qta FROM mg_movimenti WHERE idarticolo='.prepare($id_record))['qta'];
|
|
$qta_totale_attuale = $dbo->fetchOne('SELECT SUM(qta) AS qta FROM mg_movimenti WHERE idarticolo='.prepare($id_record).' AND data <= CURDATE()')['qta'];
|
|
|
|
echo '
|
|
<p>'.tr('Quantità calcolata dai movimenti').': <b>'.Translator::numberToLocale($qta_totale, 'qta').' '.$record['um'].'</b> <span class="tip" title="'.tr('Quantità calcolata da tutti i movimenti registrati').'." ><i class="fa fa-question-circle-o"></i></span></p>';
|
|
|
|
echo '
|
|
<p>'.tr('Quantità calcolata attuale').': <b>'.Translator::numberToLocale($qta_totale_attuale, 'qta').' '.$record['um'].'</b> <span class="tip" title="'.tr('Quantità calcolata secondo i movimenti registrati con data oggi o date trascorse').'." ><i class="fa fa-question-circle-o"></i></span></p>';
|
|
|
|
// Individuazione movimenti
|
|
$movimenti = $articolo->movimentiComposti()
|
|
->orderBy('mg_movimenti.data', 'DESC')
|
|
->orderBy('mg_movimenti.id', 'DESC');
|
|
if (empty($_GET['movimentazione_completa'])) {
|
|
$movimenti->limit(20);
|
|
}
|
|
|
|
// Raggruppamento per documento
|
|
$movimenti = $movimenti->leftJoin('an_sedi', 'mg_movimenti.idsede', 'an_sedi.id')->get();
|
|
if (!empty($movimenti)) {
|
|
echo '
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
<tr>
|
|
<th class="text-center" width="120">'.tr('Q.tà').'</th>
|
|
<th class="text-center">'.tr('Q.tà progressiva').'</th>
|
|
<th>'.tr('Operazione').'</th>
|
|
<th class="text-center">'.tr('Sede').'</th>
|
|
<th class="text-center" width="120">'.tr('Data').'</th>
|
|
<th class="text-center" width="80">#</th>
|
|
</tr>';
|
|
|
|
foreach ($movimenti as $i => $movimento) {
|
|
// Quantità progressiva
|
|
if ($i == 0) {
|
|
$movimento['progressivo_finale'] = $articolo->qta;
|
|
} else {
|
|
$movimento['progressivo_finale'] = $movimenti[$i - 1]['progressivo_iniziale'];
|
|
}
|
|
$movimento['progressivo_iniziale'] = $movimento['progressivo_finale'] - $movimento->qta;
|
|
$movimento['progressivo_iniziale'] = $movimento['progressivo_finale'] - $movimento->qta;
|
|
|
|
$movimenti[$i]['progressivo_iniziale'] = $movimento['progressivo_iniziale'];
|
|
$movimenti[$i]['progressivo_finale'] = $movimento['progressivo_finale'];
|
|
|
|
// Quantità
|
|
echo '
|
|
<tr>
|
|
<td class="text-center">
|
|
'.numberFormat($movimento->qta, 'qta').' '.$record['um'].'
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
'.numberFormat($movimento['progressivo_iniziale'], 'qta').' '.$record['um'].'
|
|
<i class="fa fa-arrow-circle-right"></i>
|
|
'.numberFormat($movimento['progressivo_finale'], 'qta').' '.$record['um'].'
|
|
</td>
|
|
|
|
<td>
|
|
'.$movimento->descrizione.''.($movimento->hasDocument() ? ' - '.reference($movimento->getDocument()) : '').'
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
'.($movimento->nomesede ?: tr('Sede legale')).'
|
|
</td>';
|
|
|
|
// Data
|
|
echo '
|
|
<td class="text-center">'.dateFormat($movimento->data).' <span class="tip" title="'.tr('Creazione movimento: _DATE_', [
|
|
'_DATE_' => timestampFormat($movimento->data_movimento),
|
|
]).'"><i class="fa fa-question-circle-o"></i></span> </td>';
|
|
|
|
// Operazioni
|
|
echo '
|
|
<td class="text-center">';
|
|
|
|
if (Auth::admin() && $movimento->isManuale()) {
|
|
echo '
|
|
<a class="btn btn-danger btn-xs ask" data-backto="record-edit" data-op="delmovimento" data-idmovimento="'.$movimento->tipo_gruppo.'">
|
|
<i class="fa fa-trash"></i>
|
|
</a>';
|
|
}
|
|
|
|
echo '
|
|
</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
</table>';
|
|
} else {
|
|
echo '
|
|
<div class="alert alert-info">
|
|
<i class="fa fa-info-circle"></i>
|
|
'.tr('Questo articolo non è ancora stato movimentato').'.
|
|
</div>';
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
</div>';
|