默认情况下,在magento目录库存中选中使用默认值复选框

时间:2016-12-02 09:54:45

标签: magento soap magento-1.9 soapserver

我在下面的代码中尝试将产品添加到magento目录库存中,但复选框仍在检查中,如何取消选中magento目录库存中的“使用默认值”复选框,任何人都可以帮助我。

catalogInventoryStockItemUpdateEntity inventory = new catalogInventoryStockItemUpdateEntity();
inventory.qty = "0";
inventory.manage_stock =1;
inventory.use_default_website_stock = 0;
inventory.use_default_website_stockSpecified = false;
catalogProductCreateEntity productEntity = new catalogProductCreateEntity();
productEntity.stock_data=inventory;
var client = new Mage_Api_Model_Server_V2_HandlerPortTypeClient();
    client.catalogProductUpdate(sessionId, productId, productEntity, storeView, "ID"); 

当我使用上面的代码时,我得到了magento目录库存,如下图所示 enter image description here

0 个答案:

没有答案