This commit is contained in:
Laurent Destailleur 2021-04-29 18:04:10 +02:00
parent 66103303eb
commit 8e1ba67928

View File

@ -506,12 +506,12 @@ if ($modecompta == 'CREANCES-DETTES') {
// Each month
foreach ($totCat['M'] as $k => $v) {
if (($k + 1) >= $date_startmonth) {
print '<td class="right"><span class="amount">'.price($v).'</span></td>';
print '<td class="right nowraponall"><span class="amount">'.price($v).'</span></td>';
}
}
foreach ($totCat['M'] as $k => $v) {
if (($k + 1) < $date_startmonth) {
print '<td class="right"><span class="amount">'.price($v).'</span></td>';
print '<td class="right nowraponall"><span class="amount">'.price($v).'</span></td>';
}
}