Magento 1.6 and web service evolution
As Magento try to correct issue when they can't differentiate sku or id on release 1.6 (1.5.1 may be ?), they generate a side effect.
1st : product_
edit : app/code/
find : public function getProduct(
and change :
if ($identifierType == 'sku') {
if ($idBySku) {
}
if ($loadByIdOnFalse) {
}
}
by :
if ($identifierType == 'sku') {
if ($idBySku) {
}
}
2nd : If your sku is purly numeric as me cause is it's an ena13 these web_services will retrun to you <Fault 100: 'Product not exists.'> any more. But now Magento webservice is able to handle one more optional parameter to specify clearly the type of the identifier (id or sku).
--- Delete ---
Question information
- Language:
- English Edit question
- Status:
- Answered
- Assignee:
- No assignee Edit question
- Last query:
- Last reply:
Can you help with this problem?
Provide an answer of your own, or ask Nicolas TRUBERT for more information if necessary.