Ajout liste déroulante des tarifs fournisseurs pour un produit
This commit is contained in:
parent
99412a8026
commit
4271ecd880
@ -1284,8 +1284,14 @@ class Form
|
|||||||
$opt.= '>'.$objp->nom.' - '.$objp->ref_fourn.' - ';
|
$opt.= '>'.$objp->nom.' - '.$objp->ref_fourn.' - ';
|
||||||
if ($objp->fprice != '')
|
if ($objp->fprice != '')
|
||||||
{
|
{
|
||||||
$opt.= price($objp->fprice);
|
if ($objp->quantity == 1)
|
||||||
$opt.= $langs->trans("Currency".$conf->monnaie)."/".$objp->quantity;
|
{
|
||||||
|
$opt.= price($objp->fprice);
|
||||||
|
$opt.= $langs->trans("Currency".$conf->monnaie)."/";
|
||||||
|
}
|
||||||
|
|
||||||
|
$opt.= $objp->quantity;
|
||||||
|
|
||||||
if ($objp->quantity == 1)
|
if ($objp->quantity == 1)
|
||||||
{
|
{
|
||||||
$opt.= strtolower($langs->trans("Unit"));
|
$opt.= strtolower($langs->trans("Unit"));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user