81 lines
2.5 KiB
PHP
81 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.n.c.
|
|
*
|
|
* 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';
|
|
$dare = 0;
|
|
$avere = 0;
|
|
for ($i = 0; $i < sizeof($records); ++$i) {
|
|
if ($records[$i]['totale'] >= 0) {
|
|
$dare += $records[$i]['totale'];
|
|
} else {
|
|
$avere += $records[$i]['totale'];
|
|
}
|
|
}
|
|
|
|
if (get('lev') == '2' || get('lev') == '3') {
|
|
echo '
|
|
<tr>
|
|
<th></th>
|
|
<th>SALDO FINALE</th>
|
|
<th class="text-right">'.moneyFormat(abs($dare)).'</th>
|
|
<th class="text-right">'.moneyFormat(abs($avere)).'</th>
|
|
</tr>';
|
|
} elseif (get('lev') == '1') {
|
|
$pareggio_dare = abs($dare);
|
|
$pareggio_avere = abs($avere);
|
|
echo '</table>
|
|
<table class="table table-striped table-bordered">
|
|
<tr>
|
|
<th width="25%">TOTALE ATTIVITÀ</th>
|
|
<th width="25%" class="text-right">'.moneyFormat(abs($dare)).'</th>
|
|
<th width="25%">PASSIVITÀ</th>
|
|
<th width="25%" class="text-right">'.moneyFormat(abs($avere)).'</th>
|
|
</tr>
|
|
<tr>';
|
|
|
|
if ($risultato['totale'] <= 0) {
|
|
echo '
|
|
<th></th>
|
|
<th></th>
|
|
<th>UTILE</th>
|
|
<th class="text-right">'.moneyFormat(abs($risultato['totale'])).'</th>
|
|
</tr>';
|
|
$pareggio_avere += abs($risultato['totale']);
|
|
} else {
|
|
echo '
|
|
<th>PERDITA</th>
|
|
<th class="text-right">'.moneyFormat(abs($risultato['totale'])).'</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>';
|
|
$pareggio_dare += abs($risultato['totale']);
|
|
}
|
|
|
|
echo '
|
|
<tr>
|
|
<th>TOTALE A PAREGGIO</th>
|
|
<th class="text-right">'.moneyFormat(abs($pareggio_dare)).'</th>
|
|
<th>TOTALE A PAREGGIO</th>
|
|
<th class="text-right">'.moneyFormat(abs($pareggio_avere)).'</th>
|
|
</tr>
|
|
</table>';
|
|
}
|
|
|
|
echo '</tbody></table>';
|