Skip to content
Snippets Groups Projects
Commit b8ee75ce authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Merge pull request #5248 from IonAgorria/patch-2

Fix: Fill ref_supplier in product get_buyprice
parents 537c9637 ade41785
No related branches found
No related tags found
No related merge requests found
......@@ -1353,7 +1353,8 @@ class Product extends CommonObject
}
$this->buyprice = $obj->price; // deprecated
$this->fourn_pu = $obj->price / $obj->quantity; // Prix unitaire du produit pour le fournisseur $fourn_id
$this->ref_fourn = $obj->ref_fourn; // Ref supplier
$this->ref_fourn = $obj->ref_fourn; // deprecated
$this->ref_supplier = $obj->ref_fourn; // Ref supplier
$this->vatrate_supplier = $obj->tva_tx; // Vat ref supplier
$result=$obj->fk_product;
return $result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment