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

Fix: bug #30629 : Ajout de prix fournisseur avec quantité fractionné donne erreur

parent 178479ba
No related branches found
No related tags found
No related merge requests found
......@@ -256,6 +256,7 @@ class ProductFournisseur extends Product
global $mysoc;
$buyprice=price2num($buyprice);
$qty=price2num($qty);
$error=0;
$this->db->begin();
......
......@@ -23,10 +23,10 @@ ProductsAndServicesOnSell=Produits et Services en vente
ProductsAndServicesNotOnSell=Produits et Services hors vente
ProductsAndServicesStatistics=Statistiques produits et services
ProductsStatistics=Statistiques produits
ProductsOnSell=Produits en vente
ProductsNotOnSell=Produits hors vente
ServicesOnSell=Services en vente
ServicesNotOnSell=Services hors vente
ProductsOnSell=Produits en vente ou en achat
ProductsNotOnSell=Produits hors vente et hors achat
ServicesOnSell=Services en vente ou en achat
ServicesNotOnSell=Services hors vente et hors achat
InternalRef=Référence interne
LastRecorded=Derniers produits/services en vente enregistrés
LastRecordedProductsAndServices=Les %s derniers produits/services enregistrés
......
......@@ -112,7 +112,9 @@ $sql.= " GROUP BY p.fk_product_type, p.tosell, p.tobuy";
$result = $db->query($sql);
while ($objp = $db->fetch_object($result))
{
$prodser[$objp->fk_product_type][$objp->tosell]=$objp->total;
$status=1;
if (! $objp->tosell && ! $objp->tobuy) $status=0;
$prodser[$objp->fk_product_type][$status]=$objp->total;
}
print '<table class="noborder" width="100%">';
......
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