The structure of project is 2 websites with same categories and same products. The only difference is the price (basicly the second shop is something like wholesale).
So we have:
website A - language 1 & language 2
website B - language 1 & language 2 (same as website A)
Import is working just fine but today client called me we have a problem!?. Magento and Apache doesn't show any errors. Problem is: We can't update prices. (Video here )
$newProductData = array(
'sku' => "test123",
'store' => "veen,vehr",
'qty' => 1000,
'price' => 10
);
$dp->ingest($newProductData);
$newProductData = array(
'sku' => "test123",
'store' => "en,hr",
'qty' => 1000,
'price' => 5
);
$dp->ingest($newProductData);
Hmm, now looking at the code... Could it be problem in qty?