Status
我正在构建一个与 magento 商务引擎集成的应用程序,并且我已经解决了 API 的大部分问题,但是当我添加新产品时,我一直试图让它工作
_mage.catalogProductCreateEntity si = new _mage.catalogProductCreateEntity();
//...许多其他属性设置正确
si.status = "Enabled";
productID = ms.catalogProductCreate(sessionID, "simple", mSettings.ProductAttributeSetID.ToString, posProductcode, si, "default");
该产品已在数据库中正确创建,但它既不是启用也不是禁用,需要手动编辑。