86 lines
3.3 KiB
PHP
86 lines
3.3 KiB
PHP
<?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 Modules\Ordini\Ordine;
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
$ordine = Ordine::find($id_record);
|
|
$articoli = $ordine->articoli->groupBy('idarticolo');
|
|
|
|
if ($articoli->isEmpty()) {
|
|
echo '
|
|
<p>'.tr('Il documento non contiene articoli').'.</p>';
|
|
|
|
return;
|
|
}
|
|
|
|
echo '
|
|
<table class="table table-striped table-hover table-condensed table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>'.tr('Articolo').'</th>
|
|
<th class="text-center tip" width="150" title="'.tr('Quantità presente nel documento').'">'.tr('Q.tà').'</th>
|
|
<th class="text-center tip" width="150" title="'.tr('Quantità presente nel magazzino del gestionale').'">'.tr('Q.tà magazzino').'</th>
|
|
<th class="text-center tip" width="150" title="'.tr('Quantità impegnata in altri Ordini del gestionale').'">'.tr('Q.tà impegnata').'</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>';
|
|
|
|
foreach ($articoli as $elenco) {
|
|
$qta = $elenco->sum('qta');
|
|
$articolo = $elenco->first()->articolo;
|
|
|
|
$codice = $articolo ? $articolo->codice : tr('Articolo eliminato');
|
|
$descrizione = $articolo ? $articolo->getTranslation('title') : $elenco->first()->getTranslation('title');
|
|
|
|
$qta_impegnata = $database->fetchOne('SELECT
|
|
SUM(`qta`) as qta
|
|
FROM
|
|
`or_righe_ordini`
|
|
INNER JOIN `or_ordini` ON `or_ordini`.`id` = `or_righe_ordini`.`idordine`
|
|
INNER JOIN `or_statiordine` ON `or_statiordine`.`id` = `or_ordini`.`idstatoordine`
|
|
LEFT JOIN `or_statiordine_lang` ON (`or_statiordine`.`id` = `or_statiordine_lang`.`id_record` AND `or_statiordine_lang`.`id_lang` = '.prepare(Models\Locale::getDefault()->id).")
|
|
INNER JOIN `or_tipiordine` ON `or_tipiordine`.`id` = `or_ordini`.`idtipoordine`
|
|
WHERE
|
|
`or_statiordine_lang`.`title` = 'Bozza'
|
|
AND `dir` = 'entrata'
|
|
AND `confermato` = 1
|
|
AND `idarticolo`=".prepare($articolo->id).'
|
|
GROUP BY
|
|
`idarticolo`')['qta'];
|
|
$qta_impegnata = floatval($qta_impegnata);
|
|
|
|
$class = $qta_impegnata + $qta > $articolo->qta ? 'danger' : 'success';
|
|
$descrizione_riga = $codice.' - '.$descrizione;
|
|
$text = $articolo ? Modules::link('Articoli', $articolo->id, $descrizione_riga) : $descrizione_riga;
|
|
|
|
echo '
|
|
<tr class="'.$class.'">
|
|
<td>'.$text.'</td>
|
|
<td class="text-center">'.numberFormat($qta, 'qta').'</td>
|
|
<td class="text-center">'.numberFormat($articolo->qta, 'qta').'</td>
|
|
<td class="text-center">'.numberFormat($qta_impegnata, 'qta').'</td>
|
|
</tr>';
|
|
}
|
|
echo '
|
|
</tbody>
|
|
</table>';
|