More complete fix

This commit is contained in:
Laurent Destailleur 2021-01-28 14:13:29 +01:00
parent 2f98d8035c
commit c63a124d1c

View File

@ -227,6 +227,7 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
foreach ($_POST as $key => $value) foreach ($_POST as $key => $value)
{ {
// without batch module enabled // without batch module enabled
$reg = array();
if (preg_match('/^product_([0-9]+)_([0-9]+)$/i', $key, $reg)) if (preg_match('/^product_([0-9]+)_([0-9]+)$/i', $key, $reg))
{ {
$pos++; $pos++;
@ -276,11 +277,11 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
if (isset($_POST[$saveprice])) { if (isset($_POST[$saveprice])) {
// TODO Use class // TODO Use class
$sql = "UPDATE ".MAIN_DB_PREFIX."product_fournisseur_price"; $sql = "UPDATE ".MAIN_DB_PREFIX."product_fournisseur_price";
$sql .= " SET unitprice='".price2num(GETPOST($pu),'MT')."'"; $sql .= " SET unitprice='".price2num(GETPOST($pu), 'MU')."'";
$sql .= ", price=".price2num(GETPOST($pu),'MT')."*quantity"; $sql .= ", price=".price2num(GETPOST($pu), 'MU')."*quantity";
$sql .= ", remise_percent='".$dto."'"; $sql .= ", remise_percent='".$dto."'";
$sql .= " WHERE fk_soc=".$object->socid; $sql .= " WHERE fk_soc=".((int) $object->socid);
$sql .= " AND fk_product=".GETPOST($prod, 'int'); $sql .= " AND fk_product=".((int) GETPOST($prod, 'int'));
$resql = $db->query($sql); $resql = $db->query($sql);
} }