我在下面的代码中尝试将产品添加到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");