Skip to content

Commit

Permalink
FIX #3091 TotalHT amount in supplier order is bold unlike the rest of
Browse files Browse the repository at this point in the history
Dolibarr
  • Loading branch information
Juanjo Menent committed Jun 26, 2015
1 parent a5b3c34 commit 0f04677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/fourn/commande/card.php
Expand Up @@ -3,7 +3,7 @@
* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2010-2014 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2010-2015 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
* Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
Expand Down Expand Up @@ -1656,7 +1656,7 @@

// Ligne de 3 colonnes
print '<tr><td>'.$langs->trans("AmountHT").'</td>';
print '<td align="right"><b>'.price($object->total_ht).'</b></td>';
print '<td align="right">'.price($object->total_ht).'</b></td>';

This comment has been minimized.

Copy link
@marcosgdf

marcosgdf Jul 3, 2015

Contributor

Remember to remove the closing tag too!

print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';

print '<tr><td>'.$langs->trans("AmountVAT").'</td><td align="right">'.price($object->total_tva).'</td>';
Expand Down

0 comments on commit 0f04677

Please sign in to comment.