2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../../core.php' ;
$rs = $dbo -> fetchArray ( 'SELECT id, descrizione, qta, threshold_qta, um AS unitamisura FROM mg_articoli WHERE qta < threshold_qta AND attivo = 1 ORDER BY qta ASC' );
if ( ! empty ( $rs )) {
echo '
< table class = " table table-hover table-striped " >
< tr >
2017-09-04 12:02:29 +02:00
< th width = " 80% " > '.tr(' Articolo ').' </ th >
< th width = " 20% " > '.tr(' Q . tà ').' </ th >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
2018-02-18 19:53:23 +01:00
foreach ( $rs as $r ) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
< td >
'.Modules::link(' Articoli ', $r[' id '], $r[' descrizione ']).'
</ td >
< td >
2018-06-29 13:35:39 +02:00
'.Translator::numberToLocale($r[' qta '], ' qta ').' '.$r[' unitamisura '].'
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
}
echo '
</ table > ' ;
} else {
2018-06-29 11:50:12 +02:00
echo '<div class=\'alert alert-info\' >' . tr ( 'Non ci sono articoli in esaurimento.' ) . " </div> \n " ;
2017-08-04 16:28:16 +02:00
}