This commit is contained in:
Rodolphe Quiedeville 2007-01-04 14:52:42 +00:00
parent 94a37e7c88
commit a116d49ab0

View File

@ -208,28 +208,28 @@ class Product
} }
else else
{ {
$this->errno = 260; $this->_setErrNo("Create",260);
} }
} }
else else
{ {
$this->errno = 259; $this->_setErrNo("Create",259);
} }
} }
else else
{ {
$this->errno = 258; $this->_setErrNo("Create",258);
} }
} }
else else
{ {
// Produit existe deja // Produit existe deja
$this->errno = 257; $this->_setErrNo("Create",257);
} }
} }
else else
{ {
$this->errno = 263; $this->_setErrNo("Create",263);
} }
/* /*
@ -250,13 +250,23 @@ class Product
} }
else else
{ {
$this->errno = 262; $this->_setErrNo("Create",262);
return -2; return -2;
} }
return -1; return -1;
} }
function _setErrNo($func, $num)
{
$this->errno = $num;
dolibarr_syslog("Product::".$func." ERRNO (".$this->errno.")");
}
function error($errno) function error($errno)
{ {