Skip to content

Commit

Permalink
Nowrap on amount
Browse files Browse the repository at this point in the history
  • Loading branch information
aspangaro committed Jun 19, 2019
1 parent 53923a8 commit a849fbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htdocs/compta/bank/treso.php
Expand Up @@ -293,9 +293,9 @@
}else print "<td></td>";
}
print "<td>".$refcomp."</td>";
if ($obj->total_ttc < 0) { print "<td class=\"right\">".price(abs($total_ttc))."</td><td>&nbsp;</td>"; };
if ($obj->total_ttc >= 0) { print "<td>&nbsp;</td><td class=\"right\">".price($total_ttc)."</td>"; };
print '<td class="right">'.price($solde).'</td>';
if ($obj->total_ttc < 0) { print "<td class='nowrap right'>".price(abs($total_ttc))."</td><td>&nbsp;</td>"; };
if ($obj->total_ttc >= 0) { print "<td>&nbsp;</td><td class='nowrap right'>".price($total_ttc)."</td>"; };
print '<td class="nowrap right">'.price($solde).'</td>';
print "</tr>";
}

Expand Down

0 comments on commit a849fbe

Please sign in to comment.