1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-23 04:19:59 +01:00

Rimozione refuso plugin movimenti

This commit is contained in:
Luca 2024-07-30 17:03:49 +02:00
parent cff58f2ebc
commit fd73cbf367

View File

@ -103,6 +103,7 @@ if (!empty($movimenti)) {
echo '
<table class="table table-striped table-condensed table-bordered">
<tr>
<th class="text-center" width="40">#</th>
<th class="text-center" width="120">'.tr('Q.').'</th>
<th class="text-center">'.tr('Q. progressiva').'</th>
<th>'.tr('Operazione').'</th>
@ -119,15 +120,18 @@ if (!empty($movimenti)) {
} 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">
'.count($movimenti)-($i).'
</td>
<td class="text-center">
'.numberFormat($movimento->qta, 'qta').' '.$record['um'].'
</td>