diff --git a/htdocs/html.form.class.php b/htdocs/html.form.class.php index f7f44e71e64..87f1e7431a2 100644 --- a/htdocs/html.form.class.php +++ b/htdocs/html.form.class.php @@ -1284,8 +1284,14 @@ class Form $opt.= '>'.$objp->nom.' - '.$objp->ref_fourn.' - '; if ($objp->fprice != '') { - $opt.= price($objp->fprice); - $opt.= $langs->trans("Currency".$conf->monnaie)."/".$objp->quantity; + if ($objp->quantity == 1) + { + $opt.= price($objp->fprice); + $opt.= $langs->trans("Currency".$conf->monnaie)."/"; + } + + $opt.= $objp->quantity; + if ($objp->quantity == 1) { $opt.= strtolower($langs->trans("Unit"));