Skip to content

Commit

Permalink
FIX #4425 Missing "VAT" translation in supplier order popup
Browse files Browse the repository at this point in the history
Close #4425
  • Loading branch information
marcosgdf committed Mar 2, 2016
1 parent 2d6c2d4 commit 123d6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/fourn/class/fournisseur.commande.class.php
Expand Up @@ -583,7 +583,7 @@ function getNomUrl($withpicto=0,$option='')
if (! empty($this->total_ht))
$label.= '<br><b>' . $langs->trans('AmountHT') . ':</b> ' . price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
if (! empty($this->total_tva))
$label.= '<br><b>' . $langs->trans('TVA') . ':</b> ' . price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
$label.= '<br><b>' . $langs->trans('VAT') . ':</b> ' . price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
if (! empty($this->total_ttc))
$label.= '<br><b>' . $langs->trans('AmountTTC') . ':</b> ' . price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);

Expand Down

0 comments on commit 123d6fb

Please sign in to comment.