1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-03 09:17:37 +01:00

Fix footer fatture

This commit is contained in:
MatteoPistorello 2023-10-23 14:33:51 +02:00
parent b1c2f56537
commit 4832ac44f4

View File

@ -75,13 +75,13 @@ if (!empty($rs2)) {
for ($i = 0; $i < sizeof($rs2); ++$i) {
echo "
<tr>
<td style='width:50%;'>
<td>
<small>".Translator::dateToLocale($rs2[$i]['scadenza'])."</small>
</td>
<td style='width:50%;' class='text-right'>
<td style='width:25%;' class='text-right'>
".(($rs2[$i]['pagato'] == $rs2[$i]['da_pagare']) ? '<small>PAGATO</small>' : '')."
</td>
<td style='width:50%;' class='text-right'>
<td style='width:35%;' class='text-right'>
<small>".moneyFormat($rs2[$i]['da_pagare'], 2).'</small>
</td>
</tr>';