1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 23:33:02 +01:00
This commit is contained in:
MatteoPistorello 2023-03-27 16:55:03 +02:00
commit af8b54d5a0

View File

@ -33,7 +33,7 @@ WHERE co_movimenti.idconto='.prepare($id_conto).' AND
co_movimenti.data >= '.prepare($_SESSION['period_start']).' AND co_movimenti.data >= '.prepare($_SESSION['period_start']).' AND
co_movimenti.data <= '.prepare($_SESSION['period_end']).' co_movimenti.data <= '.prepare($_SESSION['period_end']).'
GROUP BY co_movimenti.idmastrino GROUP BY co_movimenti.idmastrino
ORDER BY co_movimenti.data ASC, co_movimenti.descrizione'; ORDER BY co_movimenti.data DESC, co_movimenti.id DESC';
$movimenti = $dbo->fetchArray($query); $movimenti = $dbo->fetchArray($query);
if (!empty($movimenti)) { if (!empty($movimenti)) {
@ -47,7 +47,7 @@ if (!empty($movimenti)) {
<th width="100">'.tr('Scalare').'</th> <th width="100">'.tr('Scalare').'</th>
</tr>'; </tr>';
$scalare = 0; $scalare = array_sum(array_column($movimenti, 'totale'));
// Elenco righe del partitario // Elenco righe del partitario
foreach ($movimenti as $movimento) { foreach ($movimenti as $movimento) {
@ -90,13 +90,13 @@ if (!empty($movimenti)) {
</td>'; </td>';
} }
$scalare += $movimento['totale'];
echo ' echo '
<td class="text-right"> <td class="text-right">
'.moneyFormat($scalare, 2).' '.moneyFormat($scalare, 2).'
</td>'; </td>';
$scalare -= $movimento['totale'];
echo ' echo '
</tr>'; </tr>';
} }