Skip to content

Commit

Permalink
Update bankjournal.php
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jun 12, 2019
1 parent 402cbba commit f435f4b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions htdocs/accountancy/journal/bankjournal.php
Expand Up @@ -992,9 +992,9 @@ function writebookkeeping() {
print "<td>" . $langs->trans("AccountAccounting") . "</td>";
print "<td>" . $langs->trans("SubledgerAccount") . "</td>";
print "<td>" . $langs->trans("LabelOperation") . "</td>";
print "<td class='center'>" . $langs->trans("PaymentMode") . "</td>";
print "<td class='right'>" . $langs->trans("Debit") . "</td>";
print "<td class='right'>" . $langs->trans("Credit") . "</td>";
print '<td class="center">' . $langs->trans("PaymentMode") . "</td>";
print '<td class="right">' . $langs->trans("Debit") . "</td>";
print '<td class="right">' . $langs->trans("Credit") . "</td>";
print "</tr>\n";

$r = '';
Expand Down Expand Up @@ -1041,9 +1041,9 @@ function writebookkeeping() {
print "<td>";
print $reflabel;
print "</td>";
print "<td class='center'>" . $val["type_payment"] . "</td>";
print "<td class='minwidth100 right'>" . ($mt >= 0 ? price($mt) : '') . "</td>";
print "<td class='minwidth100 right'>" . ($mt < 0 ? price(- $mt) : '') . "</td>";
print '<td class="center">' . $val["type_payment"] . "</td>";
print '<td class="right nowraponall">' . ($mt >= 0 ? price($mt) : '') . "</td>";
print '<td class="right nowraponall">' . ($mt < 0 ? price(- $mt) : '') . "</td>";
print "</tr>";
}
}
Expand Down

0 comments on commit f435f4b

Please sign in to comment.