Skip to content
Snippets Groups Projects
Commit 89c80a45 authored by a-schild's avatar a-schild
Browse files

Use correct numeric format for all soldes

parent 4a19c140
No related branches found
No related tags found
No related merge requests found
......@@ -255,9 +255,9 @@ else {
print '<td>' . length_accountg($line->numero_compte) . '</td>';
print '<td>' . $description . '</td>';
print '<td align="right">' . price($line->debit, 2, ',', ' ') . '</td>';
print '<td align="right">' . price($line->credit, 2, ',', ' ') . '</td>';
print '<td align="right">' . price($line->credit - $line->debit, 2, ',', ' ') . '</td>';
print '<td align="right">' . price($line->debit) . '</td>';
print '<td align="right">' . price($line->credit) . '</td>';
print '<td align="right">' . price($line->credit - $line->debit) . '</td>';
print '<td align="center">' . $link;
print '</td>';
print "</tr>\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment