添加具有多个属性的产品变体

时间:2017-05-18 14:09:41

标签: c# wordpress woocommerce woocommerce-rest-api

我正在使用WoocommerceNET库(Nuget Link)开发一个桌面应用程序,将ERP产品数据库中的产品同步到Woocommerce eshop数据库。

我添加了属性大小和颜色,例如红色,绿色,蓝色 s,m,l,xl 。现在我需要创建变体。

试过这个:

  List<VariationAttribute> vatrib = new List<VariationAttribute>()
            { new VariationAttribute() { name="Color",option="GREEN" },
              new VariationAttribute() { name="size",option="L" } };

       Variation var = new Variation() {
                             regular_price=1.0M,
                             visible=true,
                             attributes=vatrib,
                             stock_quantity=5,
                             manage_stock=true
                        };
       //... repeat for each variation ....

       List<Variation> varis = new List<Variation>();
       varis.Add(var);
       varis.Add(var1);
       varis.Add(var2);  ... and so on for all variations

       Product p = new Product()
                {
                    //options ....
                    type = "variable",
                    manage_stock = true,
                    in_stock = true,
                    attributes=attribs,
                    variations=varis,
                };
                await wc.Product.Add(p);

但是我收到了错误

  

无法隐式转换类型   'System.Collections.Generic.List&lt; WooCommerceNET.WooCommerce.v2.Variation&gt;'   到'System.Collections.Generic.List&lt; int&gt;'

看起来Product的变体属性是包含变体ID的List。

如何添加具有颜色和大小变化的新产品?

1 个答案:

答案 0 :(得分:0)

创建产品。使用产品ID创建变体。

Product p = new Product()
{
    //options ....
    type = "variable",
    manage_stock = true,
   in_stock = true,
    attributes=attribs,
    //variations=varis,
};

//Returns the new product with the id.
p = await wc.Product.Add(p);

//Returns the new variation with the id
var1 = wc.Product.Variations.Add(var1, p.id.Value);

// Add the variation id to the product
p.Variations.Add(var1.id.Value);

//Update the product
wc.Product.Update(p.id.Value, p);