265 lines
9.2 KiB
PHP
Executable File
265 lines
9.2 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';
|
|
|
|
$impegnato = 0;
|
|
$ordinato = 0;
|
|
|
|
$query = 'SELECT
|
|
or_ordini.id AS id,
|
|
or_ordini.numero,
|
|
or_ordini.numero_esterno,
|
|
data,
|
|
SUM(or_righe_ordini.qta) AS qta_ordinata,
|
|
SUM(or_righe_ordini.qta - or_righe_ordini.qta_evasa) AS qta_impegnata,
|
|
or_righe_ordini.um
|
|
FROM or_ordini
|
|
INNER JOIN or_righe_ordini ON or_ordini.id = or_righe_ordini.idordine
|
|
INNER JOIN or_statiordine ON or_ordini.idstatoordine=or_statiordine.id
|
|
WHERE idarticolo = '.prepare($articolo->id)."
|
|
AND (SELECT dir FROM or_tipiordine WHERE or_tipiordine.id=or_ordini.idtipoordine) = '|dir|'
|
|
AND (or_righe_ordini.qta - or_righe_ordini.qta_evasa) > 0
|
|
AND or_righe_ordini.confermato = 1
|
|
AND or_statiordine.impegnato = 1
|
|
GROUP BY or_ordini.id
|
|
HAVING qta_ordinata > 0";
|
|
|
|
/*
|
|
** Impegnato
|
|
*/
|
|
echo '
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">'.tr('Impegnato').'<span class="tip pull-right" title="'.tr('Quantità impegnate in ordini cliente che non siano già completamente evasi.').'">
|
|
<i class="fa fa-question-circle-o"></i></span></h3>
|
|
</div>
|
|
<div class="panel-body" style="min-height:98px;">';
|
|
|
|
$ordini = $dbo->fetchArray(str_replace('|dir|', 'entrata', $query));
|
|
$impegnato = sum(array_column($ordini, 'qta_impegnata'));
|
|
if (!empty($ordini)) {
|
|
echo '
|
|
<table class="table table-bordered table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>'.tr('Descrizione').'</th>
|
|
<th class="text-right">'.$record['um'].'</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>';
|
|
|
|
$modulo = Modules::get('Ordini cliente');
|
|
foreach ($ordini as $documento) {
|
|
$numero = !empty($documento['numero_esterno']) ? $documento['numero_esterno'] : $documento['numero'];
|
|
$qta = $documento['qta_impegnata'];
|
|
|
|
echo '
|
|
<tr>
|
|
<td>
|
|
<small>
|
|
'.Modules::link($modulo['id'], $documento['id'], tr('Ordine num. _NUM_ del _DATE_', [
|
|
'_NUM_' => $numero,
|
|
'_DATE_' => dateFormat($documento['data']),
|
|
])).'
|
|
</small>
|
|
</td>
|
|
<td class="text-right">
|
|
<small>'.numberFormat($qta).'</small>
|
|
</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
<tr>
|
|
<td class="text-right">
|
|
<small><b>'.tr('Totale').'</b></small>
|
|
</td>
|
|
<td class="text-right">
|
|
<small>'.numberFormat($impegnato).'</small>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>';
|
|
} else {
|
|
echo '
|
|
<p>'.tr('Nessun ordine cliente con quantità da evadere individuato').'.</p>';
|
|
}
|
|
echo '
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
/*
|
|
** In ordine
|
|
*/
|
|
echo '
|
|
<div class="col-md-3">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">'.tr('In ordine').'<span class="tip pull-right" title="'.tr('Quantità ordinate al fornitore in ordini che non siano già completamente evasi.').'">
|
|
<i class="fa fa-question-circle-o"></i></span></h3>
|
|
</div>
|
|
<div class="panel-body" style="min-height:98px;">';
|
|
|
|
$ordini = $dbo->fetchArray(str_replace('|dir|', 'uscita', $query));
|
|
$ordinato = sum(array_column($ordini, 'qta_ordinata'));
|
|
if (!empty($ordini)) {
|
|
echo '
|
|
<table class="table table-bordered table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>'.tr('Descrizione').'</th>
|
|
<th class="text-right">'.$record['um'].'</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>';
|
|
|
|
$modulo = Modules::get('Ordini fornitore');
|
|
foreach ($ordini as $documento) {
|
|
$numero = !empty($documento['numero_esterno']) ? $documento['numero_esterno'] : $documento['numero'];
|
|
$qta = $documento['qta_ordinata'];
|
|
|
|
echo '
|
|
<tr>
|
|
<td>
|
|
<small>
|
|
'.Modules::link($modulo['id'], $documento['id'], tr('Ordine num. _NUM_ del _DATE_', [
|
|
'_NUM_' => $numero,
|
|
'_DATE_' => dateFormat($documento['data']),
|
|
])).'
|
|
</small>
|
|
</td>
|
|
<td class="text-right">
|
|
<small>'.numberFormat($qta).'</small>
|
|
</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
<tr>
|
|
<td class="text-right">
|
|
<small><b>'.tr('Totale').'</b></small>
|
|
</td>
|
|
<td class="text-right">
|
|
<small>'.numberFormat($ordinato).'</small>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>';
|
|
} else {
|
|
echo '
|
|
<p>'.tr('Nessun ordine fornitore con quantità da evadere individuato').'.</p>';
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
/**
|
|
** Da ordinare.
|
|
*/
|
|
$qta_presente = $articolo->qta > 0 ? $articolo->qta : 0;
|
|
$diff = ($qta_presente - $impegnato + $ordinato) * -1;
|
|
$da_ordinare = (($diff <= 0) ? 0 : $diff);
|
|
|
|
echo '
|
|
<div class="col-md-3">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">'.tr('Da ordinare').'<span class="tip pull-right" title="'.tr('Quantità richieste dal cliente meno le quantità già ordinate.').'">
|
|
<i class="fa fa-question-circle-o"></i></span></h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="row">
|
|
<div class="col-md-12 text-center" style="font-size:35pt;">
|
|
'.numberFormat($da_ordinare).' '.$articolo->um.'
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
/**
|
|
** Disponibile.
|
|
*/
|
|
$disponibile = $qta_presente - $impegnato;
|
|
echo '
|
|
<div class="col-md-3">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">'.tr('Disponibile').'<span class="tip pull-right" title="'.tr('Quantità disponibili nel magazzino.').'">
|
|
<i class="fa fa-question-circle-o"></i></span></h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 text-center" style="font-size:35pt;">
|
|
'.numberFormat($disponibile).' '.$articolo->um.'
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
$sedi = $dbo->fetchArray('(SELECT "0" AS id, IF(indirizzo!=\'\', CONCAT_WS(" - ", "'.tr('Sede legale').'", CONCAT(citta, \' (\', indirizzo, \')\')), CONCAT_WS(" - ", "'.tr('Sede legale').'", citta)) AS nomesede FROM an_anagrafiche WHERE idanagrafica = '.prepare(setting('Azienda predefinita')).') UNION (SELECT id, IF(indirizzo!=\'\',CONCAT_WS(" - ", nomesede, CONCAT(citta, \' (\', indirizzo, \')\')), CONCAT_WS(" - ", nomesede, citta )) AS nomesede FROM an_sedi WHERE idanagrafica='.prepare(setting('Azienda predefinita')).')');
|
|
$giacenze = $articolo->getGiacenze();
|
|
|
|
echo '
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">'.tr('Giacenze').'</h3>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th width="400">'.tr('Sede').'</th>
|
|
<th width="200">'.tr('Q.tà').'</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>';
|
|
|
|
foreach ($sedi as $sede) {
|
|
echo '
|
|
<tr>
|
|
<td>'.$sede['nomesede'].'</td>
|
|
<td class="text-right">'.numberFormat($giacenze[$sede['id']][0]).' '.$articolo->um.'</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>';
|